.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background: black url(img/button_bg.jpg) center center repeat-x;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	width: 92px;
	padding: 3px 3px;
	font: bold 10px Verdana;
	text-decoration: none;
	color: #666666;
	border: 1px solid #F5F5F5;
	text-align: center;
}
	
/*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;
}

/* Sub level menu links style */
.suckertreemenu ul li ul a{
	display: block;
	width: 92px;
	font: 10px Verdana;
	text-decoration: none;
	color: #FFFFFF;
	padding: 1px 3px;
	background: #999999;
	border: 1px solid #FFFFFF;
	text-align: left;
}

.suckertreemenu ul li a:hover{
	background: url(img/button_bg-over.jpg) repeat-x center center;
	color: white;
}

.suckertreemenu ul li ul a:hover{
	color: #88AC2D;
	background: #F0F0F0;
	border: 1px solid #FFFFFF;
}

* 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 */

</style>