body {
    background-color: #eff0f1;
    color: #121212;
    font-family: sans-serif;
    font-size: 1.1em;
    margin: 0px;
}

header {
	background-color: #005172;
	color: #eff0f1;
	font-weight: bold;
	margin: 0px;
	padding: 20px;
}

.headwrapper {
	max-width: 1400px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.item-logo {
	padding: 20px;
	text-align: center;
}

.item-search {
	padding: 20px;
	text-align: center;
}

@media only screen and (min-width: 730px) {
	.headwrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.item-search {
		text-align: right;
	}
	.item-logo {
		text-align: left;
	}
}

main {
	max-width: 1100px;
	background-color: #ffffff;
	color: #121212;
	margin: auto;
	margin-top: 0px;
	padding: 20px;
}

footer {
	background-color: #eff0f1;
	color: #121212;
    text-align: center;
    padding: 20px;
}

.lifted {
	background-color: #ffffff;
	padding: 20px;
	text-align: center;
	margin: auto;
}

h1 {
    font-size: 2em;
}

li {
	list-style-type: none;
}

a {
    color: #005172;
    text-decoration: underline;
}

a:hover {
    color: #0080a3;
    text-decoration: none;
}

.altlink {
    color: #ffffff;
    text-decoration: underline;
    font-size: 2em;
}

.altlink:hover {
	color: #ffffff;
}

.small {
	font-size: 0.9em;
	font-weight: lighter;
	color: #c7c3c3;
}

input[type=text] {
    padding: 10px 10px;
    margin: 8px 0px;
	border-bottom: 3px solid #121212;
	border-right: 3px solid #121212;
	border-top: 3px solid #ffffff;
	border-left: 3px solid #ffffff;
    background-color: #eff0f1;
}

input[type=text]:focus {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 3px solid #5996F6;
	border-radius: 0px;
}

input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #69be28;
    color: #121212;
    font-weight: bold;
    padding: 10px 10px;
    text-decoration: none;
    margin: 4px 2px;
	border-bottom: 3px solid #121212;
	border-right: 3px solid #121212;
	border-top: 3px solid #ffffff;
	border-left: 3px solid #ffffff;
}

input[type=submit]:hover {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #73cf2c;
    border-bottom: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
}

input[type=submit]:active {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
