/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;

}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;

/*overall menu background color*/

}

/*Top level menu link items style*/
.suckertreemenu ul li a{

display:  block;
width: 127px; /*Width of top level menu link items*/
height:40px;

padding-left: 6px;
padding-top: 9px;
text-decoration: none;
color: #84C61A;
font-weight:bold;
background-image:url(../images/button_back.gif);
background-repeat:no-repeat; 
}
	
/*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;
border: solid 1px #000;

}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;

}

/*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: 150px; /*width of sub menu levels*/
height:17px;
color:#84C61A;
text-decoration: none;
padding: 1px 5px;
font-weight:normal;
background-image:none;
background-color: #666666;
}

.suckertreemenu ul li a:hover{
background-color: #999999;
color: #84C61A;
}

.suckertreemenu ul li ul a:hover {
background-color: #999999;
color:  white;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 40px;}

/* End */



