body {
	text-align: center;
} /*----------------------------*/
.button {
	margin: 6px;
	text-decoration: none;
	/* font: bold 0.8em 'Trebuchet MS', Arial, Helvetica; */
	font-size:16px;
	/*Change the em value to scale the button*/
	display: inline-block;
	text-align: center;
	color: #fff;
	border: 1px solid #9c9c9c; /* Fallback style */
	border: 1px solid rgba(0, 0, 0, 0.3);
	text-shadow: 0 0.5px 0 rgb(129, 205, 220);
	box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
}

.button,.button span {
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
}

.button span {
	border-top: 1px solid #fff; /* Fallback style */
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	display: block;
	padding: 0.25em 1.5em 0.35em 1.5em; /* The background pattern */
}

.button:hover {
	box-shadow: 0 0 .1em rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0 0 .1em rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 0 .1em rgba(0, 0, 0, 0.4);
}

.button:active { /* When pressed, move it down 1px */
	position: relative;
	top: 1px;
} /*----------------------------*/

.button-green {
	/* background: #fff; */
	color:#73a8b6; 
	font-weight:500;
	background: #ffffff;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff),
		to(#e4e3e3) );
	background: -moz-linear-gradient(-90deg, #ffffff, #e4e3e3);
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,
		StartColorStr='#ffffff', EndColorStr='#e4e3e3' );
	
}
.button-green a:hover{
	color:#fff;
}
.button-green:hover {
	background: #73a8b6;
	color:#fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#96cad6),
		to(#73a8b6) );
	background: -moz-linear-gradient(-90deg, #96cad6, #73a8b6);
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,
		StartColorStr='#96cad6', EndColorStr='#73a8b6' );
}

