.horizontalcssmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100%;

}

/*Top level list items*/
.horizontalcssmenu ul li{
	font-size:12px;
	float:left;				/* First level menu's needs to float left */
	position:relative;			/* Relative positiong because lower level menu's needs to be absolute */
	vertical-align:bottom;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 1px;
	display: inline;
    cursor: pointer;


}
/*Top level menu link items style*/
.horizontalcssmenu ul li a{
	
	font-family: Tahoma;
	font-size: 14px;
	line-height: 23px;
	font-weight: bold;

}
	
/*Sub level menu*/
.horizontalcssmenu ul li ul{
left: 0;
top: 0;
position: absolute;
display: block;
visibility: hidden;
z-index: 100;
    cursor: pointer;
}

/*Sub level menu list items*/
.horizontalcssmenu ul li ul li{
	display: inline;
	float: none;
	line-height: 21px;
    cursor: pointer;
    z-index: 100;
}


/* Sub level menu links style */
.horizontalcssmenu ul li ul li a{
	width: 175px; /*width of sub menu levels*/
	font-weight: normal;
	background: #ffffff;
	white-space: nowrap;
	margin: 0px;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 4px;
	padding-left: 5px;
	display: inline-block;
	font-size: 11px;
	line-height: 21px;

}
.horizontalcssmenu ul li ul li a:hover{
	background: #3f88c9;
	white-space: nowrap;
	font-weight: bold;
	color: #FFFFFF;
}

.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: 1em;
}
	
/* Holly Hack for IE \*/
* html .horizontalcssmenu ul li { float: left; height: 1%; }
* html .horizontalcssmenu ul li a { height: 1%;   }
/* End */


#horizontalcssmenu li.lastmenu  {
margin-right:0px;
padding:0px; 
border-right-width:0; }