.drillmenu{ /* main DIV container of menu */
	width: 250px; /*width of menu*/
	height: 209px; /*Height of DIV for those with JavaScript disabled*/
	overflow-y: scroll; /*background of menu.*/
	background-color: #FFF;
}


.drillmenu ul{ /*menu ULs*/
	list-style-type: none; /*background of menu*/
	background-color: #FFF;
	font-family: Verdana;
	font-size: 11px;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

.drillmenu li a{ /*menu links*/
display: block;
color: black;
text-decoration: none;
padding: 5px;
}

* html .drillmenu li{ /*IE6 CSS hack*/
	display: inline-block;
}

.drillmenu li a:hover{
	background-color: #FFF;
	color: #000;
}

li.backcontroltitle{ /*style of top level menu title*/
	color: #000;
	padding: 4px;
	font-weight: bold;
}

li.backcontrol{ /*style of back button control that gets added to the top of each sub UL*/
	color: #000;
	padding: 4px;
	cursor: hand;
	cursor: pointer;
	font-weight: bold;
}

#drillcrumb{ /*custom, user defined DIV that contains breadcrumb trail*/
	margin-bottom: 5px;
	font-family: Verdana;
	font-size: 11px;
	font-weight: normal;
	color: #000;
}

#drillcrumb a{ /*custom element*/
color: darkred;
}
