@charset "UTF-8";
/* CSS Document */

.horizontalcssmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.horizontalcssmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.horizontalcssmenu ul li a{
text-align: center;
text-decoration: none;
background-color: #666666;
color: white;
font: 11px Arial;
left: 0;
top: 0;
}
	
/*Sub level menu*/
.horizontalcssmenu ul li ul{
left: 0;
top: 0;
border-top: 0px solid #202020;
position: absolute;
display: block;
width: 100px; /*Width of top level menu link items*/
visibility: hidden;

}

/*Sub level menu list items*/
.horizontalcssmenu ul li ul li{
display: block;
float: none;
left: 0;
top: 0;
}


/* Sub level menu links style */
.horizontalcssmenu ul li ul li a{
width: 140px; /*width of sub menu levels*/
font-weight: normal;
padding-top: 3px;
padding-bottom: 4px;
padding-left: 7px;
text-align: left;
display: block;
background: #ffffff;
 filter:alpha(opacity=80);
  /* CSS3 standard */
  opacity:0.8;
color: #000000;
}

.horizontalcssmenu ul li a:hover{
background: url(menubgover.gif) center center repeat-x;
color:#000000;
}

.horizontalcssmenu ul li ul li a:hover{
background: #ffffff;
color: #000000;
}

.horizontalcssmenu .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: 0em;
}
	
/* Holly Hack for IE \*/
* html .horizontalcssmenu ul li { float: left; height: 1%; }
* html .horizontalcssmenu ul li a { height: 1%; }
/* End */