/* DYNAMIC MENU CSS */

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu ul{
float: left;
position: relative;
margin: 0;
padding: 0;
left: 0px;
list-style-type: none;
}

/*Top level list items*/
.suckertreemenu ul li{
float: left;
position: relative;
display: inline;
background-image: url(images/second_nav_separator.gif);
background-repeat: no-repeat;
background-position: top left;
width: 125px; /*Width of top level menu link items*/
font-family: arial narrow;
font-weight: bold;
font-size: 14px;
color: white; 
text-decoration: none;
border-bottom: 0px;
padding: 15px 15px 20px 15px;
list-style-type: none;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
float: none;
display: block;
z-index: 200;
left: 0px;
position: absolute;
background-color: #333333;
border: solid 1px #111111;
border-bottom: 0px;
background-image: none;
width: 200px; /*width of sub menu levels*/
visibility: hidden;
top: 0; /* no need to change, as true value set by script */
padding: 0px;
}

.silk {
opacity: .85; filter: alpha(opacity=85);
}


/*1st sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
float: none;
width: 200px; /*width of sub menu levels*/
display: block;
z-index: 200;
font-family: arial;
font-weight: normal;
color: white;
font-size: 12px;
background-image: none;
text-decoration: none;
border-bottom: 0px;
padding: 0px;
}

/* 1st sub level menu links style */
.suckertreemenu ul li ul li a {
width: 200px; /*width of sub menu levels*/
display: block;
z-index: 200;
font-family: arial;
font-weight: normal;
font-size: 12px;
color: white;
background-image: none;
text-decoration: none;
border-bottom: 0px;
padding: 1px 5px 2px 5px;
}

/* 1st sub level menu links style */
.suckertreemenu ul li ul li a:link{
width: 200px; /*width of sub menu levels*/
display: block;
z-index: 200;
font-family: arial;
font-weight: normal;
font-size: 12px;
color: white;
background-image: none;
text-decoration: none;
border-bottom: 0px;
}

.suckertreemenu ul li ul li a:visited{
font-family: arial;
font-weight: normal;
font-size: 12px;
color: white;
background-image: none;
text-decoration: none;
border-bottom: 0px;
}

.suckertreemenu ul li ul li a:hover{
background-color: #000;
font-family: arial;
font-weight: normal;
font-size: 12px;
color: white;
background-image: none;
text-decoration: none;
border-bottom: 0px;
filter: none;
}

.suckertreemenu ul li ul li a:active{
background-color: #000;
font-family: arial;
font-weight: normal;
font-size: 12px;
color: white;
background-image: none;
text-decoration: none;
border-bottom: 0px;
filter: 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;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
border-bottom: 0px;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #000;
background-image: none;
border-bottom: 0px;
border-right: 8px;
}

* 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%; border-bottom: 0px;}
* html .suckertreemenu ul li a { height: 1%; border-bottom: 0px;}
/* End */