@charset "utf-8";
/* CSS Document */


.suckertreemenu ul{
font: bold 11px Tahoma, Arial;
margin: 0;
margin-left: 25px;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
margin: 0 1px 0 0;
float: left;
background-color: #9AB6D7; /*overall menu background color*/
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
 /*Width of top level menu link items*/
padding: 5px 10px;
border-bottom: 1px solid white;
border-left-width: 0;
letter-spacing: 1px;
text-decoration: none;
color: #ffffff;
text-transform:uppercase;
}
	
/*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;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: left;
}


/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display: block;
width: 177px; /*width of sub menu levels*/
color: #333;
text-decoration: none;
padding: 3px 6px;
background-color: #D0D2C7;
border-bottom: 1px solid white;
}

.suckertreemenu ul li a:hover{
background-color: #144968;
color: white;
}
.suckertreemenu #current a{ /*currently selected tab*/
background-color: #144968; /*Brown color theme*/ 
border-color: #144968; /*Brown color theme*/ 
}
.suckertreemenu #subcurrent a{ /*currently selected tab*/
background-color: #D0D2C7; /*Brown color theme*/ 
border-bottom: 1px solid white; /*Brown color theme*/ 
}
.suckertreemenu #currents a{ /*currently selected tab*/
background-color: #144968; /*Brown color theme*/ 
color: #ffffff;
border-bottom: 1px solid white; /*Brown color theme*/ 
}

/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 2%; }
* html .suckertreemenu ul li a { height: 2%; }
/* End */