/* effect */
.button, button, fieldset, select, a,
input[type="submit"], input[type="password"], input[type="search"], input[type="text"], input[type="checkbox"],
.button:hover, button:hover, input[type="submit"]:hover, a:hover{
    transition:         all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition:    all 200ms linear;
    -o-transition:      all 200ms linear;
    -ms-transition:     all 200ms linear;
}
.button, button {
    border: 1px solid #a87c4f;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	color: #a87c4f;
	max-width: 210px;
	text-align: center;
}
.button:hover, button:hover {
    border: 1px solid #111;
    color: #111;
}