/*###NAVBAR BOF###*/
.nav-dropdown-pos {/*where the menu icon is postioned */
 position:fixed;
 display: inline-block;
 z-index:5;
 text-align: center;
}

.nav-dropdown {
 position:relative;
 display: inline-block;
  z-index:5;
}

/* .nav-dropdown ul {
not needed
}*/
.nav-dropdown li {
	float:left;

}
.nav-dropdown li, .nav-dropdown-btn { /* colour of icon*/
	position:fixed;
	display:inline-block;
	border-radius:4px;
	color:#fff;
	padding-left:10px;
	padding-right:10px;
	padding-top:3px;
	padding-bottom:0px;
	text-decoration: none;
	z-index:6;
	background-color:#666;
	opacity:1;
	font-family: MyWebfontBold, Arial, Helvetica, sans-serif;
}
.nav-dropdown-btn:hover {
	color:#CCC;
	text-decoration: none;
}

/* this sets up the panel for the content*/
.nav-dropdown-content {
	display: none;
	position: absolute;
	background-color: white;
	width: 200px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 12px 16px;
	z-index: 5;
	border-radius:4px;
	top:0px;
    right:0px;
	
}

/* this sets how the content is displayed.*/
.nav-dropdown-content a {
	color: #666;
	padding: 12px 0px;
	text-decoration: none;
	display: block;
	text-align: left;
	font-size:24px;
}

/* this displays the content when the menu button is cliked on.*/
.nav-dropdown:hover .nav-dropdown-content {
	display: block;
}

/*DESKTOP*/
@media (min-width: 900px) {
.nav-dropdown-pos {
 top:140px;
 left:640px;
 font-size:28px;
}
}
/*DESKTOP*/
@media (max-width: 900px) {
.nav-dropdown-pos {
 top:100px;
 left:520px;
 font-size:28px;
}
}
/*DESKTOP*/
@media (max-width: 760px) {
.nav-dropdown-pos {
 top:80px;
 left:440px;
 font-size:28px;
}
}
/*DESKTOP*/
@media (max-width: 685px) {
.nav-dropdown-pos {
 top:65px;
 left:390px;
 font-size:28px;
}
}
/*DESKTOP*/
@media (max-width: 626px) {
.nav-dropdown-pos {
 top:55px;
 left:355px;
 font-size:28px;
}
}
/*DESKTOP*/
@media (max-width: 584px) {
.nav-dropdown-pos {
 top:45px;
 left:330px;
 font-size:28px;
}
}
/*DESKTOP*/
@media (max-width: 520px) {
.nav-dropdown-pos {
 top:50px;
 left:280px;
 font-size:20px;
}
}
/*DESKTOP*/
@media (max-width: 414px) {
.nav-dropdown-pos {
 top:28px;
 left:215px;
 font-size:20px;
}
}


/*###NAVBAR EOF###*/