@charset "utf-8";
/* CSS Document */

.drillmenu{ /* main DIV container of menu */
	border: 1px solid black;
	width: 250px; /*width of menu*/
	height: 400px; /*Height of DIV for those with JavaScript disabled*/
	overflow-y: scroll; /*background of menu.*/
	background-color: #537D33;
	left: 0px;
}


.drillmenu ul{ /*menu ULs*/
	margin: 0;
	padding: 0;
	list-style-type: none;
	background-color: #537D33; /*background of menu*/
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	cursor: hand;
	cursor: pointer;
}

.drillmenu li a{ /*menu links*/
display: block;
color: black;
text-decoration: none;
padding: 5px;
text-align: left;
}

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

.drillmenu li a:hover{
	background-color: #5BA836;
	color: white;
	text-align: left;
}

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

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

#drillcrumb{ /*custom, user defined DIV that contains breadcrumb trail*/
	width: 242px;
	height: 70px;
	border: 1px solid black;
	margin-bottom: 5px;
	padding: 4px;
	background-color: #589A36;
	text-decoration: none;
	left: 0px;
}

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