/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0px 0px 0px 2px;
	padding: 9px 0px 0px 45px;
	line-height: 26px;
	width: 135px;
	list-style: none;
	background: url(images/navbg.gif) repeat-y;
	color: #8B8B8B;
	letter-spacing: 0px;
	text-align: left;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
	font-size: 7pt;
	margin: 0;
	visibility: hidden;
	position: absolute;
	padding: 5px 0px 5px 0px;
	line-height: 18px;
	top: 0;
	left: 135px;
	width: 140px;
	text-align: left;
	background: #111111;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
	position: relative;
}

/* Links inside the menu */
.menulist a {
	margin: 0;
	display: block;
	text-decoration: none;
	color: #8B8B8B;
	padding-left: 10px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	margin: 0;
	display: block;
	color: #921902;
	text-decoration: none;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
	float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
	float: left;
	height: 0px;
}
* html .menulist a {
	height: 0px;
}
/* End Hack */
