/* Allgemein */
body {
  font-family: open sans, sans-serif;
  font-size: 12pt;
  padding: 0px;
  margin: 0px;
  min-width: 960px; /* Mindestbreite verhindert Umbruch und Anzeigefehler in modernen Browsern */
  line-height: 1.75;
}

/* Links */

a {
  text-decoration: none;
}

a:link {
  color: steelblue;
}

a:visited {
  color: steelblue;
}

a:hover {
  color: lightblue;
}

/* Überschriften */

h1 {
  font-size: 18pt;
  color: steelblue;
  font-weight: normal;
}

/* oben */

div#oben {
   position: fixed;
   display: block;
   height: 100px;
   width: 100%;
   top: 0px;
   left: 0px;
   line-height: 90px;
   background-color: rgba(255, 255, 255, 0.95);
   z-index: 100;
   transition: box-shadow 300ms ease 0s;
   box-shadow: 0px 0px 0px transparent;
}

div#oben_inhalt {
   width: 960px;
   margin-left: auto;
   margin-right: auto;
   padding: 0px;
   padding-top: 5px;
}

table {
   line-height: 30px;
   width: 720px;
   border-spacing: 0px;
   text-align: right;
}

th {
   font-size: 18pt;
   text-align: right;
   font-weight: normal;
}

td {
   padding-left: 20px;
}

#logo {
  display:inline-block;
  width: 120px;
  height: 60px;
  float:left;
  margin-right: 15px;
  padding: 0px;
  border: 0px;
  background-image:url(logo.png);
}

#logo:hover{
  background-image:url(logo2.png);
}

/* Inhalt */

div#inhalt {
  width: 960px;
  text-align: justify;
  margin-top: 110px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}

/* unten */

div#unten {
  width: 100%;
  height: 100px;
  background-color: steelblue;
  color: white;
}

div#unten_inhalt {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
}

ul#fuss {
   text-align: right;
   padding: 0px;
   margin: 0px;
  }

ul#fuss li {
   list-style: none;
   display: inline;
   margin-left: 10px;
}

ul#fuss li a:link{
   color:white;
}

ul#fuss li a:visited{
   color: white;
}

ul#fuss li a:hover{
   color: lightblue;
}