/* menu.css */
.navbar {
    font: bold 10pt Arial, Verdana;
	overflow: hidden;
	background-color: #fff;
	margin-right: auto;
	margin-left: auto;
    width: 50%;
    white-space: normal;
}
.navbar a {
	float: left;
	font-size: 10pt;
	font-weight: bold;
	color: black;
	text-align: center;
	padding: 5px 5px;
	text-decoration: none;
	border: 1px #FF7800 solid;
//	min-width: 36px;
	white-space: nowrap;
}

.subnav {
	float: left;
	overflow: hidden;
}

.subnav .subnavbtn {
	font-size: 10pt;
	font-weight: bold;
	border: none;
	outline: none;
	color: black;
	padding: 5px 5px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

.navbar a:hover, .subnav:hover .subnavbtn, .dropdown:hover .dropbtn {
	background-color: #666666;
	color: white;
	transition: background-color 500ms, color 500ms;
}

.subnav-content {
	display: none;
	position: absolute;
	left: 0;
	background-color: #666666;
	color: white;
	width: auto;
	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;
}
.dropdown {
	float: left;
	overflow: hidden;
	border: 1px #FF7800 solid;
}

.dropdown .dropbtn {
	font-size: 10pt;
	font-weight: bold;
	border: none;
	outline: none;
	color: black;
	padding: 5px 5px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
	transition: background-color 500ms, color 500ms;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: white;
	color: black;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 5px 5px;
	text-decoration: none;
	display: block;
	text-align: left;
	min-width: 100px;
}

.dropdown-content a:hover, .current {
	background-color: #666666;
	color: white;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.current {
	background-color: #888888;
	color: white;
	transition: background-color 500ms, color 500ms;
}

