/* HORIZONTAL COLLAPSIBLE MENU SECTION */
/*-------------------------------------*/
div.horizontalcssmenu {
	position: absolute;
	top: 52px;
	left: 9px;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	z-index:100;
}
.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: 118px;
	padding: 2px 8px;
	border: 1px solid #202020;
	border-left-width: 0;
	text-decoration: none;
	background: url(/images/menubg.gif) center center repeat-x;
	color: black;
	font: bold 12px verdana;
}
/* TOP LEVEL MENU LINK ITEMS STYLE ON HOVER */
/*------------------------------------------*/
.horizontalcssmenu ul li a:hover{
	background: url(/images/menubgover.gif) center center repeat-x;
}
/* SUB LEVEL MENU */
/*----------------*/
.horizontalcssmenu ul li ul{
	left: 0;
	top: 0;
	border-top: 1px solid #202020;
	position: absolute;
	display: block;
	visibility: hidden;
	z-index: 100;
}
/* 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: 255px; /*width of sub menu levels*/
	font-weight: normal;
	padding: 2px 5px;
	background: #DCF0F6;
	border-collapse: collapse;
	border: 1px solid white;
	font: 11px verdana;
}
/* SUB LEVEL MENU LINKS STYLE ON HOVER */
/*-------------------------------------*/
.horizontalcssmenu ul li ul li a:hover{
	background: white;
}
.horizontalcssmenu .arrowdiv{
	position: absolute;
	right: 0;
	background: transparent url(/images/menuarrow.gif) no-repeat center left;
}
/* For a paragraph (if any) that immediately follows menu, add 1em top spacing between the two in IE */
/*---------------------------------------------------------------------------------------------------*/
* html p#iepara{
	padding-top: 1em;
}
/* Holly Hack for IE */
/*-------------------*/
* html .horizontalcssmenu ul li { float: left; height: 1%; }
* html .horizontalcssmenu ul li a { height: 1%; }
