/*This style will be applied to the div element holding the menu*/
body {
	margin: 0;
	padding: 5px;
}

#menuContainer {
  background-color: white;
  width: 10em;
  padding: 5px;
}

/* Link styles*/

#menuContainer a {
  text-decoration: none;
  color: #008080;
  font-weight: bold;
  font-size: 10pt;
  font-family: Verdana, Arial, sans-serif;
}

#menuContainer a:hover {
  color: #4682b4;
}

/* Hide bullets in unordered list*/
#menuContainer ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Set li styles*/

#menuContainer li {
  background-color: #f5f5f5;
  border: 1px solid #708090;
  width: 10em;
  /* this is to make the submenus position relative to this li */
  position: relative; 
}

/* Mouseover li style*/
#menuContainer li:hover {
  border: 1px solid #CC6600;   
  background-color: #FF9933;
}

/*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;
}
