.myButton {
	-moz-box-shadow: 0px 10px 14px -7px #5c3c19;
	-webkit-box-shadow: 0px 10px 14px -7px #5c3c19;
	box-shadow: 0px 10px 14px -7px #5c3c19;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dec12f), color-stop(1, #ed7913));
	background:-moz-linear-gradient(top, #dec12f 5%, #ed7913 100%);
	background:-webkit-linear-gradient(top, #dec12f 5%, #ed7913 100%);
	background:-o-linear-gradient(top, #dec12f 5%, #ed7913 100%);
	background:-ms-linear-gradient(top, #dec12f 5%, #ed7913 100%);
	background:linear-gradient(to bottom, #dec12f 5%, #ed7913 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dec12f', endColorstr='#ed7913',GradientType=0);
	background-color:#dec12f;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:20px;
	font-weight:bold;
	padding:14px 30px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3d260a;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ed7913), color-stop(1, #dec12f));
	background:-moz-linear-gradient(top, #ed7913 5%, #dec12f 100%);
	background:-webkit-linear-gradient(top, #ed7913 5%, #dec12f 100%);
	background:-o-linear-gradient(top, #ed7913 5%, #dec12f 100%);
	background:-ms-linear-gradient(top, #ed7913 5%, #dec12f 100%);
	background:linear-gradient(to bottom, #ed7913 5%, #dec12f 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed7913', endColorstr='#dec12f',GradientType=0);
	background-color:#ed7913;
}
.myButton:active {
	position:relative;
	top:1px;
}
