/* HORIZONTAL FREESTYLE MENU LAYOUT */
ul#listMenuRoot:after {/*clears the menu container*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
ul#listMenuRoot{
	height:38px;
	color:#fff;
	float:right;
	margin:0 50px 0 50px;
}
/* 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: 0.6em; margin-top: 28px; /* I'm using ems and px to allow people to zoom their font */
	left: 0px;
	width: 180px;
	background:#88cc52 url(/assets/gfx/bg-dropmenu.gif) top repeat-x;
	border:1px solid #5ea427;
	padding:5px 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: 148px;
}

/*
 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;
}

/* Links inside the menu */
.menulist a:link, .menulist a:visited {
	display: block;
	padding:0 22px;
	color:#fff;
	text-decoration: none;
	line-height:38px;
	text-transform:lowercase;
}
.menulist ul a:link, .menulist ul a:visited {
	display: block;
	padding:4px 10px;
	color:#fff;
	text-decoration: none;
	line-height:normal;
	font-size:12px;
	text-transform:none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a.highlighted, .menulist a:focus {
	color: #fff;
	background-color: #6eb834;
}
.menulist ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus{
	background:none;
	color:#234c09;
	}

/* 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;
}
/* */
