.header ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.header ul li{
position: relative;
display: inline;
float: left;

}

/*Top level menu link items style*/
.header ul li a{
display: block;
border-left-width: 0;
text-decoration: none;
color: black;
font: bold 11px Verdana;
}
	
/*Sub level menu*/
.header ul li ul{
  left: 0;
  top: 0;
  border: 1px solid #2480c3;
  border-bottom: 2px solid #2480c3;
  border-right: 2px solid #2480c3;
  position: absolute;
  display: block;
  visibility: hidden;
  z-index: 100;
  text-align: left;
}

/*Sub level menu list items*/
.header ul li ul li{
  display: inline;
  float: none;
}


/* Sub level menu links style */
.header ul li ul li a{
  width: 160px; 
  font-weight: normal;
  padding: 2px 10px;
  background: #f8f8f8;
  border-width: 0 1px 1px 1px;
}

.header ul li ul li a:hover{
background: #c8e3f4;
}

.header .arrowdiv{
position: absolute;
right: 0;
background: transparent url(menuarrow.gif) no-repeat center left;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .header ul li { float: left; height: 1%; }
* html .header ul li a { height: 1%; }
/* End */
