.suckertreemenu
{
	padding-top: 0px;
	margin-bottom: 0px;
	background-color: #4a611b;
	height: 20px;
	text-align: center;
	width: 100%;
	z-index: 10;
}

.suckertreemenu ul
{
	margin: 0px 0px 0px 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}

/*Top level list items*/
.suckertreemenu ul li
{
	position: relative;
	display: inline;
	float: left;
	padding: 2px 8px;
	border-right: 1px solid #fff;
}

/*Top level menu link items style*/
.suckertreemenu ul li a
{
	display: block;
	/*width: 69px;*/ /*Width of top level menu link items*/
	float: left; 
	clear: none;
	text-align: left;
	border-left-width: 0;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul
{
	left: 0;
	margin: 0px;
	position: absolute;
	clear: both;
	text-align: left;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	background-color: #4a611b;
	overflow: stretch;
	padding: 4px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li
{
	display: list-item;
	float: none;
	clear: both;
	/*height: 18px;*/
	padding: 3px 0px;
	border: 0px;
	width: 140px;
	overflow: stretch;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul
{ 
	left: 10px; /* no need to change, as true value set by script */
	top: 0;
	overflow: stretch;
	margin-top: -5px;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a
{
	display: block;
	width: 140px; /*width of sub menu levels*/
	color: #fff;
	background-color: #4a611b;
	text-decoration: none;
	text-align: left;
	overflow: stretch;
}

.suckertreemenu ul li a:hover
{
	color: #c9b38c;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
/*background: #F3F3F3 url(media/arrow-down.gif) no-repeat center right;*/
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
/*background: #F3F3F3 url(media/arrow-right.gif) no-repeat center right;*/
}

* 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 */


