/*

 =======================================  
	Dick Akkerhuis Fotografie
	http://www.akker-huis.nl
	
	STYLESHEET: menu-bar-2018.css
	
	DATUM: 20-03-2018
	
	WIT			=>	#ffffff
	LICHTGRIJS	=>	#cccccc
	MIDDENGRIJS	=>	#999999
	DONKERGRIJS	=>	#666666
	BIJNA ZWART	=>	#333333 (background=>body)
	ZWART		=>	#000000
	LOGO D		=>	#e34528
	LOGO A 		=>	#c2ed73
	LOGO F 		=>	#992510
======================================= 

*/
.navbar {
    overflow: hidden;
    background-color: #f9f9f9; //#fff; //#ccc; //#333;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
    float: left;
    font-size: 20px; //16px;
    color: #333; //white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 20px; //16px;    
    border: none;
    outline: none;
    color: #333; //white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #f9f9f9; //white; //red;
	color: red;
}

.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: 1;
}

.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;
}