/* CSS Document */

nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  }
  
nav ul li {
  display:inline-block;
  }

nav a {
  display:block;
  padding:0 10px; 
  color:#FFF !important;
  font-size:14px;
  line-height: 60px;
  text-decoration:none;
  text-transform: uppercase;
}

nav a:hover { 
  background-color:rgba(122, 2, 24, 0.55);
}

/* Hide Dropdowns by Default */
nav ul ul {
  display: none;
  position: absolute; 
  top: 60px; /* the height of the main nav */
}
  
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
  display:inherit;
  background-color:rgba(122, 2, 24, 0.55);
}
  
/* Fisrt Tier Dropdown */
nav ul ul li {
  width:220px;
  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: ''; }

/* News Feed */
