/*This style will be applied to the div element holding the menu*/
/*1px=0.0626 em*/

#menuContainer {
  	font-family: "Tahoma";
	font-weight: bold;
	font-size: 11px;
	color: #ffffff;
	z-index:1000;
}

/* Link styles*/

#menuContainer a {
 font-family: "Tahoma";
	font-weight: bold;
	font-size: 11px;
	color: #ffffff;
	text-decoration: none;
}

.whitebold
{
font-family: "Tahoma";
	font-weight: bold;
	font-size: 11px;
	color: #ffffff;
	text-decoration: none;
}
#menuContainer a:hover {
  	color: #a8dff5;
	text-decoration: none;
}

/* Hide bullets in unordered list*/
#menuContainer ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
    
}

/* Set li styles*/
#menuContainer li
{
float:left;
margin-left:5px;
position: relative; 
padding:3pt;
}

#menuContainer li li {
  float:left;
  width:10em;
  background:#1280A8;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  /*float:left;*/
  padding-bottom:5pt;
  /* this is to make the submenus position relative to this li */
 position: relative; 
 z-index:1000;
 display: inline;
}

/*Initially hide second level (or higher) pop-up*/
#menuContainer ul ul {
  position: absolute;
  left: -0.1em;
  top: -0.1em;
  padding-left:3 pt;
  margin-top:2.0em;
  visibility: hidden;
  z-index:1000;
}

/*Mouseover: display second level (or higher) pop-up*/
#menuContainer li:hover > ul {
  visibility: visible;
  z-index:1000;

}
#googlads
{
z-index:-1;
}