/* HORIZONTAL FREESTYLE MENU LAYOUT */

#listMenuRoot{
	display: block;
	float: left;
}
/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-family: Verdana, Arial, sans-serif;
	font-size: 0.9em;
	font-weight: bold;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.2em; margin-top: 8px;  /*using ems and px to allow people to zoom their font */
 left: -1px;
 width: 150px;
 font-size: 0.9em;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: -1px;
	left: 130px;
	font-size: 1em;
	margin: 0px;
}

/*
 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;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;

}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0px;
	padding-left: 0px;
	padding-right: 0px;
	background: #003366;
	padding-bottom: 1px;
	border-bottom: 0px;
	border-right: 0px;
	border-top: 1px solid #FFFFFF;
	border-left: 0px;
	filter:alpha(opacity=90);-moz-opacity:.90;opacity:.90;
}
.menulist ul>li:last-child {
 margin-bottom: 0px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
	display: block;
	padding-left: 8px;
	padding-right: 3px;
	color: #003366;
	text-decoration: none;
	margin-left:0px;
	margin-right: 3px;
	margin-bottom: 0px;
	line-height:26px;
	padding-right:33px;
	background-image: url(images/btn_menu.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	font-size: 0.8em;
	font-weight: bold;
}
 .menulist ul li a{
 	padding-left:12px;
	margin: 0px;
	background-image: url(images/_.gif);
	color: #FFFFFF;
	background: #003366;
 }

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 /*color: #000;
 background-color: #DDD;*/
 text-decoration:underline;
}
.menulist a.highlighted {
 /*color: #777;
 background-color: #DDD;*/
}


/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


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

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */
