/* CSS Horizontal List Menu Style Sheet - by JavaScript Kit */
/* Customized by Mary Beth Wilson */
.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{
display: block;
width: 126px; /*Width of top level menu link items*/
padding: 2px 1px 2px 1px; 
border: 1px solid #6a6a6a;
border-left-width: 0;
text-decoration: none;
background-color:#ffffff;
color: black;
text-align: center;
font: bold 12px arial;
}
	
/*Sub level menu*/
.horizontalcssmenu ul li ul{

width: 127px;
left: 0;
top: 0;
right: 0; 
border-top: 1px solid #6a6a6a; 
border-bottom: 1px solid #6a6a6a; 
border-right: 1px solid #6a6a6a;

position: absolute;
display: block; 
visibility: hidden;
z-index: 100; 
text-align: center;
}

/*Sub level menu list items*/
.horizontalcssmenu ul li ul li{
display: inline; 
float: none;
text-align: center;
}


/* Sub level menu links style */
.horizontalcssmenu ul li ul li a{
width: 126px; /*width of sub menu levels*/
font-weight: normal;
padding: 2px 0px 2px 0px;
background: #efefef;
border-width: 0px 1px 0px 1px; /* 0px 1px 0px 1px; */
font: normal 11px arial;
text-align: center;
}

.horizontalcssmenu ul li a:hover{
background-color:#efefef center center repeat-x; 
background-color:#efefef;
color: #7f4e52; 
text-align: center;
font-weight: 600; 
}

.horizontalcssmenu ul li ul li a:hover{
background: #efefef; color: #7f4e52; font: bold; text-align: center;
}


* 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 .horizontalcssmenu ul li { float: left; height: 1%; }
* html .horizontalcssmenu ul li a { height: 1%; }
/* End */
