/* BEGIN: CSS Menu ================== */
.menulist, .menulist ul{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	margin:0;
	padding:0;
	list-style:none;
    z-index:999;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul{
	visibility:hidden;
	position:absolute;
	top:28px;
	left:0px;
	width:120px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul{
	top:-1px;
	margin-top:0px;
	left:-117px;
}

/*
All menu items (<li> tags). 'float:left' lines them up horizontally, and they are
positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li{
	float:left;
	display: block;
	position:relative;
	text-align:center;
	margin-right: -1px;
    z-index:999;
}
/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li{
	float:none;
	margin:0px;
	text-align:left;
	height:24px;
	width:185px;
    filter: alpha(opacity=85);
    background-color:#868F98;
    -moz-opacity: 0.85;
    opacity: 0.85;
}

.menulist ul>li:last-child{
	margin-bottom:1px
}

/* Links inside the menu */
.menulist a, .menulist a:visited{
	display:block;
	color:#fff;
	padding:4px 0;
	text-decoration:none;
}

/* Lit  items:'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus, .menulist a.highlighted {
	background:#737A82;
	color:#fff;
	text-decoration:underline;
}

/* Submenu links */

.menulist li ul li a, .menulist li ul li a:visited{
	background:#737A82;
	padding:5px;
}
.menulist li ul li a:hover, .menulist li ul li a.highlighted, .menulist li ul li a.highlighted:hover{
	color:#fff;
	background-color:#424242;
	padding:5px;
}
/*
If you want per-item background images in your menu items, here's how to do it.
1) Assign a unique ID tag to each link in your menu, like so:<a id="xyz" href="#">
2) Copy and paste these next lines for each link you want to have an image:
.menulist a#xyz{
background-image:url(out.gif)
}
.menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus{
background-image:url(over.gif)
}
*/

/* Only style submenu indicators within submenus. */
.menulist a .subind{
	display: none
}
.menulist ul a .subind{
	display: block;
	float:right

}
/* END: CSS Menu ================== */