.drillmenu{ /* main DIV container of menu */
border: 1px solid #E6E6E6;
width: 154px; /*width of menu*/
height: 240px; /*Height of DIV for those with JavaScript disabled*/
overflow-y: scroll; /*Scrollable DIV for those with JavaScript disabled*/
background: #fff; /*background of menu.*/
}


.drillmenu ul{ /*menu ULs*/
font: normal 13px Verdana;
margin: 0;
padding: 0;
list-style-type: none;
background: #fff; /*background of menu*/
}

.drillmenu li a{ /*menu links*/
display: block;
color: black;
text-decoration: none;
padding: 4px 4px 4px 8px;
}

* html .drillmenu li{ /*IE6 CSS hack*/
display: inline-block;
}

.drillmenu li a:hover{
background-color: #0085CF;
color: white;
}

li.backcontroltitle{ /*style of top level menu title*/
	
background:url("images/ui-bg_glass_75_e6e6e6_1x400.png") repeat-x scroll 50% 50% #E6E6E6;
border:1px solid #D3D3D3;
color:#555555;
font-weight:normal;

font-size: 1.0em;
margin: 0;
/*padding:2px 2px 4px 2px;	
background: black;
color: white;*/
padding: 5px 5px 5px 8px;
}

li.backcontrol{ /*style of back button control that gets added to the top of each sub UL*/
background:url("images/ui-bg_glass_75_dadada_1x400.png") repeat-x scroll 50% 50% #E6E6E6;
color: #4C4C4C;
padding: 4px;
cursor: hand;
cursor: pointer;
}

#drillcrumb{ /*custom, user defined DIV that contains breadcrumb trail*/
margin-bottom: 5px;
font: bold 13px Verdana;
}

#drillcrumb a{ /*custom element*/
color: darkred;
}