.myButton {
	-moz-box-shadow: 3px 3px 0px 0px #acafb3;
	-webkit-box-shadow: 3px 3px 0px 0px #acafb3;
	box-shadow: 3px 3px 0px 0px #acafb3;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0493e0), color-stop(1, #0061a7));
	background:-moz-linear-gradient(top, #0493e0 5%, #0061a7 100%);
	background:-webkit-linear-gradient(top, #0493e0 5%, #0061a7 100%);
	background:-o-linear-gradient(top, #0493e0 5%, #0061a7 100%);
	background:-ms-linear-gradient(top, #0493e0 5%, #0061a7 100%);
	background:linear-gradient(to bottom, #0493e0 5%, #0061a7 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0493e0', endColorstr='#0061a7',GradientType=0);
	background-color:#0493e0;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	border:1px solid #124d77;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Trebuchet MS;
	font-size:16px;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:3px 4px 0px #6883a3;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0061a7), color-stop(1, #0493e0));
	background:-moz-linear-gradient(top, #0061a7 5%, #0493e0 100%);
	background:-webkit-linear-gradient(top, #0061a7 5%, #0493e0 100%);
	background:-o-linear-gradient(top, #0061a7 5%, #0493e0 100%);
	background:-ms-linear-gradient(top, #0061a7 5%, #0493e0 100%);
	background:linear-gradient(to bottom, #0061a7 5%, #0493e0 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#0493e0',GradientType=0);
	background-color:#0061a7;
	text-transform: uppercase;
}
.myButton:active {
	position:relative;
	top:1px;
}