input[type=button], input[type=submit], input[type=reset], button, .button {
	padding: 5px 15px;
	margin: 3px 4px;
	display: inline-block;
	color: #000000;
	font-size: 12px;
	cursor: pointer;
	background: #d1f8f7;
	background: linear-gradient(top, #d1f8f7 50%, #194b84 100%);
	background: -moz-linear-gradient(top, #d1f8f7 50%, #194b84 100%);
	background: -webkit-linear-gradient(top, #d1f8f7 50%, #194b84 100%);
	background: -o-linear-gradient(top, #d1f8f7 50%, #194b84 100%);
	border: 1px solid #000000;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	box-shadow:0px 0px 2px 1px rgba(0, 0, 0, 0.25), inset 1px 1px 0px 0px rgba(255, 255, 255, 0.25);
	-moz-box-shadow:0px 0px 2px 1px rgba(0, 0, 0, 0.25), inset 1px 1px 0px 0px rgba(255, 255, 255, 0.25);
	-webkit-box-shadow:0px 0px 2px 1px rgba(0, 0, 0, 0.25), inset 1px 1px 0px 0px rgba(255, 255, 255, 0.25);
	-o-box-shadow:0px 0px 2px 1px rgba(0, 0, 0, 0.25), inset 1px 1px 0px 0px rgba(255, 255, 255, 0.25);
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.50);
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, button:hover, .button:hover {
	background: linear-gradient(top, #ebffff 0%, #d1f8f7 100%);
	background: -moz-linear-gradient(top, #ebffff 0%, #d1f8f7 100%);
	background: -webkit-linear-gradient(top, #ebffff 0%, #d1f8f7 100%);
	background: -o-linear-gradient(top, #ebffff 0%, #d1f8f7 100%);
}
input[type=button]:active, input[type=submit]:active, input[type=reset]:active, button:active, .button:active{
	opacity:0.8;
}