/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* most outer ul -topLevel */
/* or set to desired fixed width */
/* #menu { width:100%; } */

.menulist, .menulist ul {
	margin: 0;
	padding: 0;
	list-style: none;
	}

/* padding around Top menu text */
.menulist a.topMenu { 
	padding-top: 11px; 
	padding-right: 12px;
	padding-bottom: 9px;
	padding-left: 12px;
	}
	
/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
/* Second Level */
.menulist ul {
	display: none;
	position: absolute;
	top: 34px;
	left: -1px;
	width: 150px;
	}

/* third level submenus - position across from parent instead */
.menulist ul ul {
	top: -1px; 
	margin-top: 0;
	left: 148px; /* set couple pixels less than above width '.menulist ul' */
	width:150px;
	}

/*
 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-right: -1px; */ /* remove because was causing issues with bgImages overlapping */
	}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
 	margin-bottom: -1px;
	}
	
 /* Mozilla fix -  nick removed as w3c report non valid */
/*
.menulist ul>li:last-child {
	margin-bottom: 1px;
	}
*/


/* Links inside the menu */
/* Pads the Popouts*/
.menulist a {
	display: block;
	padding-top: 3px; 
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
	}

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