/* For the class="menulist" element, and all 'ul' tags inside it. */
.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 162px;
 list-style: none;
 border: 1px solid #000;
 border-bottom-width: 0;
 background: #800;
}

/* Submenus ('ul' tags) are hidden by default. You may want to hide them with scripting? */
.menulist ul {
 position: absolute;
 top: 0;
 left: 170px;
 display: none;
}

/* All menu items ('li' tags) */
.menulist li {
 position: relative;
 border-bottom: 1px solid #000;
}

/* Links inside the menu */
.menulist a {
 font-size: 11px;
 display: block;
 padding: 4px;
 color: #ffffff;
 text-decoration: none;
}

/* Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover {
 color: #FFF;
 background-color: #500;
}
.menulist a.highlighted {
 color: #fff;
 background-color: #500;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

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