/* CSS Document menu*/

div#s1 {
  width: 248px;          /* menu width */
}

div#s1 ul {
  list-style-type: none; /* get rid of the bullets */
  padding:0;             /* no padding */
  margin:0;              /* no margin for IE either */
}

div#s1 ul li {
  margin: 0;
  padding: 0;
  display:block;
  border-top: 1px solid white; /* lines */
}

div#s1 ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: black;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  background-image: url(../gfx/pfeil_inaktiv.gif);
  background-repeat: no-repeat;
  padding: 3px 3px 3px 23px;
  margin:0;
  text-decoration: none;
  height: 15px;           /* hint for IE, alternatively remove whitespace from HTML */ 
  border-bottom: 1px dotted black;
}

div#s1 ul li a span {
	height: auto;
}

div#s1 ul ul li a {
  margin-left: 20px;     /* indent level 1 */
}

div#s1 ul ul ul li a {
  margin-left: 40px;     /* indent level 2 */
}

div#s1 ul li a:hover {
  color: blue;
  background-image: url(../gfx/pfeil_aktiv.gif); /* rollover effect */
  background-repeat: no-repeat;
}

.aktiv {
  background-image: url(../gfx/pfeil_aktiv.gif);
  background-repeat: no-repeat;
  font-weight: bold;
}