/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Verdana);

#container {
	margin: 0 auto;
}

p {
	text-align: left;
}

nav {

	background-color: #7184ae;
}

nav ul {
	padding: 0;
  margin: 0;
	list-style: none;
	position: relative;
	}
	
nav ul li {
	display:inline-block;
	background-color: #7184ae;
	}

nav a {
	font-family: "Open Sans", sans-serif;
	display:block;
	padding:0 10px;	
	color:#FFF;
	font-size:14px;
	line-height: 40px;
	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: 40px; /* the height of the main nav */
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	*/
nav ul ul ul li {
	position: relative;
	top:-60px; 
	left:170px;
}

	
/* Change this in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }