/*This style will be applied to the div element holding the menu*/
body {
	margin: 0;
	padding: 0px;
}

#menuContainer {
  background-color: #FFFFFF;
  width:10em;
  padding: 0px;
}

/* Link styles*/

#menuContainer a {
  text-decoration: none;
  color: #000000;  
  font-size: 7pt;
  font-family: Verdana, Arial, sans-serif;
}

#menuContainer a:hover {
  color: #000099;  
  font-weight: bold;
}

#menuContainer a:visited {
  color: #000099;  
  font-weight: bold;
}

/* Hide bullets in unordered list*/
#menuContainer ul { 
	list-style-type: none;
	margin: 0;
	padding: 0;	
}

/* Set li styles*/

#menuContainer li {
  background-color: #FFFFFF;
  border-bottom: 1px solid #999999;
  /* this is to make the submenus position relative to this li */
  position: relative; 
  width:10em;
}

/* Mouseover li style*/
#menuContainer li:hover {
  border-bottom: 1px solid #999999;   
  background-color: #F2F2F2;
}

/*Initially hide second level (or higher) pop-up*/
#menuContainer ul ul {
  position: absolute;
  left: 10em;
  top: 0;
  visibility: hidden;
  border-bottom: 1px solid #999999;
	border-top: 1px solid #999999;
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
}

/*Mouseover: display second level (or higher) pop-up*/
#menuContainer li:hover > ul {
  visibility: visible;
}

.LiInnner {
    background: url(../js/arrow_r.gif) no-repeat right center;
}
