
.toolbar ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.toolbar ul li{
position: relative;
display: inline;
float: left;
 /*overall menu background color*/
}

/*Top level menu link items style*/
.toolbar ul li a{
display: block;
width: 70px; /*Width of top level menu link items*/ 
text-decoration: none;
padding:5px;
margin:0;
font-size:9px;
font-weight:bold;
color:#565656;
}
	
/*1st sub level menu*/
.toolbar ul li ul{
left: 0;
background-color:#ffffff;
width:100px;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display:inline-block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.toolbar ul li ul li{
display: list-item; 
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.toolbar ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.toolbar ul li ul li a{
display: block;
width: 110px; /*width of sub menu levels*/
color:#ffffff;
text-decoration: none;
background-color:#22577f;
border:1px solid #22577f;
}

.toolbar ul li a:hover{
background-color:#22577f;
color: white;
text-decoration:none
}


* html .toolbar ul li { float: left; height: 1%; }
* html .toolbar ul li a { height: 1%; }
* html .toolbar ul li ul li a{ margin:-2px; }


