.suckertreemenu ul{

margin: 0px;
padding: 0px;
list-style-type: none;
margin-left:-1px;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #618C3C; /*overall menu background color*/
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width: 90px; /*Width of top level menu link items*/
padding: 7px 8px;
text-align:center;
border-left: 1px solid white;
text-decoration: none;
color: white;
}
	
/*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;
background-color: #84B858;
margin:0px;
padding:0px;
height:20px;
text-align:left;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
background-color: #84B858;
display: list-item;
float: none;
text-align:left;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 159px; /* 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: 180px; /*width of sub menu levels*/
color: white;
text-decoration: none;
padding: 6px 5px;
border-bottom: 1px solid #fff;
margin:0px;
text-align:left;
}
.suckertreemenu ul li a:visited{

color: #ffffff;
}
.suckertreemenu ul li a:hover{
background-color: #C0DDA6;
color: #557B35;
}




* 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%; }