* {
	/* font-family: "Open Sans"; */
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	position: relative;
	width: 100%;
	/* margin: 0; */
	/* height: 100%; */
}

html {
	height: 100%;
}


body {
	min-height: 100%;
	color: #333;
	margin: 0;
	/* padding: 8px; */
	padding: 0;
	/* padding-bottom: 20px; */
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; */
}

/* .numbers { */
/* font-family: 'Share Tech', sans-serif; */
/* font-family: 'Roboto Condensed', sans-serif; */
/* } */

h1,
h2,
h3,
h4 {
	font-size: 1em
}

/*
main {
	min-height: 100%;
} */

a {
	color: rgb(0, 100, 200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0, 80, 160);
}

label {
	display: block;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

button {
	cursor: pointer;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.error {
	color: red
}

/* begin topnav */
ul.topnav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
}

ul.topnav li {
	float: left;
}

ul.topnav li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

ul.topnav li select {
	display: block;
	color: white;
	background-color: #333;
	text-align: center;
	padding: 14px 8px;
	margin: 0 auto;
	text-decoration: none;
}

ul.topnav li select:hover {
	background-color: #111;
}

ul.topnav li a:hover:not(.active) {
	background-color: #111;
}

ul.topnav li a.active {
	background-color: #04AA6D;
}

ul.topnav li.right {
	float: right;
}

@media screen and (max-width: 600px) {

	ul.topnav li.right,
	ul.topnav li {
		float: none;
	}
}

/* end topnav */

.page-header {
	min-height: 78px;
	margin-left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em;
}

@media screen and (max-width: 640px) {
	.page-header {
		min-height: 54px;
		margin-left: 54px;
	}
}

/* .page-header>span {

} */