.myButton {
	-moz-box-shadow: 0px 0px 0px 2px #d89aa4;
	-webkit-box-shadow: 0px 0px 0px 2px #d89aa4;
	box-shadow: 0px 0px 0px 2px #d89aa4;

	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #C94A5D), color-stop(1, #A52238));
	background:-moz-linear-gradient(top, #C94A5D 5%, #A52238 100%);
	background:-webkit-linear-gradient(top, #C94A5D 5%, #A52238 100%);
	background:-o-linear-gradient(top, #C94A5D 5%, #A52238 100%);
	background:-ms-linear-gradient(top, #C94A5D 5%, #A52238 100%);
	background:linear-gradient(to bottom, #C94A5D 5%, #A52238 100%);

	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#C94A5D', endColorstr='#A52238',GradientType=0);

	background-color:#A52238;

	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;

	border:1px solid #861C2D;

	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:19px;
	padding:12px 37px;
	text-decoration:none;

	text-shadow:0px 1px 0px #5C1220;
	height:50px;
}

.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #A52238), color-stop(1, #C94A5D));
	background:-moz-linear-gradient(top, #A52238 5%, #C94A5D 100%);
	background:-webkit-linear-gradient(top, #A52238 5%, #C94A5D 100%);
	background:-o-linear-gradient(top, #A52238 5%, #C94A5D 100%);
	background:-ms-linear-gradient(top, #A52238 5%, #C94A5D 100%);
	background:linear-gradient(to bottom, #A52238 5%, #C94A5D 100%);

	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#A52238', endColorstr='#C94A5D',GradientType=0);

	background-color:#A52238;
}

.myButton:active {
	position:relative;
	top:1px;
}