

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
font-size:8.5pt;
font-weight:bold;
font-family:tahoma;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: transparent;    /* overall menu background color*/
padding-left:4px;
padding-bottom:1px;
padding-top:1px;
margin-right:0px;
margin-left:0px;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width: 120px; /*Width of top level menu link items*/
padding: 1px 10px;
text-decoration: none;
color: #fff;
background-color:maroon;
}
	
/*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;
background-color:gray;
width:150px;

}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
background:transparent url(../images/sub_mid.png)left repeat-y;
padding:2px;
}

/*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;
border:0px;
background-color:#999;
padding:2px;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display: block;
width: 140px; /*width of sub menu levels*/
color: white;
text-decoration: none;
padding: 1px 1px;
height:15px;
background-color:transparent;
}

.suckertreemenu ul li a:hover{

color: white;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background: maroon url(media/arrow-down.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #fff 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;
}
	.top {padding-bottom:10px; background:transparent url(../images/three_top.gif) top left no-repeat;}
	.last {padding-bottom:10px; background:transparent url(../images/sub_bottom.gif) bottom left no-repeat;}

/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%;}
* html .suckertreemenu ul li a { height: 1%;}
* html .suckertreemenu ul li ul li { float: left;}
/* End */


