@import url(https://fonts.googleapis.com/css?family=Roboto|Source+Sans+Pro|Ubuntu);

body {
	margin: 0px;
	padding: 0px;
	font-family: "Roboto", sans-serif;
	color: white;
}

div.background {
	position: fixed;
	z-index: -100;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

nav {
	width: 100vw;
	height: 64px;
	border-radius: 0px 0px 10vh 10vh;
	border: none;
	background-color: rgba(0, 0, 64, 0.5);
	position: fixed;
	color: white;
	padding: 0px;
	margin: 0px;
}

nav table {
	position: relative;
	top: 24px;
	left: 25%;
}

nav table tr {
	width: 50vw;
	min-width: 600px;
}

nav table tr td {
	width: 10vw;
	min-width: 120px;
	text-align: center;
}

a {
	color: white;
	text-decoration: none;
}

a:hover {
	color: yellow;
	text-decoration: none;
	font-weight: bold;
}

a:active {
	color: white;
	text-decoration: none;
}

a:visited {
	color: white;
	text-decoration: none;
}

main {
	width: 100vw;
	min-height: calc(90vh - 64px);
	padding-top: 64px;
	font-family: "Ubuntu", sans-serif;
}

main div#topBanner {
	position: relative;
	height: 200px;
	max-height: 10vh;
	text-align: center;
	top: 30vh;
	width: 100vw;
	font-style: medium;
}

main div#topBanner h1 {
	padding: 0px;
	margin: 0px;
	font-size: 4em;
}

main div#topBanner h2 {
	padding: 0px;
	margin: 0px;
	font-size: 2em;
}

main article {
	background-color: rgba(255, 255, 255, 0.5);
	border: solid 1px gray;
	border-radius: 4px;
	width: 80vw;
	margin: 24px 0px 0px calc(10vw - 8px);
	min-height: 10vh;
	padding: 8px;
}

main article header {
	font-family: "Ubuntu", sans-serif;
	font-size: 2em;
	border-bottom: solid 2px white;
	margin-bottom: 12px;
}

main article header h1 {
	font-family: "Ubuntu", sans-serif;
	font-size: 2em;
	border-bottom: solid 2px white;
	margin: 0px;
}

main article section {
	font-family: "Roboto", sans-serif;
	padding-left: 16px;
}

footer {
	width: calc(100vw - 32px);
	height: calc(10vh - 16px);
	background-color: rgba(0, 0, 64, 1.0);
	color: white;
	padding-left: 32px;
	padding-top: 16px;
}

footer span#small {
	font-size: 12px;
}