.drillmenu
{
	display: block;
	float: left;
	margin: 0 0px 0 2px;
	background: white;
	
	border: none;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #262626;
	/* main DIV container of menu */
	background-position: lightblue;
	border: 0px solid #003366;
	width: 194px; /*width of menu*/
	height: 983px; /*380px  Height of DIV for those with JavaScript disabled*/
	
	
}


.drillmenu ul{ /*menu ULs*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #262626;
	margin: 0;
	padding: 0;
	list-style-type: none;
	/*background: url(images/img04.jpg) no-repeat left 50%;background of menu*/
}

.drillmenu li a
{
	/*menu links*/
	display: block;
	color: black;
	text-decoration: none;
	padding: 5px;
	color: #102039;
}

* html .drillmenu li{ /*IE6 CSS hack*/
display: inline-block;
}

.drillmenu li a:hover
{
	background-color: #102039;
	color: white;
}

li.backcontroltitle{ /*style of top level menu title*/
background: black;
color: white;
padding: 4px;
}

li.backcontrol{ /*style of back button control that gets added to the top of each sub UL*/
background: #011054;
color: white;
padding: 4px;
cursor: hand;
cursor: pointer;
}

#drillcrumb{ /*custom, user defined DIV that contains breadcrumb trail*/
margin-bottom: 5px;
font: bold 13px Verdana;
color: #99CCFF;
}

#drillcrumb a{ /*custom element*/
color: white;
}