
/* HORIZONTAL FREESTYLE MENU LAYOUT */


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

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 /*visibility: hidden;*/
 display: none;
 position: absolute;
 top: 1.75em; /* I'm using ems rather than px to allow people to zoom their font */
 left: 8px;
 width: 150px;
}

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

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

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 background: #FFF;
 float: none;
 margin-top: 0px;
 margin-right: 0;
 margin-bottom: -1px;
 border: 1px solid #CCC;
 padding: 2px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 0px;
 color: #999999;
 text-decoration:  none;
 font-size: 10px;
}

/* 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-color: #AAA;
 display: block;
}

.menulist  a.highlighted {
 color: #FFF;
 background-color: #DDD;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

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


#listMenuRoot li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
/*top: auto;*/
/*left: auto;*/
float: right;
}

#listMenuRoot li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
}

/* End Hack */


/*********** New Menu ********************/
#nav, #nav ul { /* all lists */
	margin: 0;
	list-style: none;
	font-family: Tahoma;
	padding-left: 8px;
	padding-right: 8px;
}

#nav a {
	display: block;
	font-size: 10px;
	text-decoration: none;
	color: #999999;
	padding: 0px;
}

#nav a:hover, #nav a.highlighted:hover, #nav a:focus{
	color: #fff;
	background-color: #AAA;
	display: block;
}

#nav a.highlighted {
	color: #fff;
	background-color: #DDD;
}

#nav li { /* all list items */
	float: left;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
}

#nav ul li {
	background: #fff;
	float: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: -3px;
	border: 1px solid #ccc;
	padding: 2px;
	width: 150px;
}

#nav a {
 display: block;
 padding: 0px;
 color: #999999;
 text-decoration:  none;
 font-size: 10px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #fff;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	float: none;
	padding: 0px;
	width: 150px;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

/* Only style submenu indicators within submenus. */
#nav a .subind {
 display:  none;
}

#nav ul a .subind {
 display:  block;
 float: right;
}
