/**************/
/* sukerfish */
/**************/

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

#mainlevel{
list-style-type: none;
}
/*Top level list items*/
#mainlevel li{
position: relative;
float: left;

}
#mainlevel li:hover{
background-position:0px -50px;
}

/*1st sub level menu*/
#mainlevel li ul{
position: absolute;
display: block;
visibility: hidden;
list-style:none;
}

/*Sub level menu list items (undo style from Top level List Items)*/
#mainlevel li ul li{
width: 124px;
height:26px;
background-image:none;
float:none;
}
#mainlevel li ul li a:hover{
background-color:#F8CDC8;

}

/*All subsequent sub menu levels offset after 1st level sub menu */
#mainlevel li ul li ul{ 
position: absolute;
left: 125px; /* no need to change, as true value set by script */
top: 0;
visibility: hidden;
list-style:none;
}

/* Sub level menu links style */
#mainlevel li ul li a{

display: block;
width: 125px; /*width of sub menu levels*/
line-height:28px;
font-size: 92%;
text-align:left;
color:#000000;
text-decoration: none;
text-indent:10px;
background-color:#F8E2DD;
background-image:none;
border-top:#DFCFD4 1px solid;
border-bottom:#DFCFD4 1px solid;
}

/*Background image for top level menu list links */
#mainlevel .mainfoldericon , #mainlevel .mainfoldericon:hover{
/*background: url(../arrow-down.gif) no-repeat center right;*/
}

/*Background image for subsequent level menu list links */
#mainlevel .subfoldericon{
background: url(../arrow-right.gif) no-repeat center right;
background-color:#F8E2DD;
}
#mainlevel .subfoldericon:hover{
background: url(../arrow-right.gif) no-repeat center right;
background-color:#F8CDC8;
}

* 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 #mainlevel li { float: left; height: 1%;}
* html #mainlevel li a { height: 1%;}
* html #mainlevel li ul li { float: left;}
/* End */