.menulist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menulist ul {
  display: none;
  position: absolute;
  top: 0px; 
  margin-top: 19px; 
  left: -46px;
  width: 100px;
  text-align: left;
}

.menulist ul ul {
  top: 0px; 
  margin-top: 0;
  left: 78px;
}

.menulist li {
  float: left;
  display: block;
  position: relative;
  margin: 0px;
}

.menulist ul li {
  float: none;
  margin-left: 12px;
  margin-right: 0;
  margin-bottom: -1px;
  background-color: #EFBD95;
  border: 1px solid #FFF;
  width: 125px;
}

.menulist ul ul li {
  margin-left: 0px;
}

.menulist ul>li:last-child {
  margin-bottom: 1px; /* Mozilla fix */
}

.menulist a {
  display: block;
  padding: 2px 6px 2px 6px;
  font-weight: normal;
  color: #EFBD95;
}

.menulist ul li a {
  padding: 5px 0 5px 17px;
  font-size: 11px;
  font-weight: bold;
  color: #000;
} 

.menulist ul ul li a {
  padding: 5px 0 5px 5px;
}


.menulist a:hover, .menulist a.highlighted, .menulist a:hover, .menulist a:focus {
  color: #FFF;
}


.menulist ul li a:hover, .menulist ul li a.highlighted, .menulist ul li a:hover, menulist ul li a:focus{
  font-weight: bold;
  background-color: #FFF;
  color: #000;
  background-image: url(../de/images/pfeil_schwarz.gif);
  background-position: left, center;
  background-repeat: no-repeat;
}

.menulist ul ul li a:hover, .menulist ul ul li a.highlighted, .menulist ul ul li a:hover, menulist ul ul li a:focus{
  background-image: none;
}

.menulist a .subind {
  display: none;
}
.menulist ul a .subind {
  display: block;
  padding: 3px 2px 0 0;
  float: left;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
  float: left;
}
.menulist ul a {
  float: none;
}
/* \*/
.menulist a {
  float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*+html .menulist ul li {
  float: left;
  height: 1%;
}
*+html .menulist ul a {
  height: 1%;
}
* html .menulist ul li {
  float: left;
  /*height: 1%;*/
}

* html .menulist ul a {
  height: 1%;
}
/* End Hacks */