
/* All <ul> tags in the menu including the first level */
.menulist  ul, .issues  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul, .issues ul {
 visibility: hidden;
 position: absolute;
 z-index: 1;
 background: #FFF;
 text-transform: uppercase;
 border: 1px solid #fc3;
 font-weight: normal;
 width: 190px;
}

/*\*//*/
.menulist ul  {
 top: 1.5em;
 left: 0px;
}
/**/



.issues ul {
	margin-top: -2.5em;
	line-height: 14px;
	margin-left: 5em;
	width: 210px;
}

.issues ul li { margin: 0px; }




/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li, .issues ul li {
	text-align: left;
	float: none;
	display: block;
	margin-right: 0;
}

.menulist ul>li:last-child, .issues ul>li:last-child,  {
	margin-bottom: -1px;
}

.menulist ul a, .issues ul a {
	border-bottom: 1px solid #fc3;
	display: block;
	padding: .5em 1.25em .5em 1.25em;
}


/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist  a.highlighted {
	color: #fff;
	background-color: #F69046;
}
.menulist ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus {
	color: #fff;
	background-color: #F69046;
}





/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li, * html .issues  ul li,  {
 float: left;
 height: 1%;
}
* html .menulist  ul a, * html .issues  ul a,  {
 height: 1%;
}
/* End Hack */