/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu ul {
	font-family: Arial, Helvetica, Verdana, sans-serif;
/*	text-transform:uppercase; */
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	list-style-type: none;
	font-size: 10pt;
	z-index:99;
}

/*Top level list items*/
.suckertreemenu ul li {
	float: left;
	display:inline-block;
	position: relative;
	height:35px;
	line-height:35px;
	padding: 0px 0px 0px 0px;
}

/*Top level menu link items style*/
.suckertreemenu ul li a {
	display:block;
	height:33px;
	padding: 0px 22px 0px 22px;
	text-decoration: none;
	color: #ffffff;
}

.suckertreemenu ul li a:hover {
	background-color:#007ed9;
}


/*1st sub level menu*/
.suckertreemenu ul li ul {
	left: 0;
	top: 1em; /* no need to change, as true value set by script */
	position: absolute;
	visibility: hidden;
	width: 180px;
	margin: -2px 0px 0px 0px;
	z-index:99;
}


/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li {
	float: none;
	display: list-item;
	height:30px;
	line-height:12px;
	background-color: #006cb7;
	z-index:99;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a {
	display: block;
	width:170px;
	height:23px;
	color: #ffffff;
	text-decoration: none;
	padding: 7px 5px 0px 5px;
	border: 0px solid #ccc;
	z-index:99;
}


.suckertreemenu ul li ul li a:hover {
	background-color: #007ed9;
	color: #ffffff;
	border: 0px solid #ccc;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul { 
	left: 120px; /* no need to change, as true value set by script */
	top: 0;
	z-index:99;
}


/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
/*	
    padding: 0px 20px 0px 0px;
	background:url(../scripts/images/menu-arrowdown.png) no-repeat center right;
*/
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
	/* #d7a168 */
	background: url(../newsite/scripts/images/menu-arrowright.png) no-repeat center right;
}

* 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 .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */

