.button{
	background: #542d0e; /* Old browsers */
	background: -moz-linear-gradient(top, #542d0e 43%, #331b09 91%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(43%,#542d0e), color-stop(91%,#331b09)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #542d0e 43%,#331b09 91%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #542d0e 43%,#331b09 91%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #542d0e 43%,#331b09 91%); /* IE10+ */
	background: linear-gradient(to bottom, #542d0e 43%,#331b09 91%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#542d0e', endColorstr='#331b09',GradientType=0 ); /* IE6-9 */
	
	 text-decoration:	none;
    color:				white;
    font-weight:		200;
	padding: 			0px 15px;
	width:				220px;
	box-sizing: 		border-box;
	display:			inline-block;
	height:				40px;
	line-height:		40px;
	text-align:			center;
	text-transform:		uppercase;
    
	-webkit-transition: .5s; 
    transition: 		.5s;
}
.button:hover{
	background: #d3af80; 
	color:		#542d0e;
}
