
.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 width: 140px;
 list-style: none;
 background: #ffffff left repeat-y;
 text-decoration: none;
 font: 12px "arial";
 color: #ff0000;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 140px;
 width: 152px;
 border: 1px solid #000000;
 background: #ffffff left repeat-y;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 border: 1px solid #ffffff;
}


/* Links inside the menu */
.menulist a {
 display: block;
 padding: 1px 1px 1px 1px;
 color: #6c000a;
 text-decoration: none;
 border: 1px solid transparent;
}
/* IE fix because it doesn't support transparent borders */
* html .menulist a {
 border: none;
 margin: 1px;
}


.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #fff;
 background-color: #6c000a;
 padding: 1px 1px 1px 1px;
 border: 1px solid #f2f2f2;
 margin: 0;
}
.menulist a.highlighted {
 color: #fff;
 background-color: #6c000a;
 border: 1px solid #f5f5f5;
 margin: 0;
}




/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}

