.navbar {
	overflow: hidden;
	background-color: #333;
}

.navbar a{
	float:left;
	font-size: 16px;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.acclg a{
	float:right;
	font-size: 16px;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.subnav {
	float: left;
	overflow: hidden;
}

.subnav .subnavbtn {
	font-size: 16px;
	border: none;	
	outline: none;	
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;	
	margin: 0;
}
.navbar a:hover, .subnav:hover .subnavbtn{
	background-color: yellow;
	color:black;
}

.subnav-content {
	display: none;	
	position: absolute;	
	left: 0;
	background-color: yellow;
	width: 100%;
	z-index: 1;
}

.subnav-content a {
	float: left;
	color: black;
	text-decoration: none;
}

.subnav-content a:hover {
	background-color: #eee;
	color: black;
}

.subnav:hover .subnav-content{
	display: block;
}

