/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */


.TreeHorizonalHP {
	background-image: url(NavHBackground1.JPG);
	background-repeat: repeat-x;
	width: 800px;
	text-align: left;
	margin: 0 auto 0 auto;
	padding: 0 0 2px 3px;
	border: 0;
}

.TreeHorizonalHP a:hover {
	background-image: url(NavHBackgroundHover1.JPG);
	color: black;
}

.TreeHorizonalHP ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/*Top level list items*/
.TreeHorizonalHP ul li{
	position: relative;
	cursor: hand !important;
	cursor: pointer !important;
	display: block;
	float: left;
	background-image: url(NavHBackground.JPG);
	background-color: Black;
	width: 90px; /*Width of top level menu link items*/
	color: White;
	text-align: left;
	margin: 0px;
	padding-top: 0px;
}

/*Top level menu link items style*/
.TreeHorizonalHP ul li a{
	display: block;
	width: 90px; /*Width of top level menu link items*/
	text-decoration: none;
	color: white;
	margin: 0;
}
	
/*1st sub level menu*/
.TreeHorizonalHP ul li ul{
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	background-color: Black;
	line-height: 125%;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.TreeHorizonalHP ul li ul li{
	width: 155px; /*width of sub menu levels*/
	display: block;
	float: none;
	line-height: 125%;
	background-image: none;
	background-color: Silver;
	padding-bottom: 1px;
}

/* Sub level menu links style */
.TreeHorizonalHP ul li ul li a{
	width: 155px; /*width of sub menu levels*/
	display: block;
	color: white;
	text-decoration: none;
	border: 0px solid #ccc;
	background-color: Black;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.TreeHorizonalHP ul li ul li ul{
	left: 156px; /* no need to change, as true value set by script */
	top: 0;
	background-color: Black;
   /*background-color: Silver;*/
	padding-bottom: 1px;
}

.TreeHorizonalHP ul li ul li a:hover{
	background-color: Gray;
	color: white;
}

.TreeHorizonalHP ul li ul li:hover{
	background-color: Gray;
	color: white;
}

/*Background image for top level menu list links 
.IntranetTreeHorizon .mainfoldericon{*/
/* background: Black url(media/arrow-down.gif) no-repeat center right; MAG20070215*/
/*	background-image: url(NavHBackground.JPG);
}*/

/*Background image for subsequent level menu list links */
/*.IntranetTreeHorizon .subfoldericon{
	background-image: none;
	background-color: #8E0000;
}*/

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
	padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .TreeHorizonalHP ul li { float: left; height: 1%; }
* html .TreeHorizonalHP ul li a { height: 1%; }
/* End */