.suckertreemenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}							
/*Top level list items*/
.suckertreemenu ul li{
	font-size:11px;
	color:#FFFFFF;
	font-family:Tahoma,Verdana, Arial, Helvetica, sans-serif;
	font-weight:lighter;
	text-decoration:none;
	position: relative;
	display: inline;
	float: left;
	background-color: #414141; /*overall menu background color*/
	line-height:18px;
}
/*Top level menu link items style*/
.suckertreemenu ul li a{
	font-size:11px;
	color:#FFFFFF;
	font-family:Tahoma,Verdana, Arial, Helvetica, sans-serif;
	font-weight:lighter;
	text-decoration:none;
	display: block;
	padding: 0px /* top */ 2px /* right */  0px/* bottom */ 2px /* left */;
	background-color: #414141;
	line-height:18px;
	float: left;
}
/*1st sub level menu*/
.suckertreemenu ul li ul{
	left: 0;
	position: absolute;
	display: block;
	visibility: hidden;
	line-height:18px;
	width:160px;
	background:#414141;
	clear:both;
	padding:0px;
	margin:0px;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
	display: list-item;
	float: none;
	line-height:18px;
	border:0px;
	padding:0px;
	margin:0px;
}
/*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;
	line-height:18px;
}
/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display: block;
	width: 160px; /*width of sub menu levels*/
	color: #FFFFFF;
	text-decoration: none;
	text-align:left;
	line-height:18px;
	/*padding: 1px 5px;
	border: 1px solid #ccc;*/
}
.suckertreemenu ul li ul li a:hover{
	background-color:#AFBEC7;
	color:#FFFFFF;
}
.suckertreemenu ul li a:hover{
	background-color: #414141;
	color: #FFFFFF;
}
/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
	background: #414141;
}
/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
	background: #414141;
}
* 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%;
}