/* VERTICAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0;
	padding: 0;	
	list-style: none;
}
.menulist{
	width: 220px;
	font-size:0.9em;
}
/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.menulist ul {
	display: none;
	position: absolute;
	top: 0;
	left: 188px;
	z-index:100;
	background:url(../images/gfx/submenu-back.png) bottom right no-repeat transparent ;
    padding-bottom:20px;
	width:225px;
	min-height:110px;		
} 
.menulist li{
	padding-left:20px;	
}
.menulist ul ul{
	left:-9999px;	
}
.menulist ul li{		
	margin:0;padding:0;
	padding-left:20px;
	
}

.menulist ul a:hover, .menulist ul a.highlighted:hover,
 .menulist ul a:focus ,.menulist ul a.highlighted{
	background:none;
	color:#fff;
}
/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li {
	position: relative;
	margin:0;	
}

/* Links inside the menu */
.menulist a,.menulist a:link, .menulist a:visited {
	display: block;
	padding: 5px 3px 5px 10px;
	color:#231f20;
	text-decoration: none;
	line-height:normal;
}

/*
 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{
	color: #231f20;
	background: url(../images/gfx/active-item-background.gif) 0 50% no-repeat ;
	
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. 
.menulist a .subind {
 float: right;
}*/