@charset "UTF-8";
/* CSS Document */

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	background:#ffc20e;
	text-indent:0;
	border:none;
	display:inline-block;
	color:#fff;
	font-family:'Roboto',sans-serif;
	font-size:1em;
	font-weight:bold;
	font-style:normal;
	height:auto;
	line-height:normal;
	margin:0 0 .5em 0;
	min-width:100px;
	outline:none;
	padding:10px 15px;
	text-decoration:none;
	text-align:center;
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
input[type="button"]:disabled,
button:disabled,
.button:hover {
	background-color:rgba(255,194,14,0.65);
	color:#fff;
	text-decoration:none;
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
}
input[type="submit"]:disabled,
input[type="reset"]:disabled,
input[type="button"]:disabled,
button:disabled {
	background-color:#d7b759;
	-webkit-transition:none;
	-moz-transition:none;
	-o-transition:none;

}
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
button:active,
.button:active {
	color:#fff;
	position:relative;
	top:1px;
	text-decoration:none;
}