#listMenuRoot {
	margin: 12px 0 0 0;
	padding: 0;
	height: 20px;
	width: 940px;
	line-height: 20px;
}

/* 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 {
	visibility: hidden;
	position: absolute;
	top: 40px;
	left: 0px;
	width: 170px;
	z-index: 999;
	padding:0;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}

/* Second and third etc. level submenus - position across from parent instead */

.menulist ul ul {
	top: 0px;
	left: 170px;
	padding:0;
}

/*
 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;
	position: relative;
	text-transform:uppercase;
	border-right: 1px solid #fff;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */

.menulist ul li {
	float: none;
	border: 0px;
	background-color: #9ccc27;
	font-size:1.4em;
	padding: 0;
	width: 170px;
	line-height:24px;
	border-bottom:1px solid #000;
	margin:0;
	text-transform:none;
	font-weight: bold;
}
	
.menulist ul>li:last-child {
	margin-bottom: 1px; 
}


/* Links inside the menu */
.menulist a {
	display: block;
	padding: 0 14px;
	margin: 0;
	color: #fff;
	text-align:left;
	text-decoration: none;
	font-size: 1.4em;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color:#45a2f0;
	margin: 0; 
}
	
.menulist a.highlighted {
	color:#45a2f0;
	margin: 0;
}

.menulist .hrule {
	height: 1px;
	background-color: #636363;
	margin: 0;
	overflow: hidden; 
}

/* Links inside the 2nd-level menu */

.menulist ul li a {
	font-size: 12px;
	font-weight: bold;
	color:#fff;
	border: 0px;
	margin: 0; 
}

/* Lit  2nd-level items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist ul li a:hover, .menulist ul li a.highlighted:hover, .menulist ul li a:focus {
	color:#fff;
	background-color: #45a2f0;
	border: 0;
	margin: 0; 
}
	
.menulist ul li a.highlighted {
	color:#fff;
	background-color: #45a2f0;
	border: 0;
	margin: 0; 
}

/* 3rd-level items */

.menulist ul li ul li {
	background-color: #9ccc27; 
}

/* Links inside the 3rd-level */

.menulist ul li ul li a {
	color:#fff; 
}

/* Lit 3rd-level items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */

.menulist ul li ul li a:hover, .menulist ul li ul li a.highlighted:hover, .menulist ul li ul li a:focus {
	color:#fff;
	background-color: #45a2f0; 
}
	
.menulist ul li ul li a.highlighted {
	color: #fff;
	background-color: #45a2f0; 
}

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

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/

* html .menulist  ul li {
	float: left;
	height: 1%; 
}

* html .menulist  ul a {
	height: 1%; 
}

/* End Hack */