.button {
	display: inline-block;
	outline: none;
	cursor: pointer;
	vertical-align: top;
	text-align: center;
	text-decoration: none;
	font: 14px/20px Arial, Helvetica, sans-serif;
	padding: 2px 2px 2px ; 
	text-shadow: 2px 3px 2px rgba(0,0,0,.9);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .6em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 1px 4px 1px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}
.NxtORANGE {
	color: #ffffff;
	border: solid 1px #000000;
	background: #E44F03;
	background: -webkit-gradient(linear, left top, left bottom, from(#E44F03), to(#FCA53F));
	background: -moz-linear-gradient(top,  #E44F03,  #FCA53F);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#E44F03', endColorstr='#FCA53F');
	
}
.NxtORANGE:hover {
border: solid 1px #000000;
	background: #FCA53F;
	background: -webkit-gradient(linear, left top, left bottom, from(#FCA53F), to(#E44F03));
	background: -moz-linear-gradient(top,  #FCA53F,  #E44F03);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#FCA53F', endColorstr='#E44F03');
}
.NxtORANGE:active {
	color: #ffffff;
	background: -webkit-gradient(linear, left top, left bottom, from(#2F2F2F), to(#9F9F9F));
	background: -moz-linear-gradient(top,  #2F2F2F,  #9F9F9F);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#2F2F2F', endColorstr='#9F9F9F');
}