
/*This style will be applied to the div element holding the menu*/

/* Hide bullets in unordered list*/
#menuContainer ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Set li styles*/

#menuContainer li {
  /* this is to make the submenus position relative to this li */
  position: relative; 
  width: 10em;
}

/* Mouseover li style*/
#menuContainer li:hover {


}
/*Initially hide second level (or higher) pop-up*/
#menuContainer ul ul {
  position: absolute;
  left: 10em;
  top: 0;
  visibility: hidden;
}

/*Mouseover: display second level (or higher) pop-up*/
#menuContainer li:hover > ul {
  visibility: visible;
}
