/* HORIZONTAL  MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist {
    position: absolute;
    left: 18px;
}
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	position: absolute;
	top: 26px;
	left: 0px;
	width: 0px;
	visibility: hidden;
         text-decoration: none;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 164px;
}

/*
 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;
 position: relative;
 background: #ED1D05;
}
.menulist li.aktiv {
 background: #ED1D05;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none; 
 background: #ED1D05;
 width:170px;
}

.menulist ul li.aktiv {
 background: #ED1D05;
}

.menulist ul>li:last-child {
  margin-bottom: 5px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 12px;
 line-height:20px;
 font-weight: bold;
 color: #FFFFFF;
 text-decoration:  none;
 padding-left: 16px;
 padding-right: 16px;
 padding-top: 3px;
 padding-bottom: 3px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist ul a:hover, .menulist ul  a.highlighted:hover, .menulist ul  a:focus {
 color: #ED1D05;
 background-color: #E7E7E7;
}

.menulist  ul  a.highlighted {
     color: #ED1D05;
 background-color: #E7E7E7;
}




/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #ED1D05;
 background-color: #E7E7E7;
}
.menulist  a.highlighted {
 color: #ED1D05;
 background-color: #E7E7E7;
}



/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}

.menulist ul a {
background-color: #ED1D05;
 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 */
