/*
 ALTERNATE  CSS FOR HORIZONTAL MENU: This is slightly more complicated :).
 See the Vertical menu CSS for comments and instructions.
*/

/* All  UL tags */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0px;
 list-style: none;
}

/* All  submenus - hidden by default, positioned down from parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 26px;
 left: 0px;
 width: 150px;
}

/* Second  and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 115px;
}

/* All  menu items ('li' tags). These are the horizontal styles with borders/overlapping */
.menulist li {
 float: left;
 position: relative;
 background: #fff;
 border: 1px solid #000;
 margin-right: 0px;
 z-index: 10;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -1px;
}

/* Links inside the menu */
.menulist a {
 font-family: Arial, Helvetica, sans-serif;
 display: block;
 padding: 3px;
 color: #000;
 text-decoration: none;
 font-weight: normal;
 font-size: 12px;
}

.menulist a.highlighted:visited {font-weight: bold;text-decoration:none}
.menulist a:visited {font-weight: normal;text-decoration:none}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #fff;
 background-color: #BE1C17;
 font-weight: bold;
 text-decoration: none;
}
.menulist  a.highlighted {
 color: #fff;
 background-color: #888;
 font-weight: bold;
}

/* 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;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */

