

.navo {
text-align:inherit;
background-color:transparent;


}

.navo ul {


		margin: 5px 0;
	position: relative;
  z-index:500;


	}
	
.navo ul li {
	display:inline-table;
	background-color: #E64A19;

	

	}

.navo a {

display:block;

	color:#FFF;
	font-size:15px;
	line-height: 40px;
	text-decoration:none;

}

.navo a:hover { 
	background-color: #000000; 
}

/* Hide Dropdowns by Default */
.navo ul ul {
	display: none;
	position: absolute; 
	top: 40px; /* the height of the main nav */
}
	
/* Display Dropdowns on Hover */
.navo ul li:hover > ul {
	display:inherit;
	
  position: absolute;





}
	
/* Fisrt Tier Dropdown */
.navo ul ul li {
	width:90px;
margin-top:-11px;
float:none;
	display:list-item;
	position: relative;

}

/* Second, Third and more Tiers	*/
.navo ul ul ul li {

margin-top:-26px;
font-size:7px;

	left:-300px;
	  width: 295px;
  position:relative;


}

	
/* Change this in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }