/* LEFT MAIN SUBNAV */


/* All <ul> tags in the menu including the first level */
.submenulist, .submenulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.submenulist ul {
 visibility: hidden;
 position: absolute;
 top: 0px;
 right: -243px;
 width: 242px;
}

/* Second and third etc. level submenus - position across from parent instead */
.submenulist ul ul {
 top: 0px;
 left: 0px;
}

/*
 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.
*/
.submenulist li {
 font-family: Arial, Verdana, Helvetica, sans-serif;
 line-height: 11px;
 font-size: 10px;
 float: none;
 position: relative;
 background: #D5DADD;
 border: 0px;
 margin: 0px;
 padding: 0px;
 display: block;
 color: #000;
 border-bottom: 1px solid #B5BABC;
 text-decoration:  none;
}

/* Links inside the menu */
.submenuanchor {
 padding: 5px;
 color: #0000ff;
}

.submenuanchorhere {
 padding: 5px;
 color: #ffffff;
 background-color: #9A192E;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.submenulist ul li {
 font-family: Arial, Verdana, Helvetica, sans-serif;
 line-height: 11px;
 font-size: 10px;
 padding: 0px;
 float: none;
 margin-left: 0;
 margin-bottom: 0px;

}
.submenulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.submenulist a {
 display: block;
 padding: 5px;
 color: #000;
 text-decoration:  none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.submenulist a:hover, .submenulist a.highlighted:hover, .submenulist a:focus {
 color: #FFF;
 background-color: #9A192E;
}
.submenulist  a.highlighted {
 color: #FFF;
 background-color: #9A192E;
}

/*
 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:
    .submenulist a#xyz {
      background-image: url(out.gif);
    }
    .submenulist a#xyz:hover, .submenulist a.highlighted#xyz, .submenulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.submenulist a .subind {
 display:  none;
 background-color: #9A192E;
}
.submenulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.submenulist a {
 float: left;
}
.submenulist ul a {
 float: none;
}
/* \*/
.submenulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .submenulist  ul li {
 float: left;
 height: 1%;
}
* html .submenulist  ul a {
 height: 1%;
}
