/*******************************************************************************

	Project		:	Redaxo Demo
	Copyright	:	Design - hundertmorgen - www.hundertmorgen.de

*******************************************************************************/





/*******************************************************************************
        
        Horizontales Dropdown-Menu, CSS
        
        CSS-Grundlage:  Copyright by Stu Nicholls @ www.cssplay.co.uk
        Please see Copyright Notice @
        http://www.cssplay.co.uk/menus/final_drop.html
        
*******************************************************************************/

.menu {
  font-family: verdana, sans-serif; 
  width:1078px; 
  position:relative; 
  font-size:1.1em;
text-align:left;
 background:url(navbackground.jpg) no-repeat top center;


padding-left:0px;
padding-right:2px;
    padding-bottom:0px;
  z-index:100;
}
.menu ul {
                      /* UL Ebene 1 */
  margin: 0px 0px; 
  list-style-type: none;

}
.menu ul li {                     /* Listenelemente der Ebene 1 */
  float:left;
  position:relative;

}
.menu ul li a, 
.menu ul li a:visited {           /* Links der Listenelemente der Ebene 1 */
  display:block; 
  text-decoration:none; 
  color:#000; 
  width:144px;                    /* Breite von (.menu)/(Anzahl der Punkte)-(1Px)  --> (1) */
  height:25px;                    /*  (2)  */
        /* Border-color am besten = Hintergrundfarbe der Seite */

  margin-left:0px;
 background:url(navbackground.jpg) no-repeat top center;
  padding-left:10px;
  line-height:25px;               /*  --> (2)  */
}
* html .menu ul li a, .menu ul li a:visited {
  width:152px;                    /* für 'normale' Browser */
  w\idth:144px;                   /* für IE */
}
.menu ul li ul {
  display: none;

}

table {
text-align: left;

  margin:-1px; 
  border-collapse:collapse;
  font-size:0.9em;

}

/* li:hover  für non-IE-Browser  ---  a:hover  für IE */
  .menu ul li:hover a,
  .menu ul li a:hover {
  color:#333; 
  background:#ffffff;
}

.menu ul li:hover ul,
.menu ul li a:hover ul {
  display:block; 
  position:absolute; 
  top:25px;                          /*  --> (2)  */
  margin-top:1px;
  left:0; 
  width:139px;
}
* html .menu ul li a:hover ul {
  margin-top:0;
  marg\in-top:1px;
}

.menu ul li:hover ul li ul,
.menu ul li a:hover ul li a ul {
  visibility:hidden; 
  position:absolute; 
  height:0; 
  width:0;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {
  display:block; 
  background:#fffae1; 
  color:#333; 
  height:auto; 
  line-height:1.2em; 
  padding:5px 10px; 
  width:139px
}
* html .menu ul li a:hover ul li a {
  width:139px;
  w\idth:129px;
}



.menu ul li:hover ul li a:hover,      /* Ebene 2 hover */
.menu ul li a:hover ul li a:hover {
  background:#ffbf8c; 
  color:#000;
}

a:hover span.soh-mouseover, a:focus span.soh-mouseover{
background-position:top right;
}

