button.orange {
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 26px;
	color: #ffffff;
	padding: 10px 20px;
	background: #dd8a37; 
	background: -moz-linear-gradient(
		top,
		#eb9f52 0%,
		#dd8a37);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#eb9f52),
		to(#dd8a37));
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #c27931;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,1);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,1);
	text-shadow:
		0px 0px 0px rgba(255,255,255,0.7),
		0px 1px 0px rgba(0,0,0,0.3);
		
/* 	display: block; */
	margin-left: auto;
	margin-right: auto;
}
button.orange:hover {
	background: #ffac59;
	background: -moz-linear-gradient(
		top,
		#ffac59 0%,
		#dd8a37);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#ffac59),
		to(#dd8a37));
	text-decoration: none;
}
button.orange:active {
	background: #d18d49;
	background: -moz-linear-gradient(
		top,
		#d18d49 0%,
		#dd8a37);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#d18d49),
		to(#dd8a37));
}