/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0px;
 padding: 0px;
 border: none;
 list-style: none;
 text-transform: uppercase;
 font-weight: bold;
 font-family: arial;
 font-size: 10px;
 float:left;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 20px;
 left: 0px;
 width: 170px;
}

.menulist li {
 margin: 0px;
 padding: 0px;
 float: left;
 position: relative;
 border: none;
 margin-right: -1px;
 margin-bottom: -1px;
z-index:50;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {

 display: block;
 padding: 3px;
 padding-right: 4px;
 padding-left: 4px;
 color: #FFF;
 text-decoration:  none;
 border:1px solid #09C;
 background-color: #09C;
}

/* 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: #6CC;
 border:1px solid #6CC;
}
.menulist  a.highlighted {
 color: #FFF;
 background-color: #6CC;
 border:1px solid #6CC;
}

/* Links inside submenus */
.menulist ul a {
 color: #69C;
 border:1px solid #BDE;
 background-color: #BDE;
}
.menulist ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus {
 color: #69C;
 background-color: #DEF;
 border:1px solid #DEF;
}
.menulist ul a.highlighted {
 color: #69C;
 background-color: #DEF;
 border:1px solid #DEF;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */
