.head .menu .menulist, .head .menu .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.head .menu .menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width: 135px;
}

/* Second and third etc. level submenus - position across from parent instead */
.head .menu .menulist ul ul {
 top: 0px; margin-top: 0;
 left: 167px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.head .menu .menulist ul li {
 float: left;
 display: block;
 position: relative;
 background: #fff;
 margin-right: -1px;
 width:auto;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.head .menu .menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}
.head .menu .menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.head .menu .menulist a {
 display: block;
 padding: 3px;
  text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.head .menu .menulist a:hover, .head .menu .menulist a.highlighted:hover, .head .menu .menulist a:focus {
text-decoration:underline;
}
.head .menu .menulist a.highlighted {
text-decoration:underline;
}

.head .menu .menulist ul a.highlighted {
text-decoration:none;
background:#dae5fe;
}

.head .menu .menulist ul a:hover, .head .menu .menulist ul a.highlighted:hover, .head .menu .menulist ul a:focus {
text-decoration:none;
}

/* Only style submenu indicators within submenus. */
.head .menu .menulist a .subind {
 display: none;
}
.head .menu .menulist ul a .subind {
 display: block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.head .menu .menulist a {
 float: left;
}
.head .menu .menulist ul a {
 float: none;
 }

.head .menu .menulist a {
 float: none;
}

*:first-child+html .head .menu .menulist ul li {
 float: left;
 width: 100%;
}

* html .head .menu .menulist ul li {
 float: left;
 height: 1%;
}
* html .head .menu .menulist ul a {
 height: 1%;
}
