
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
div.suckertreemenu {
position:absolute;
top:130px;
}

.suckertreemenu ul{
position:relative;
left:13em;
/*top:6.4em;*/
margin: 0;
padding: 0;
list-style-type: none;
font:bold .85em Arial;
background-color:black;

}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
/*left:11em;*/
/*top:5.1em;*/
display: inline;
float:left;
background-color: black; /*overall menu background color*/
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width: auto; /*Width of top level menu link items*/
padding: 1px 8px;
border: 1px solid darkorange;
border-left-width: 0;
text-decoration: none;
font:bold .85em Arial;
color:darkorange;
background-color:black;
}
	
/*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;
z-index:10000;
font:bold .8em Arial;
color:darkorange;
background-color:black;


}

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

/*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;
z-index:10000;
font:bold .75em Arial;
color:darkorange;

}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display: block;
width: 145px; /*width of sub menu levels*/
color: black;
text-decoration: none;
padding: 1px 3px;
border: 1px solid darkorange;
z-index:10000;
color:darkorange;

}

.suckertreemenu ul li a:hover{
background-color: white;
color: maroon;
}


* 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  {left:11em;}
* html .suckertreemenu ul li { float: left; height: 1%;}
* html .suckertreemenu ul li a { height: 1%; width: 81.4px; margin-right:0;padding-right:0; color:darkorange;}
* html .suckertreemenu ul li ul { float:left; height: 1%; }
* html .suckertreemenu ul li ul a { height: 1%; }
* html .suckertreemenu ul li ul li ul { float: left; height: 1%; }
* html .suckertreemenu ul li ul a { height: 1%; }


/* End */

