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

/* First level */
.menulist {
	margin: 0;
	padding: 0;
	list-style: none;
	width:145px;
	}
	
/* padding around Top menu text */
.menulist a.topMenu { 
	padding-top: 5px; 
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin:0;
	}	

/* padding around Top menu text */
.menulist a.topMenuSel { 
	padding-top: 5px; 
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin:0;
	}	

/* No LinkType */
.menulist a.noLink { 
	padding-top: 5px; 
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin:0;
	cursor:text;
	}
	
.noLinkSub {
	cursor:text;	
	}

.menulist a.topMenu { 
	width:131px;
	}
.menulist a.topMenuSel { 
	width:131px;
	}

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

/* padd the arrow image */	
.menulist img  {
	padding-top:4px;
	}		
	
/* Second level width */
.menulist ul {
	 margin: 0;
	 padding: 0;
	 list-style: none;
	 width: 140px; 
	}
/* 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 width in .menulist */
.menulist ul {
	display: none;
	position: absolute;
	top: 1px;
	left:148px;
	}
	
/* Third level submenus - position across from parent */
/* set 'left' a couple pixels less than width in .menulist ul */
.menulist ul ul {
	top: 2px;
	left: 148px;
	}

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