.suckertreemenu ul{
margin: 0;
padding: 0px;
list-style-type: none;
font-family: Arial, Verdana, san-serif;
font-size: 15px;
font-weight: bold; 
border-bottom: 1px solid #ccc;
z-index: 50;
position: relative; 
}
/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #899FB7; /*overall menu background color*/
}
/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width: 122px; /*Width of top level menu link items*/
color: #FFFFFF;
text-decoration: none;
line-height: 24 px;
padding: 0px 0px 0px 0px;
border-style: solid;
border-width: 1px;
text-align: center;
border-color: #899fb7 #FFFFFF #999999 #999999;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: 0;
width: 122px;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
visibility: hidden;
display: block;
border-style: solid;
border-width: 1px;
text-align: center;
border-color: #666666 #FFFFFF #FFFFFF;
font-family: Arial, Verdana, san-serif;
font-size: 15px;
font-weight: normal; 
background:#fff; 
}
/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
width: 122px;
float: none;
padding: 0px 0px;
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: 160px; /*width of sub menu levels*/
color: white;
text-decoration: none;
line-height: 20px;
text-align: left;
padding: 1px 0px 0px 10px;
border-style: outset;
border-width: 1px;
border-color: #FFFFFF;
background: url(http://www.ahearn.com/graphics/bullet.gif) no-repeat ;
background-position: 2% 48%;
}
.suckertreemenu ul li a:hover{
background-color: #A80000;
color: white;
}
/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #F3F3F3 url(http://www.ahearn.com/graphics/bullet.gif) no-repeat center left;
}
* 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%; }