body {
	font-family: 'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
	font-size: 14px;
	height: 100%;
	margin: 0px;
	padding: 0px;
	width: 100%;
	overflow: hidden;
}

#MainContainer {
	background-color: #E4E4E4;
	background-image: linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
	background-image: -webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
	background-image: -ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
	background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, #A7A7A7), color-stop(0.51, #E4E4E4) );
	background-attachment: fixed;
	overflow: hidden;
}


#HeaderContainer {
	display: block;
	width: 100%;
	height: 130px;
	max-height: 130px;
	position: fixed;
	top: 0;
	margin: 0px;
	padding: 0px;
	background-color: #f1f1f1;
	overflow: hidden; /* added */
	border-bottom: thick solid #eaeae;
}

#TopNavContainer {
	display: block;
	height: 30px;
	width: 100%;
	background-color: white;
	text-align: right;
}

#MiddleEarthContainer {
	/*display: block;*/
	position: fixed;
	top: 135px;
	bottom: 40px;
	left: 0;
	right: 0;
	overflow: scroll;
	padding: 20px;
	color: white;
	background-color: #eaeaea;
	/*display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;*/
	/*justify-content: center;*/
	background-color: #E4E4E4;
	background-image: linear-gradient(top, #4895f0 0%, #045ed2 51%);
	background-image: -webkit-linear-gradient(top, #4895f0 0%, #045ed2 51%);
	background-image: -ms-linear-gradient(top, #4895f0 0%, #045ed2 51%);
	background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, #4895f0), color-stop(0.51, #045ed2) );
	background-attachment: fixed;
}

#FooterContainer {
	display: block;
	height: 40px;
	width: 100%;
	position: fixed;
	bottom: 0;
	background-color: #f1f1f1;
	text-align: center;
}

	#FooterContainer p {
		display: block;
		text-align: center;
		color: black;
		vertical-align: central;
		line-height: 10px;
	}



.fullpagecontainer {
	display: block;
	width: 100%;
	height: 100vh;
	box-sizing: border-box;
	text-align: left;
	margin: 0px;
	/*margin: 20px 0px 0px 0px;*/
	padding: 0px;
	/*overflow: scroll;*/
	border-top: thick solid darkblue;
}


h1 {
	font-size: 38px;
	font-family: 'Archivo Black', sans-serif;
	text-style: italic;
}

h2 {
	font-size: 16px;
	font-family: 'Quicksand', sans-serif;
	color: darkblue;
	margin: 0px 0px 0px 0px;
}



ul {
	text-align: left;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	color: lightblue;
}

p {
	text-align: left;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	color: lightblue;
}


/* unvisited link */
a:link {
	color: darkblue;
}

/* visited link */
a:visited {
	color: darkblue;
}

/* mouse over link */
a:hover {
	color: lightblue;
}

/* selected link */
a:active {
	color: blue;
}


.topnavlink {
	font-weight: bold;
	display: inline-block;
	margin: 7px;
	color: #333333;
	text-decoration: none;
	font-size: 13px;
}

	.topnavlink:hover {
		text-decoration: solid;
		color: #98c43e;
		border-bottom: solid #333333 4px;
	}