/* Überschrift im header-DIV */
#header h1 {
  color: #8080FF;
  padding: 5px
}

/* Menüleiste (menu-DIV) */
#menu a {
  text-decoration: none;
  font-weight: bold;
  color: black;
  display: block;
  padding: 3px;
}

#menu a:hover {
  color: red;
}

#menu li {
  border: 4px solid #ffff99;  /* Trick */
}

#menu #high {
  font-weight: bold;
  color: white;
  background-color: #8080FF;
  display: block;
  padding: 3px;
}

#menu ul {
  line-height: 1.6;
  list-style-type: none;
}

#menu ul ul {
  line-height: 1.4;
  list-style-image: url(redflag.gif);
  padding-left: 20px;
}
/* Ende Menüleiste */

/* ab hier: main-DIV */
/* Hauptüberschrift: */
#main h1 {
  font-size: 1.3em;
  font-weight: bold;
  color: #333399;
  padding-bottom: 14px
}

/* Unterüberschrift: */
#main h2 {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 6px
}

/* normaler Fließtext: */
#main p {
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Kastenformat */
#main .kasten {
  text-align: center;
  padding: 5px;
  background-color: #ffff99;
  border: solid 1px black;
  width: 720px;
}

/* Minigrafik rechts ausrichten */
#main .floatR130 {
  float: right;
  margin-left: 5px;
  margin-right: 130px;
}

/* UL mit grafischem Aufz.zeichen: */
#main ul {
  list-style-image: url(reddot.gif);
  margin-left: 30px;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* STRONG umdefinieren */
#main strong {
  font-family: "Century Gothic", Verdana, Arial, Helvetica, sans-serif;
  color: red;
}
/* Ende main-DIV */