.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 width: 190px;
 list-style: none;
 border: 0px solid #f1f1f1;
 font-family: sans-serif, Geneva, Arial, Helvetica, sans-serif;
 font-size: 8pt;
 font-weight:bold;
 position: relative;
 color: #FFD145;
 z-index:999;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 z-index:999;
 top: 0;
 left: 190px;
 border: outset 0px;
 background-color: #3F392E;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 z-index:500;
 margin: 0px;
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 3px 4px 3px 4px;
 color: #FFFFFF;
 text-decoration: none;
 border-top: solid 0px gainsboro;
 border-bottom: solid 0px white;
 margin: 0px;
 position: relative;
  z-index: 999px;
 margin: 0px;
}
.menulist li:first-child > a {
 display: block;
 padding: 3px 4px 3px 4px;
 color: #FFFFFF;
 text-decoration: none;
 border-top: solid 0px white;
 border-bottom: solid 0px white;
 margin: 0px;
 
}

/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins 
* html .menulist li a {
 border-width: 0;
 margin: 1px;
}
*/

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFD145;
 background-color: #3F392E;
 border: 0px solid #3F392E;
 margin: 0px;
}
.menulist li:first-child > a:hover, .menulist li:first-child > a.highlighted:hover, .menulist li:first-child > a:focus {
 color: #FFFFFF;
 background-color: #3F392E;
 padding: 2px 5px 4px 3px;
 border: 0px solid #dfe19b;
 margin: 0px;
 
}

.menulist a.highlighted {
 color: #000;
 background-image:  url("images/index_35_15.gif");
 border: 0px solid #CDE;
 margin: 0px;
}

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