.suckertreemenu ul{

}

/*Top level list items*/
.suckertreemenu ul li{
	position: relative;
	display: inline;
	float: left; /*overall menu background color*/
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	list-style-type: none;
	margin-top: 0px;
	z-index: 10000;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{
	left: 139px; /* no need to change, as true value set by script */
	top: 0;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display: block; /*width of sub menu levels*/
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 7px;
	padding-left: 7px;
	width: 140px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #D1DDAA;
	border-bottom-color: #D1DDAA;
	border-left-color: #D1DDAA;
	border-top-width: 0px;
	background-color: #7A8E39;
	padding-top: 5px;
	padding-bottom: 5px;
	height: auto;
	background-image: none;
	float:none;
}

.suckertreemenu ul li ul li a:hover{
	background-color: #D1DDAA;
	color: #7A8E39;
	text-decoration: none;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #D1DDAA;
	border-bottom-color: #D1DDAA;
	border-left-color: #D1DDAA;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
}

* 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 */

