.drillmenu{ /* main DIV container of menu */
border: 2px solid black;
/*width: 180px; /*width of menu*/
height: auto; /*Height of DIV for those with JavaScript disabled*/
overflow-y: scroll; /*Scrollable DIV for those with JavaScript disabled*/
background: #e5e1c4; /*background of menu.*/
font-family: 'Droid Arabic Naskh';
}


.drillmenu ul{ /*menu ULs*/
/*font: normal 13px Verdana;*/
margin: 0;
padding: 0;
list-style-type: none;
background: #e5e1c4; /*background of menu*/
}

.drillmenu li a{ /*menu links*/
display: block;
color: black;
text-decoration: none;
padding: 10px 5px;
}

* html .drillmenu li{ /*IE6 CSS hack*/
display: inline-block;
}

.drillmenu li a:hover{
background-color: #4A2500;
color: white;
}

li.backcontroltitle{ /*style of top level menu title*/
background: #0b5d75;
color: white;
padding: 10px;
}

li.backcontrol{ /*style of back button control that gets added to the top of each sub UL*/
background: #0b5d75;
color: white;
padding: 10px;
cursor: pointer;
cursor: pointer;
}

#drillcrumb{ /*custom, user defined DIV that contains breadcrumb trail*/
margin-bottom: 5px;
/*font: bold 13px Verdana;*/
font-family: 'Droid Arabic Naskh';
}

#drillcrumb a{ /*custom element*/
color: darkred;
}