.drillmenu{ /* main DIV container of menu */
border: 2px transparent;
width: 600px; /*width of menu*/
height: 190px; /*Height of DIV for those with JavaScript disabled*/
overflow-y: scroll; /*Scrollable DIV for those with JavaScript disabled*/
background: transparent; /*background of menu.*/
}


.drillmenu ul{ /*menu ULs*/
font: normal 13px font-family: "Courier New";
margin: 0;
padding: 0;
list-style-type: none;
background: transparent; /*background of menu*/
}

.drillmenu li a{ /*menu links*/
display: block;
color: darkblue;
text-decoration: underline;
padding: 5px;
}

* html .drillmenu li{ /*IE6 CSS hack*/
display: inline-block;
}

.drillmenu li a:hover{
background-color: darkblue;
color: white;
}

li.backcontroltitle{ /*style of top level menu title*/
background: transparent;
color: black;
padding: 4px;
}

li.backcontrol{ /*style of back button control that gets added to the top of each sub UL*/
background: transparent;
color: darkblue;
padding: 4px;
cursor: hand;
cursor: pointer;
}

#drillcrumb{ /*custom, user defined DIV that contains breadcrumb trail*/
margin-bottom: 5px;
font: 13px "Courier New";
}

#drillcrumb a{ /*custom element*/
color: darkblue;
}