/* Drop Down Menu adapted from Stu Nicholls at ttp://www.cssplay.co.uk/menus/simple_vertical.html */


/* ---------- MENU LEVEL 1 ---------- */

/* Get rid of the margin, padding and bullets in the unordered lists */
#ulmenu, #ulmenu ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}


/* Set up the list items */
#ulmenu li {
	font-size: 14px;
	float: left;
	color: #FFFFFF;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	line-height: normal;
	font-family: Arial, Helvetica, sans-serif;
}

/* Set up the link size, color and borders */
#ulmenu a, #ulmenu a:visited {
	display: block;
	text-decoration: none;
	text-align: center;
	margin: 0px;
	color: #FFFFFF;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	padding-top: 3px;
	background-color: #6A1102;
}
/* For accessibility of the top level menu when tabbing */
#ulmenu li a:active, #ulmenu li a:focus {
}


/* ---------- MENU LEVEL 2 ---------- */

/* Set up the sub level borders */
#ulmenu li ul li a, #ulmenu li ul li a:visited {
	text-align: left;
	text-indent: 24px;
}
#ulmenu li ul li a.enclose, #ulmenu li ul li a.enclose:visited {
}



/* For Non-IE browsers and IE7 */
#ulmenu li:hover {
	position: relative;
}
/* Make the hovered list color persist */
#ulmenu li:hover > a {
	color: #000000;
	background-color: #99CCFF;
}
/* Set up the sublevel lists with a position absolute for flyouts and overrun padding. The transparent gif is for IE to work */
#ulmenu li ul {
	display: none;
}
/* For Non-IE and IE7 make the sublevels visible on list hover. This is all it needs */
#ulmenu li:hover > ul {
	width: 80px;
	display: block; 
	position: absolute; 
	top: 20px; 
	left: 0px; 
	padding: 0px; 
}
/* Position the first sub level beneath the top level liinks */
#ulmenu > li:hover > ul {
	left: 0px; 
	top: 20px;
}
/* get rid of the table */
#ulmenu table {
	position:absolute; 
	border-collapse:collapse; 
	top:0; 
	left:0px; 
	z-index:100; 
	font-size:1em;
}
/* For IE5.5 and IE6 give the hovered links a position relative and a change of background and foreground color. This is needed to trigger IE to show the sub levels */
* html #ulmenu li a:hover {
	position:relative;
	color:#000000;
	background-color: #99CCFF;
}




/* This lot is for IE5.5 and IE6 ONLY and is necessary to make the sublevels appear */

/* change the drop down levels from display:none; to visibility:hidden; */
* html #ulmenu li ul {
	visibility:hidden; 
	display:block; 
	position:absolute; 
	top:0px; 
	left:70px; 
	padding:0; 
}

/* make the second level visible when hover on first level link and position it */
#ulmenu li a:hover ul {
	visibility:visible;
	left:-10px;
	top:20px;
	lef\t:-10px;
	to\p:20px;
}
