.drillmenu{ /* main DIV container of menu */
	border: 1px none black;
	width: 242px; /*width of menu*/
	height: 200px; /*Height of DIV for those with JavaScript disabled*/
	overflow-y: scroll; /*background of menu.*/
	background-color: #DFDFDF;
}


.drillmenu ul{ /*menu ULs*/
	margin: 0;
	padding: 0;
	list-style-type: none; /*background of menu*/
	background-color: #DFDFDF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}

.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: #B4AAB4;
	color: white;
}

li.backcontroltitle{ /*style of top level menu title*/
	color: white;
	padding: 4px;
	background-color: #716471;
}

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

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

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