@charset "utf-8";
/* -- Navigation -- */

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #37454D;
}

li {
	float: left;
	background-color: #37454D;
	margin-right: 2px;
	margin-top: 2px;
	margin-bottom: 2px;
	border-radius: 4px;
}

li a, .dropbtn {
	display: inline-block;
	color: white;
	text-align: center;
	padding: 12px 12px;
	text-decoration: none;
	font-weight: normal;
}

li a:hover, .dropdown:hover .dropbtn {
	background-color: #FF9900;
	color: #000;
	border-radius: 4px;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
	background-color: #007EAE
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* -- End Navigation -- */
