.nav-bar
{
	position: fixed;
	height: 64px;
	width: 100vw;
	top: 0px;
	left: 0px;
	background-color: #1a5276;
	box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.30);
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.30);
	-moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.30);
	z-index: 100;
	overflow: visible;
}

.nav-bar-item
{
	position: relative;
	display: inline-flex;
	font-family: helvetica;
	font-size: 200%;
	color: white;
	padding-left: 10px;
	padding-right: 10px;
	height: 64px;
	width: auto;
	text-align: center;
	line-height: 64px;
	cursor: pointer;
}

.nav-bar-item:hover
{
	background-color: white;
	color: black;
}

.nav-bar-menu-dropdown
{
	display: none;
	position: absolute;
	top: 64px;
	left: 0px;
	background-color: #1a5276;
	width: inherit;
	min-width: 377px;
	z-index: 1;
	box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.40);
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.40);
	-moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.40);
}

.nav-bar-item:hover .nav-bar-menu-dropdown
{
	display: block;
}

.nav-bar-menu-item
{
	color: white;
}

.nav-bar-menu-item:hover
{
	background-color: white;
	color: black;
	outline: 1px solid #1a5276;
}
