/* HORIZONTAL FREESTYLE MENU LAYOUT */
#menu{
	background:#000 url(../images/gfx/menu.gif) repeat-x top;
	color:#fff;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:85%;
}
.menu:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
/* Hides from IE-mac \*/
* html .menu {height: 1%;}
.menu {display: block;}
/* End hide from IE-mac */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 19px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width: 150px;
 z-index:1000;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
}

/*
 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.
*/
.menulist li {
 float: left;
 display: block;
 position: relative;
 background: #000 url(../images/gfx/menu.gif) repeat-x top;
 margin-right: -1px;
 font-weight:bold;
 text-indent:0;
 z-index:2000;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a:link, .menulist a:visited, .menulist a:hover{
 display: block;
 padding: 0.6em 1em;
 color: #fff;
 text-decoration: none;
}

/* 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:transparent url(../images/gfx/menu-over.gif) repeat-x top;
}
.menulist a.highlighted {
 color: #FFF;
 background:transparent url(../images/gfx/menu-over.gif) repeat-x top;
}

.menulist li li{
	background-image:none;
	font-weight:normal;
}
.menulist li li a:hover, .menulist li li a.highlighted:hover, .menulist li li a:focus{
	background-image:none;
	background-color:#333333;
}

/* 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;
}
/* */
