/* Container Div */
.NavBar{
	overflow: hidden;
	border-radius: 5px;
	width: 100%;
	padding: 5px;
}

.fixed{
	position: fixed;
	top: 0;
	width: 99%;
	z-index: 4;
}

.NavBar a{
	float: left;
	font-size: 16px;
	color: white;
	text-align: center;
	text-decoration: none;
}

.dropdown{
	float: left;
	overflow: hidden;
	margin-left: 10px;
}

/* Drop Down Button */
.dropdown .dropbtn{
	font-size: 16px;
	border: none:
	outline: none;
	color: white;
	padding: 10px;
	background: rgba(15, 15, 15, .8);
	font-family: inherit;
	margin: 0;
	border-radius: 5px;
}

.NavBar a:hover, .dropdown:hover .dropbtn{
	color: red;
	border-radius: 5px;
	
}

.dropdown-content{
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 4;
	border-radius: 5px;
}

.dropdown-content a{
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover{
	background-color: #ddd;
}

.dropdown:hover .dropdown-content{
	display: block;
	z-index: 4;
}