@import url(http://fonts.googleapis.com/css?family=Bree+Serif);



nav {
	margin:0px auto;
	width:auto;

}

nav ul {
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	display:block;

	}
	
nav ul li {
	float:left;
	display:list-item;
	list-style: none;
	background-color:#2f8a36;
	margin-right: 10px;
	
	}

nav ul li a {
	display:block;
	padding:10px 10px;
	color:#FFF;
	font-size:16px;
	text-decoration:none;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom: 0px solid #fff;
	font-weight: bold;	
}

li a:hover {
	background-color: #000000;
}

	
/* Change this in order to change the Dropdown symbol */
li > a:after { content: ''; } 
li > a:only-child:after { content: ''; }  	
	
	
/* The Dropdown Styles */
/* =================== */

/* Hide Dropdowns by Default */
nav ul ul {
	display: none;
	position: absolute; top: 41px;
	
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:list-item;
	
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:240px;
	float:none;
	position: relative;
	border-bottom:none;
	border-bottom: 1px solid #fff;
	
}

/* Second, Third and more Tiers	*/
nav ul ul ul li {
	position: absolute relative;
	top:-41px; 
	left:240px;
	border-bottom: 1px solid #fff;
	
}


