/*This style will be applied to the div element holding the menu*/


#menuContainer {
  background-color: white;
  width: 10em;
  padding: 0px;
}

/* Link styles*/
#menuContainer a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 11px;
  font-family: "Tahoma", Arial, sans-serif;
}

#menuContainer a:hover {
  color: #FFFFFF;
  width: 170px;
  height: 25px;
}

/* Hide bullets in unordered list*/
#menuContainer ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Set li styles*/
#menuContainer li {
  border-bottom: 1px solid #a9a9a9;
  height:25px;
  width: 200px;
  /* this is to make the submenus position relative to this li */
  position: relative;
  background: url(../images/menu_bg.gif) no-repeat;


  }

/* Mouseover li style*/
#menuContainer li:hover {
  border-bottom: 1px solid #927e65;   
  height: 25px;
  width: 198px;
  color: #FFFFFF;
  background: url(../images/menu_bg_hover.gif) no-repeat;   
}

/*Initially hide second and higher level pop-ups */
#menuContainer ul ul {
  position: absolute;
  left: 10em;
  top: 0;
  visibility: hidden;
}

/*Third level menus should dissapear when first level has hover*/
#menuContainer li:hover ul ul {
	visibility: hidden;
}


/*Mouseover: display second level or third level pop-up*/
#menuContainer li:hover ul, #menuContainer li:hover li:hover ul {
  visibility: visible;
}

