

.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 214px;
 list-style: none;
}

.menulist ul {
 display: none;
 position: absolute;
 top: -1px;
 left: 195px;
 background-color: #333333;
}

.menulist li {
 position: relative;
 border-bottom: 1px solid #CCCCCC;
}
.menulist ul>li {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 5px;
 color: #CCCCCC;
 text-decoration: none;
 font: bold 11px verdana, arial, serif, sans-serif;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #000000;
 background-color: #CCCCCC;
}
.menulist a.highlighted {
 color: #002787;
 background-color: #DDDDDD;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/*
 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 li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */
