
/*This style will be applied to the div element holding the menu*/
 
#menuContainer {
  background-color: none;
  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 {
  border: 0px solid #927e65;   
  color: #FFFFFF;
  width: 200px;
  height: 25px;
  background-color: #74b1c7;
}

/* 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 #a9a9a9;  
  width: 200px;
  height:25px;
  color: #FFFFFF;
  background: url(../images/menu_bg_hover.gif) no-repeat;

}

