/* VERTICAL FREESTYLE MENU LAYOUT */
/* set colors in listmenu_colors_v.css */

/* First level width */
.menulist {
	margin: 0;
	padding: 0;
	list-style: none;
	}
	
/* padding around Top menu text */
.menulist a.topMenu { 
	padding-top: 10px; 
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 35px;
	margin:0;
	}	
.menulist a.topMenuSel { 
	padding-top: 10px; 
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 35px;
	margin:0;
	}	
/* No LinkType */
.menulist a.noLink { 
	padding-top: 10px; 
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 35px;
	margin:0;
	cursor:text;
	}
	
.noLinkSub {
	cursor:text;	
	}	
.menulist a.topMenu { 
	width:208px; /* offset '.menulist width' minus '.menulist a.topMenu' padding left and right */
	}
		
/* Pads the Popouts*/
.menulist a {
	display: block;
	padding-top: 3px; 
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
	}
		
	
/* Second level width */
.menulist ul {
	 margin: 0;
	 padding: 0;
	 list-style: none;
	 width: 180px; 
	}
/* Third level width */
.menulist ul ul {
	 margin: 0;
	 padding: 0;
	 list-style: none;
	 width: 140px;
	}
	
/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
/* set 'left' a couple pixels less than the width in .menulist */
.menulist ul {
	display: none;
	position: absolute;
	top: 1px;
	left:246px;
	}
	
/* Third level submenus - position across from parent */
/* set 'left' a couple pixels less than the width in .menulist ul */
.menulist ul ul {
	top: 2px;
	left: 178px;
	}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li {
	position: relative;
	}
.menulist ul li {
	position: relative;
	margin-bottom: -1px;
	}
	
 /* Mozilla fix -  nick removed as w3c report non valid */
/*
.menulist ul>li:last-child {
	margin-bottom: 1px;
	}
*/

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
	float: right;
	}

/*
 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 li {
	float: left;
 	width: 100%;
	}

* html .menulist li {
	float: left;
 	height: 1%;
	}
* html .menulist a {
	height: 1%;
	}
/* End Hacks */

