.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 5px 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 13px/100% Arial, Helvetica, sans-serif;
	padding:3px 7px 3px 7px;
	padding:5px 7px 1px 7px\9;
	/*text-shadow: 0 1px 1px rgba(0,0,0,.3);*/
	-webkit-border-radius: .3em;  /* for Safari and Chrome */
	-moz-border-radius: .3em; /* for Firefox 3.5+ */ 
	border-radius: .3em;
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
	-moz-box-shadow: 0 2px 4px rgba(0,0,0,.2);
	box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.button:hover { text-decoration: none;}
.button:active { position: relative; top: 1px;}
* html .button { padding:7px 0px 0px 0px;}
*:first-child+html .button { padding:7px 0px 0px 0px;}
.white {
	color: #555;
	letter-spacing:1px;
	border: solid 1px #cbcbcb;
	border-right: solid 2px #8f8f8f;
	border-bottom: solid 2px #8f8f8f;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e3e3e3));
	background: -moz-linear-gradient(top,  #fff,  #e3e3e3);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e3e3e3');
}
.white:hover {
	color: #000;
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#d3d3d3));
	background: -moz-linear-gradient(top,  #fff,  #d3d3d3);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d3d3d3');
}
.white:active {
	color: #777;
	background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#fff));
	background: -moz-linear-gradient(top,  #e3e3e3,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#ffffff');
}
.gold {
	color: #675314;
	border: solid 1px #f4d04d;
	border-right: solid 2px #c9a00a;
	border-bottom: solid 2px #c9a00a;
	background: #fffdee;
	background: -webkit-gradient(linear,left bottom,left top, color-stop(0, #f9d966),color-stop(1, #fffdee));
	background: -moz-linear-gradient(center bottom,#f9d966 0%,#fffdee 100%);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffdee', endColorstr='#f9d966');
}
.gold:hover {
	background: #fffdee;
	background: -webkit-gradient(linear,left bottom,left top, color-stop(0, #f6c81e),color-stop(1, #fffdee));
	background: -moz-linear-gradient(center bottom,#f6c81e 0%,#fffdee 100%);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffdee', endColorstr='#f6c81e');
}
.gold:active {
	background: #fffdee;
	background: -webkit-gradient(linear,left bottom,left top, color-stop(0, #f9d966),color-stop(1, #fffdee));
	background: -moz-linear-gradient(center bottom,#f9d966 0%,#fffdee 100%);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffdee', endColorstr='#f9d966');
}

