/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Franklin Gothic Heavy);
@import url(https://fonts.googleapis.com/css?family=Verdana);
@import url(https://fonts.googleapis.com/css?family=Arial);



nav {


    background-color: rgb(30,80,180);

}

nav ul {
	padding: 0;
  margin: 0;
	list-style: none;
	position: relative; 
	}
	
nav ul li {
	display:inline-block;
	background-color: rgb(30,80,180);   
	}

nav a {
	display:block;
	padding:0 10px;	
	color: #FFF; 
	font-size:15px;
	line-height: 35px;
	text-decoration:none;
}

nav a:hover { 
	background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Hide Dropdowns by Default */
nav ul ul {
	display: none;
	position: absolute; 
	top: 35px; /* the height of the main nav */
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* First Tier Dropdown */
nav ul ul li {
	width:100px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	*/
nav ul ul ul li {
	position: relative;
	top:-40px; 
	left:170px;
}

