.drillmenu{ /* main DIV container of menu */
	border: 1px solid #e5e5e5;
	width: 100%; /*width of menu*/
	height: 100%; /*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 14px Arial;
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: 10px;
border: 1px solid #e5e5e5;
}

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

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

li.backcontroltitle{ /*style of top level menu title*/
background: #39F;
color: white;
padding: 10px;
}

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

#drillcrumb{ /*custom, user defined DIV that contains breadcrumb trail*/
margin-bottom: 10px;
font: bold 13px Arial;
}

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