/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu ul{
margin: 0px; /*distance from top of division - has to write px*/
padding: 0px; /*from top and bottom of division - has to write px*/
list-style-type: none;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: rgb(225,225,225); /*overall menu background color*/
font-family:Arial;
font-size:12px;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width: 100px; /*Width of top level menu link items*/
padding: 4px 8px; /*height and text from left*/
border: 0px solid gray;
border-right-width: 1px;
text-decoration: none;
color: rgb(75,75,75); /*text color - first level*/
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
position: absolute;
left: 0px;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
color: red; /*text color - first level*/
background:#fff; /* Added this line */
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
left: 0px;
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: 115px; /*width of sub menu levels*/
color: rgb(75,75,75); /*text color - all sub-levels*/
text-decoration: none;
border: 0px solid #ccc; /*sub-levels border*/
padding-top: 2px;    /*pad inside the sub-level cells*/
padding-bottom: 2px;
}

.suckertreemenu ul li a:hover{
background-color: black;
color: white;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background: rgb(225,225,225) url("../img/arrow_down.gif") no-repeat center right;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: rgb(225,225,225) url("../img/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%; }
* html .suckertreemenu ul li ul li { float: left; }
/* End */