#mainNav {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: inherit;
	min-width: 960px;
	//height: 10vh;
	height: 66px;
	//background: rgba(30, 30, 30, 0.9);
	//background: rgba(10, 242, 41, 0.9);
	background: rgba(10, 200, 255, 0.9);
	box-shadow: 0 -1px 7px 0 rgba(255, 255, 255, 0.6);
	z-index: 5;
}
#logo {
	//width: 60px;
	height: 80%;
	position: relative;
	left: 30px;
	top: 6px;
	border-radius: 50%;
	box-shadow: none;
	transition: box-shadow 500ms;
}
#logo:hover {
	border-radius: 50%;
	box-shadow: 0 0 4px 3px rgba(255, 255, 255, 0.8);
}
#mainMenu {
	list-style: none;
	position: absolute;
	right: 20px;
	top: 0;
	//margin-top: 2%;
	//bottom: 50%;
	//transform: translateY(50%);
	height: 100%;
	//line-height: 1em;
}
#mainMenu li {
	//display: inline-block;
	display: block;
	float: left;
	//padding: 0 30px;
	//line-height: 1em;
	height: auto;
	position: relative;
	top: 0;
	
}
#mainMenu li:hover {
	background: rgba(0, 0, 0, 0.1);
}
#mainMenu li:hover a {
	top: -4px;
}
#mainMenu li a {
	color: white;
	padding: 0 30px;
	text-decoration: none;
	height: 66px;
	display: table-cell;
	vertical-align: middle;
	//line-height: 1em;
	position: relative;
	top: 0;
	transition: top 300ms;
}


#navFiller {
	position: relative;
	top: calc(100vh - 66px);
	left: 0;
	width: 100%;
	height: 66px;
	z-index: -1;
}