/* Add a background color to the top navigation */
.topnav {
	position:relative;
    background-color: #fff;
	width:760px;
	margin-left:auto;
	margin-right:auto;
	margin-top:0px;
	padding-left:-5px;
    /*overflow: hidden;*/
}

/* Style the links inside the navigation bar */
.topnav a {
	float: left;
	display: block;
	color: #2568AC;
	text-align: center;
	padding: 14px 8px;
	text-decoration: none;
	font-size: 13px;
}

/* Change the color of links on hover */
.topnav a:hover {
    /*background-color: #ddd;*/
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    /*background-color: #4CAF50;*/
    color: white;
}


/* Dropdown Button */
.dropbtn {
    background-color: #fff;
    /*color: #777;*/
    padding: 0px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    /*background-color: #2568AC;*/
}

.dropbtn a:hover {
	/*color: #fff;*/
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
	margin-top:-10px;
	padding:7px;
	margin-left:2px;
    background-color: #dedede;
    width: auto;
	border-radius:2px;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 1;
	white-space: nowrap;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 7px 7px;
    text-decoration: none;
    display: block;
	text-align:left;
	font-size:12px;
	width: calc(100% - 14px);
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #2568AC;
	color:#fff;
	padding:7px;
	width: calc(100% - 14px);
	border-radius:2px;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
	display:block;
}