/* This imageless css button is based on the button that was generated by CSSButtonGenerator.com */
.buttonRow a {
  text-decoration: none;
}
.button, input.button, input.cssButtonHover ,span.normal_button,input.submit_button{
	-moz-box-shadow: 0px 1px 0px 0px #363330;
	-webkit-box-shadow: 0px 1px 0px 0px #363330;
	box-shadow: 0px 1px 0px 0px #363330;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #7e745f), color-stop(1, #d5c9ad) );
	background:-moz-linear-gradient( center top, #7e745f 5%, #d5c9ad 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7e745f', endColorstr='#d5c9ad');
	background-color:#7e745f;
	-webkit-border-top-left-radius:5px;
	-moz-border-radius-topleft:5px;
	border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius-topright:5px;
	border-top-right-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	-moz-border-radius-bottomright:5px;
	border-bottom-right-radius:5px;
	-webkit-border-bottom-left-radius:5px;
	-moz-border-radius-bottomleft:5px;
	border-bottom-left-radius:5px;
	text-indent:0;
	border:1px solid #9c9793;
	display:inline-block;
	color:#212121;
	font-family:Arial;
	font-size:15px;
	font-weight:normal;
	font-style:normal;
	height:30px;
	line-height:30px;
	text-decoration:none;
	text-align:center;
	text-shadow:1px 1px 0px #c2b5a9;
	cursor:pointer;
	padding:0 5px;
}
input.submit_button:hover, input.cssButtonHover,span.normal_button:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #d5c9ad), color-stop(1, #7e745f) );
	background:-moz-linear-gradient( center top, #d5c9ad 5%, #7e745f 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d5c9ad', endColorstr='#7e745f');
	background-color:#d5c9ad;
}
.button:active,input.submit_button:active {
	position:relative;
	top:1px;
}
