/* HORIZONTAL  MENU LAYOUT */


/* 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 {
	position: absolute;
	top: 24px;
	left: 0px;
	width: 0px;
	visibility: hidden; 
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 190px; 
}

.menulist li {
 float: left;
 position: relative;
 background: #E4B71F;
}

.menulist >li:last-child {
 float: left;
 position: relative;
 background: #E4B71F;
}


.menulist >li:last-child ul li {
 float: none; 
 width:160px; 
}

.menulist li.aktiv {
 background: #FED27D;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none; 
 background: #FED27D;
width:190px;
left: 0px;
}


.menulist ul li.aktiv {
 background: #F4DFA5;
}


/* Links inside the menu */
.menulist a {
 display: block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 12px;
 line-height:20px;
 font-weight: bold;
 text-align: left;
 color: #000000;
 text-decoration:  none;
 padding-left: 18px;
 padding-right: 18px;
 padding-top: 2px;
 padding-bottom: 2px;
}


/* ab 2. ebene 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: #000000;
 background-color: #E4B71F;
}

.menulist  ul  a.highlighted {
 background-color: #E4B71F;
}

/* 1. ebene Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
  color: #000000;
 background-color: #FED27D;
}
.menulist  a.highlighted {
 color: #000000;
  background-color: #FED27D;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
background-color: #FED27D;
 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 */


