

.menunavbar {
    overflow: hidden;
    background-color: #333;
	/* background: url('./images/menutop.png') repeat-x 0 -116px; */
	width:100%;
	z-index:99;
}

.menunavbar a {
    float: right;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: right;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: B Yekan;
    margin: 0;
}

.menunavbar a:hover, .dropdown:hover .dropbtn {
	 /* background: #71a3c1; */
   /*  background: #71a3c1 url('./images/menutop_links.png') repeat-x 0 -0px; */
}
.dropdown-content a:hover{
	background: #71a3c1;
}

@supports (-moz-appearance:none) {
    .dropdown-content { 
	 margin-top: 0px !important; } 
}
.dropdown-content {
    display: none;
    /* position: absolute; */
	position: fixed;
    background-color: #f9f9f9;
	margin-top: 0px; 
    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;
}




.active {
	 background: #71a3c1;
   /*  background: #71a3c1 url('./images/menutop_links.png') repeat-x 0 -0px; */
}

