.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 150px;
 list-style: none;
}

.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 150px;
}

.menulist li {
 position: relative;
 border-top: 1px dashed #444;
 border-bottom: 1px dashed #444;
 background: #393839;
 margin-bottom: -1px;
 margin-top: -1px;
}

.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 10px;
 color: #FFF;
 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: #4477BB;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #393839;
}

.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 */

a.finallink {
 text-decoration: underline;
}

.subind {
 color: #777;
 margin-left: 10px;
}