.drillmenu{ /* main DIV container of menu */
border: 0px solid black;
width: 400px; /*width of menu*/
height: 190px; /*Height of DIV for those with JavaScript disabled*/
overflow-y: scroll; /*Scrollable DIV for those with JavaScript disabled*/
background: white; /*background of menu.*/
padding: 0;
margin: 0;
align: center;
}

.drillmenu ul{ /*menu ULs*/
font: normal;
margin: 0;
padding: 0;
list-style-type: none;
background: white; /*background of menu*/
}

.drillmenu li a{ /*menu links*/
display: block;
color: black;
text-decoration: none;
padding: 5px;
margin-bottom: -0.8em;
}

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

.drillmenu li a:hover{
background-color: #E6EBF2;
color: black;
}

li.backcontroltitle{ /*style of top level menu title*/
background: #7b7c7d;
color: white;
padding: 5px;
}

li.backcontrol{ /*style of back button control that gets added to the top of each sub UL*/
background: #7b7c7d;
color: white;
padding: 5px;
cursor: hand;
cursor: pointer;
}

#drillcrumb{ /*custom, user defined DIV that contains breadcrumb trail*/
margin: 5px;
font: normal;
}

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