 
 
.horizontalcssmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
}

/*Top level list items*/
.horizontalcssmenu ul li{
	position: relative;
	display: inline;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #26354A;

}

/*Top level menu link items style*/
.horizontalcssmenu ul li a{
	display: block;
	width: 90px;
	border-left-width: 0;
	text-decoration: none;
	color: #26354A;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	padding-top: 2px;
	padding-right: 8px;
	padding-bottom: 2px;
	padding-left: 5px;
	background-repeat: repeat-x;
	background-position: center center;
	border-right-width: 1px;
	border-bottom-width: 1px;
}
	
/*Sub level menu*/
.horizontalcssmenu ul li ul{
	position: absolute;
	display: block;
	visibility: hidden;
	z-index: 100;
	background-color: #FFBA00;
	width: 100px;
}

/*Sub level menu list items*/
.horizontalcssmenu ul li ul li{
	display: inline;
	float: none;
}


/* Sub level menu links style */
.horizontalcssmenu ul li ul li a{
	width: 90px; /*width of sub menu levels*/
	font-weight: normal;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 1;
	border-left-width: 0;
	border-bottom-style: solid;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	border-bottom-color: #26354A;
}
	
.horizontalcssmenu ul li a:hover{
	background-repeat: repeat-x;
	background-position: center center;
	background-color: #FF6600;
}

.horizontalcssmenu ul li ul li a:hover{
	background-color: #FF6600;
}

* 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: 3em;
}
* html .horizontalcssmenu ul li a {
}
 
