.button {
	background: #3c3c3c;
	background: linear-gradient(top, #686868, #3c3c3c);
	background: -moz-linear-gradient(top, #686868, #3c3c3c);
	background: -webkit-linear-gradient(top, #686868, #3c3c3c);
	background: -o-linear-gradient(top, #686868, #3c3c3c);
	border-radius: 10px;
	color: #FFF;
	border: 0;
	display: inline-block;
	line-height: 25px;
	height:24px;
	cursor: pointer;
	font-weight: bold;
	font-size: 11px;
	margin-top:8px;
	padding: 0 12px;
	text-transform:uppercase;
	text-decoration:none;
	text-shadow: #222 1px 1px;
}

.button:hover {
	background: #686868;
	background: linear-gradient(bottom, #686868, #3c3c3c);
	background: -moz-linear-gradient(bottom, #686868, #3c3c3c);
	background: -webkit-linear-gradient(bottom, #686868, #3c3c3c);
	background: -o-linear-gradient(bottom, #686868, #3c3c3c);
	background: -ms-linear-gradient(bottom, #686868, #3c3c3c);
}

