﻿
/*This style will be applied to the div element holding the menu*/
body {
	margin: 0;
	padding: 5px;
}

#menuContainer {

  width: 100%;
  padding:4px 0px 0px 0px;
}

/* Link styles*/

#menuContainer a {
  text-decoration: none;
  color: #FFCC66;
  font-size: 10pt;
  PADDING-RIGHT: 0px; DISPLAY: block; PADDING-LEFT: 0px;   WIDTH: auto; COLOR:White; TEXT-INDENT: 3px;  TEXT-DECORATION: none;
  font-family: Verdana, Arial, sans-serif;
}

#menuContainer a:hover {
  color :White;
}

/* Hide bullets in unordered list*/
#menuContainer ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Set li styles*/
#menuContainer ul li
{
	margin-bottom:0px;
 /*bottom spacing between menu items*/
}




/* Static Menu Item Style */
#menuContainer li 
{
  background-color:#333333;
  color:White;
  padding-left:10px;
  font-family: Verdana, Arial, sans-serif;
  font-size:9pt;
  padding-top:2px;
  padding-bottom:2px;
  width: 139px;
  /* this is to make the submenus position relative to this li */
  position: relative; 
}
/* Mouseover li style*/
#menuContainer li:hover {
   
  background-color: #BF45A3;
}

/*Initially hide second level (or higher) pop-up*/
#menuContainer ul ul {
  position: absolute;
  left: 149px;
  top: 0;
  visibility: hidden;
}
#menuContainer ul ul li 
{
	padding-left:2px;
	padding-bottom:4px;
	border-top:white 1px solid;
	margin-bottom:-3px;
}


/*Mouseover: display second level (or higher) pop-up*/
#menuContainer li:hover > ul {
  visibility: visible;
}

