
/* OFFICE-STYLE FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 width: 169px;
 list-style: none;
 /*background: #8CB5E7;*/
}
	* html .menulist, * html .menulist ul {
		width: 171px;
	}
	*+html .menulist, *+html .menulist ul {
		width: 171px;
	}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 170px;
 background: #E2EAF4;
 border-width: 1px;
 border-color: #000000;
 border-style: solid;
}
	* html .menulist ul{
		left: 172px;
	}
	*+html .menulist ul{
		left: 172px;
	}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
}
	*+html .menulist li{
		width: 171px;
	}

/* Links inside the menu */

.menulist li a:link, .menulist li a:visited, .menulist li a:active {
display: block;
padding: 3px 4px 3px 3px;
color: #000000;
text-decoration: none;
margin: 0px !important;
margin: 1px;
border: 1px solid transparent !important;
border: none;
 }
.menulist li a:hover {
 border: 1px solid #FFFFFF !important; 
 border: 1px solid #FFFFFF;
color: white;
margin: 0px;
background-color: #0000CC;
}

.menulist a.highlighted {
 color: #FFF;
 background-color: #68C;
 border: 1px solid #CDE;
 margin: 0px;
}

.menulist a.highlighted:hover, .menulist a:focus {
 color: white;
 background-color: #0000CC;
 border: 1px solid #FFF;
 text-decoration: none;
 margin: 0px;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*+html .menulist li {
 float: left;
 height: 1%;
}
*+html .menulist a {
 height: 1%;
}
* html .menulist li {
 float: left;
 height: 1%;
}

* html .menulist a {
 height: 1%;
}
/* End Hacks */
