/* HORIZONTAL FREESTYLE MENU LAYOUT */
ul#listMenuRoot:after {/*clears the menu container*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
ul#listMenuRoot{
	position:relative;
	z-index:6;
	height:44px;
	background-image:url(../gfx/bg-menu.gif);
	padding-top:3px;
	color:#fff;
}
/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 1.0em; margin-top: 28px; /* I'm using ems and px to allow people to zoom their font */
	left: 0px;
	width: 152px;
	background:#051a2f;
	padding:10px 0;
	z-index:100;/*set to force drop menu to display on top of everything*/
}

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

/*
 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;
	margin-left:0;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
	padding:0 0 0.2em 0;
}

/* Links inside the menu */
.menulist a:link, .menulist a:visited {
	display: block;
	padding:1.2em 1.8em;
	color:#FFF;
	text-decoration: none;
}
.menulist ul a:link, .menulist ul a:visited {
	display: block;
	padding:0.2em 0.5em;
	margin:0.2em 0;
	color:#FFF;
	text-decoration: none;
}

/* 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: #051a2f url(../gfx/bg-menuhover.gif) top left repeat-x;
}
.menulist a.highlighted {
	color: #537399;
	background-color: #FFF;
}
.menulist ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus{
	background-image:none;
	background-color:#043b71;
	}

/* 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;
}
/* */