/* HORIZONTAL FREESTYLE MENU LAYOUT */

.Custmenulist { margin:0;padding:0;padding-left:15px;padding-top:20px;position:relative; top:132px; left:0; 
background:url(../images/sitepicts/ui/nav-background.jpg) no-repeat; width:930px; height:79px; }


/* All <ul> tags in the menu including the first level */
.Custmenulist  ul {
 list-style: none; 
 z-index:10;
 position:relative;
 margin:0; text-align:center; display:block; padding:0px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.Custmenulist ul {
 display: none;
 position: absolute;
 top: 0; margin-top: 36px;
 left: 0px;
 width: 170px;
}

/* Second and third etc. level submenus - position across from parent instead */
.Custmenulist ul ul {
 top: 0px; margin-top: 0;
 left: 170px;
}

/*
 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.
*/
.Custmenulist li {
 float: left;
 display: block;
 position: relative;
 background:url(../images/sitepicts/ui/nav-divider.jpg) no-repeat right top;
 border: none;
 margin: 0px;
}

.Custmenulistsub li {
 float: left;
 display: block;
 position: relative;
 background: #022801;
 border: none;
 margin: 0px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.Custmenulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}
.Custmenulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.Custmenulist li a, .Custmenulist li a:visited {
 -moz-box-sizing:border-box;box-sizing:border-box;
 margin:0px;
 vertical-align:middle;
 text-align:center;
 float:left;
 display: block;
 padding:18px 13px 0 12px;
 color: #fbe8bf;
 text-decoration: none;
 height: 36px;
 font:normal 12px/12px 'trebuchet ms';
 white-space:nowrap;
 
 
}
/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.Custmenulist li a:hover, .Custmenulist li a.highlighted:hover, .Custmenulist li a:focus {
 color: #FFF;
 margin: 0;
 text-decoration: underline;
 font:normal 12px/12px 'trebuchet ms';
 font-weight:normal;
}
.Custmenulist li a.highlighted {
font:normal 12px/12px 'trebuchet ms';
 color: #7B8F79;
}

/* SUB MENUS */
.Custmenulistsub li a, .Custmenulistsub li a:visited {
 -moz-box-sizing:border-box;box-sizing:border-box;
 margin:0px;
 vertical-align:middle;
 text-align:left;
 float:left;
 display: block;
 padding:4px;
 color: #fbe8bf;
 font:normal 12px/12px 'trebuchet ms';
 text-decoration: none;
 height: 30px;
 font-weight:normal;
 background: #022600;
}
.Custmenulistsub li a:hover, .Custmenulistsub li a.highlighted:hover, .Custmenulistsub li a:focus {
 color: #FFF;
 margin: 0;
 font:normal 12px/12px 'trebuchet ms';
 text-decoration: underline;
}
.Custmenulistsub li a.highlighted {
font:normal 12px/12px 'trebuchet ms';
 color: #7B8F79;
}

/*
 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:
    .Custmenulist a#xyz {
      background-image: url(out.gif);
    }
    .Custmenulist a#xyz:hover, .Custmenulist a.highlighted#xyz, .Custmenulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.Custmenulist li a .subind {
 display: none;
}
.Custmenulist ul li a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.Custmenulist a {
 float: left;
}
.Custmenulist ul a {
 float: none;
}
/* \*/
.Custmenulist 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 .Custmenulist ul li {
 float: left;
 width: 100%;
}

* html .Custmenulist ul li {
 float: left;
 height: 1%;
}
* html .Custmenulist ul a {
 height: 1%;
}
/* End Hacks */