<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ##################################################################################################################### */
/* Grundlegendes Styling */
/* ##################################################################################################################### */
* {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  font-weight: normal;
  font-style: normal;
}

body {
  /* Allgemeine Farben festlegen */
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  /* Ein Hintergrundbild für die Startseite festlegen und positionieren */
  background-image: url("/Grafik/meer.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* Bereiche festlegen */
  margin: 0;
  text-align: justify;
}

/* ##################################################################################################################### */
/* Die Tabelle neu formatieren */
/* ##################################################################################################################### */
table {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  font-weight: normal;
  font-style: normal;
  color: black;
  background-color: transparent;
}

th {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18pt;
  font-weight: bold;
  font-style: normal;
  text-shadow: 1px 1px 3px rgb(128, 128, 128);
  vertical-align: top;
  padding: 3px;
}

td {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  font-weight: normal;
  font-style: normal;
  text-shadow: 1px 1px 3px rgb(128, 128, 128);
  vertical-align: top;
  padding: 3px;
}

strong {
  font-weight: bold;
  font-style: italic;
}

.Centerline {
  text-align: center;
  align-items: center;
}

/* ##################################################################################################################### */
/* Links umformatieren */
/* ##################################################################################################################### */
a {
  color: rgb(200, 200, 0);
  background-color: transparent;
  text-shadow: 1px 1px 1px rgb(64, 64, 64);
}

a:hover {
  /* Hintergrund- und Textfarbe für den hervorgehobenen Button */
  color: rgb(255, 255, 0);
  background-color: transparent;
  text-shadow: 1px 1px 1px rgb(64, 64, 64);
}

a:active {
  /* Maus auf dem Text - diesen um x Punkte nach rechts verschieben */
  transform: translateX(5px);
  background-color: transparent;
  text-shadow: 1px 1px 1px rgb(64, 64, 64);
}

/* ##################################################################################################################### */
/* Titel- und Sektionsschriften in der Auflistung definieren */
/* ##################################################################################################################### */
.Titelschriften {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
  font-weight: bold;
  font-style: normal;
  text-shadow: 1px 1px 3px rgb(128, 128, 128);
  vertical-align: top;
}

.Sektionsschriften {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  font-weight: bold;
  font-style: normal;
  text-shadow: 1px 1px 3px rgb(128, 128, 128);
  vertical-align: top;
}

/* ##################################################################################################################### */
/* Ein deaktivierter Beitrag */
/* ##################################################################################################################### */
.Ausgegraut {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  font-weight: normal;
  font-style: italic;
  color: rgb(128, 128, 128);
  background-color: transparent;
}

/* ##################################################################################################################### */
/* zurück zum Start */
/* ##################################################################################################################### */
.Start {
  text-align: center;
}

/* ##################################################################################################################### */
/* ##################################################################################################################### */
/* *//*# sourceMappingURL=design.css.map */</pre></body></html>