 
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #2D2D2D;
	 
 font-family: 'Pathway Gothic One';
  font-style: normal;
  font-weight: 200;
  z-index: 300;
	
	
 
  

 
 }

ul li {
  display: block;
  position: relative;
  float: left;
  background: #fff;
   font-size: 18px;
  color: #3F3F3F;
	
	  
 
}

/* This hides the dropdowns */


li ul { display: none;

  }

ul li a {
  display: block;
  padding: 1em;
  text-decoration: none;
  white-space: nowrap;
  color: #3F3F3F;
	
  
  
    
}

ul li a:hover { 
background: #C7B463; 
color: #fff;
	
	

}

/* Display the dropdown */


li:hover > ul {
  display: block;
  position: absolute;
  
}

li:hover li { float: none; }

li:hover a { background: #C7B463; 
color: #fff;
}

li:hover li a:hover { background: #786546; }

.main-navigation li ul li { border-top: 0;
	 
}
.main-nav { 
letter-spacing:3px; 
font-size: 20px;
	background-color: #2D2D2D;
	
}
.menu-nav { 
letter-spacing:1px; 
}

/* Displays second level dropdowns to the right of the first level dropdown */


ul ul ul {
  left: 100%;
  top: 0;
}

/* Simple clearfix */



ul:before,
ul:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

ul:after { clear: both; }