@charset "utf-8";
/* CSS Document */
.radbutton {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #b31616), color-stop(1, #732e3a));
	background:-moz-linear-gradient(top, #b31616 5%, #732e3a 100%);
	background:-webkit-linear-gradient(top, #b31616 5%, #732e3a 100%);
	background:-o-linear-gradient(top, #b31616 5%, #732e3a 100%);
	background:-ms-linear-gradient(top, #b31616 5%, #732e3a 100%);
	background:linear-gradient(to bottom, #b31616 5%, #732e3a 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b31616', endColorstr='#732e3a',GradientType=0);
	background-color:#b31616;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:6px solid #ff0303;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:arial;
	font-size:18px;
	font-weight:bold;
	padding:6px 76px;
	text-decoration:none;
	text-shadow:0px 2px 1px #8a506a;
}
.radbutton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #732e3a), color-stop(1, #b31616));
	background:-moz-linear-gradient(top, #732e3a 5%, #b31616 100%);
	background:-webkit-linear-gradient(top, #732e3a 5%, #b31616 100%);
	background:-o-linear-gradient(top, #732e3a 5%, #b31616 100%);
	background:-ms-linear-gradient(top, #732e3a 5%, #b31616 100%);
	background:linear-gradient(to bottom, #732e3a 5%, #b31616 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#732e3a', endColorstr='#b31616',GradientType=0);
	background-color:#732e3a;
}
.radbutton:active {
	position:relative;
	top:1px;
}
