.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 list-style: none;
 width:170px;
 background: #F8FFCC;
 border: 1px solid #aaaaaa;
}

.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 right: 170px;
}

.menulist li {
 position: relative;
 height:23;
 cursor:Hand;
}

.menulist li a {
 display: block;
 color: #000;
 text-decoration: none;
}

.menulist a:hover{
 color: #FFFFFF;
 background-color: #808000;
}

.menulist a.highlighted {
 color: #FFFFFF;
 background-color:  #808000;
}


/* '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: right;
 width: 100%;
}

* html .menulist li {
 float: right;
 height: 23;
}
* html .menulist a {
 height: 23;
}
/* End Hacks */
