/*
If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.
*/

/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* 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
{
    display: none;
    position: absolute;
    top: 24px;
    left: -10px;
    width: 192px;
    background: #6C8AB5;
    border: solid 1px #4E607B;
    border-top: none;
    margin: 0 !important;
    padding: 0 !important;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul
{
    top: -1px;
    margin-top: 0;
    left: 148px;
}

/*
 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;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li
{
    float: none;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 8px !important;
    border-bottom: solid 1px #4E607B;
    width: 192px;
}
.menulist ul > li:last-child
{
    margin-bottom: 1px; /* Mozilla fix */
    background: none;
}
.menulist ul li a
{
    display: block;
    text-align: left;
    color: #FFF !important;
    width: 192px;
    font-size: 8px !important;
    padding: 5px 0 5px 10px;
}
.menulist ul li a.subNavLast
{
    text-align: left;
    color: #666;
}
/* Links inside the menu */

/*.menulist a {
 	display:block;
 	width:90px;
 	text-align:center;
 	color:#000;
 	text-decoration:none;
}
.menulist a.active{
 	display:block;
 	width:90px;
	height:32px;
 	text-align:center;
 	color:#000;
 	text-decoration:none;
	background:url(/images/bgBtnOver.gif) no-repeat;	
}*/
/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
/*.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color:#000;
	background:url(/images/bgNavHover.gif) top repeat-x;
}
.menulist a.highlighted {
	color:#000;
	background:url(/images/bgNavHover.gif) top repeat-x;
}
.menulist a.active:hover{
 	display:block;
 	width:90px;
	height:32px;
 	text-align:center;
 	color:#000;
 	text-decoration:none;
	background:url(/images/bgBtnOver.gif) no-repeat;	
}
.menulist a.active.highlighted{
 	display:block;
 	width:90px;
	height:32px;
 	text-align:center;
 	color:#000;
 	text-decoration:none;
	background:url(/images/bgBtnOver.gif) no-repeat!important;	
}*/
/* Lit  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
{
    text-align: left;
    color: #FFF;
    text-decoration: none;
    background: #4E6587;
    width: 178px !important;
}
.menulist ul li a.subNavLast:hover
{
    text-align: left;
    color: #FFF;
}
/*
 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);
    }
*/
    /*.menulist a#home {
	color:#000;
	width:86px;
	height:32px;
	padding:6px 0 0 20px;	
    }
    .menulist a#home:hover, .menulist a.highlighted#home, .menulist a#home:focus {
	color:#000;
	background:url(/images/bgNavHover.gif) top repeat-x;
	width:86px;
	height:32px;	
    }
	.menulist a#home.active{
	background:url(/images/bgHomeActive.gif) no-repeat;
	width:86px;
	height:32px;
	}
    .menulist a#overview {
	color:#000;
	width:86px;
	height:32px;
	padding:6px 0 0 20px;	
    }
    .menulist a#overview:hover, .menulist a.highlighted#overview, .menulist a#overview:focus {
	color:#000;
	background:url(/images/bgNavHover.gif) top repeat-x;
	width:86px;
	height:32px;	
    }
	.menulist a#overview.active{
	background:url(/images/bgOverviewActive.gif) no-repeat;
	width:86px;
	height:32px;
	}	*/
/* 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;
    width: 100%;
}
.menulist ul a
{
    float: none;
}
/* \*/
.menulist a
{
    float: none;
}
/* */

ul.menulist li a, ul.menulist li a:active, ul.menulist li a:link, ul.menulist li a:visited
{
    display: block; /* ie fix */
    font-size: 11px !important;
}
.nonselect
{
    padding-bottom: 8px;
}
ul.menulist li
{
    line-height: 12pt;
}
ul.menulist li ul li
{
    line-height: 9pt;
} 
/*
 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 */
