/* VERTICAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0;
	padding: 0;
	width: 180px;
	list-style: none;
}

/*
 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: 181px;
	z-index:100;
}
.menulist ul ul{
	left: 151px;
}
/*
 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;
	z-index:100;
	margin:0;
}


/* Links inside the menu */
.menulist a:link, .menulist a:visited {
	display: block;
	padding: 11px 20px 11px 25px;
	background-color:#efefef;
	color:#bd5224;
	text-decoration: none;
	border-bottom:1px solid #fff;
}


/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #FFF;
	background-color: #bc5226;
}
.menulist a.highlighted {
	color: #bd5224;
	background-color: #efefef;
}
/*sub menu*/
.menulist ul{
	width:150px;
}
.menulist li li a:link, .menulist li li a:visited{
	background:#cccccc;
	padding:5px 20px;
}
.menulist li li a:hover, .menulist li li a.highlighted:hover, .menulist li li a:focus {
	background-color:#999;
}
/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. 
.menulist a .subind {
 float: right;
}*/