
/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist {
 margin: 0;
 padding: 0px;
 width: 142px;
 list-style: none;
 background: #E4E5E9;
 border: 0px solid transparent;
 }

.menuSublist, .menuSublist ul {
 margin: 0;
 padding: 0px;
 width: 100px;
 list-style: none;
 border: 1px solid transparent;
 background: #BBD97F;
}

/* IE fix because it doesn't support transparent borders */
* html .menulist ul, .menulist {
 border: none;
 margin: 0px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent*/
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left:190px;
}

.menusublist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 185px;
 top: 5px;
 padding: 0px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
	padding: 0px 0px 0px 0px;
	margin-left: 0px;
	float: right;
	position: relative;
	 font-weight:normal;
}

.menuSublist li {
padding: 2px 2px 2px 2px;
 margin-left: 1px;
 float: left;
 position: relative;
}

/* Links inside the menu */
.menulist a {
 display: block;
  padding: 2px 5px 4px 1px;
 color: #46413E;
 font-weight:normal;
 text-decoration: none;
 border: 0px solid;
}


/* IE fix because it doesn't support transparent borders */


/*
 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 {
	padding: 2px 5px 4px 1px;
	margin: 0;
	color: #E87824;
	font-weight:normal;
}
.menulist a.highlighted {
	color: #E87824;
	border: 0px solid ;
	margin: 0;
	font-weight:normal;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
color: #B3B3B3;
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;
 height: 0%;
}
* html .menulist a {
 height: 0%;
}
/* End Hack */

.menuSublist a {
 display: block;
 padding: 0px;
  width: 180px;
 color: #44403A;
 text-decoration:none;
 font-weight:bold;
 text-align:left;
 list-style: none;
}

.menuSublist ul li a {
 display: block;
 padding: 0px;
 width: 180px;
 color: #44403A;
 text-decoration:none;
 font-size:11px;
 text-align:left;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menuSublist a:hover, .menuSublist a.highlighted:hover, .menuSublist a:focus {
 color: #fff;
 background:#9DB66C;
 padding: 0px;
}




