a {
	color: rgb(102, 102, 0);
	text-decoration: none;
}
a:hover {
	color: rgb(23, 164, 243);
	cursor: pointer;
	text-decoration: underline;
	transition: 1s;
}
body {
	margin: 0;
}
body, html {
	background-color: rgb(255, 255, 255);
	color: rgb(40, 40, 40);
	font-family: Montserrat, Roboto, Karla, Helvetica, Arial, Verdana;
	font-size: 10pt;
	height: 100%;
	width: 100%;
}
div {
	overflow: auto;
}
footer {
	height: 100px;
}
hr {
	border-bottom: 1px solid rgb(225, 225, 225);
}
img {
	border: 0;
}
input, select, button {
	margin: 5px 0;
	padding: 10px;
}
input[type=checkbox] {
	cursor: pointer;
}
input[type=email], input[type=password], input[type=text], select {
	border: 1px solid rgb(225, 225, 225);
}
input[type=button], input[type=Submit], button {
	background-color: rgb(102, 102, 0);
	border-width: 0;
	color: rgb(255, 255, 255);
	transition: 1s;
}
input[type=Submit]:focus, input[type=Submit]:focus, button:focus {
	background-color: rgba(102, 102, 0, 0.75);
}
input[type=Submit]:hover, input[type=Submit]:hover, button:hover {
	background-color: rgba(102, 102, 0, 0.5);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
	cursor: pointer;
}
input[type=Submit]:active, input[type=Submit]:active, button:active {
	background-color: rgba(102, 102, 0, 0.25);
	color: rgb(0, 0, 0);
}
input[type=Submit]:disabled, input[type=Submit]:disabled, button:disabled {
	background-color: rgb(200, 200, 200);
	color: rgb(100, 100, 100);
}
select {
	padding-bottom: 11px;
}
