.button-wrapper{
	padding-top: 40px;
}
.contact-area .button{
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
	display: block;
	font-size: 14px;
	color: #888888;
	padding: 10px 20px;
	background: -moz-linear-gradient(
		top,
		#ffffff 0%,
		#ffffff 25%,
		#ffffff);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#ffffff),
		color-stop(0.25, #ffffff),
		to(#ffffff));
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #ffffff;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px -1px 0px rgba(255,255,255,0.7);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px -1px 0px rgba(255,255,255,0.7);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px -1px 0px rgba(255,255,255,0.7);
	text-shadow:
		0px -1px 1px rgba(000,000,000,0.2),
		0px 1px 0px rgba(255,255,255,0.3);
}

.contact-area .button:hover{
	background: -moz-linear-gradient(
		top,
		#98fb98 0%,
		#98fb98 25%,
		#98fb98);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#98fb98),
		color-stop(0.25, #98fb98),
		to(#98fb98));
}