  /*  Hier sind die grundlegenden Einstellungen für Schriftart und Farben abgelegt,	*/
  /*  auf die alle weiteren Seiten bei Bildschirmdarstellung zugreifen.		*/
  /*  Im einzelnen:							*/
  /*   - body 	Schriftart/-farbe des normalen Fliesstexts		*/
  /*   - a: (...)	Schriftart/-farbe der Links				*/
  /*   - h1		Schriftart/-farbe der zentrierten Seitenüberschriften	*/
  /*   - h4		Schriftart/-farbe der Unterüberschriften			*/

  /*  margin- (...) 	Abstand zum (...) - Browserrand			*/
  /*  font-family	Schriftart						*/
  /*  font-size	Schriftgrösse					*/
  /*  line-height	Zeilenhöhe					*/
  /*  text-decoration	Schriftformatierungen (blinkend, unterstrichen, ...)		*/
  /*  color		Schriftfarbe					*/

  /*  Die lustigen *//* sind keine Verzierung sondern markieren diesen Text als	*/
  /*  Kommentar - also bitte nicht entfernen oder neuen Text ohne hinzufügen ;-)	*/

body {
	font-family: Arial,Helvetica,Monaco;
	font-size: 14;
	line-height: normal;
	font-weight: normal;
	color: white;
	link="#FFFF80";
	vlink="#80FFFF";
	alink="#red";
	font : normal;
	background : #00007F;
	margin-left : 20px;
	margin-right : 20px;
}
P {
	font-family: Arial,Helvetica,Monaco;
	font-size: 14;
	line-height: normal;
	font-weight: normal;
	color: white;
	font : normal;
	text-align : justify;
}

a:active {
	font-family: Arial,Helvetica,Monaco;
	font-size: 14;
	text-decoration: none;
	color: #FF0000;
}
a:hover {
	font-family: Arial,Helvetica,Monaco;
    font-size: 14;
	text-decoration: none;
	color: #FFff00;
}
a:link {
	font-family: Arial,Helvetica,Monaco;
	font-size: 14;
	text-decoration: none;
	color: #FFFF80
}
a:visited {
	font-family: Arial,Helvetica,Monaco;
	font-size: 14;
	text-decoration: none;
	color: #FF9900;
}
table {
	font-family: Arial,Helvetica,Monaco;
	font-size: 14;
	line-height: normal;
	font-weight: normal;
	color: White;
}
h1 {
	font-family: Arial,Helvetica,Monaco;
	font:normal;
	font-size : x-large;
	text-decoration: none;
	color: #white;
	text-align : center;
}
h2 {
	font-family: Arial,Helvetica,Monaco;
	font: normal;
	font-size: medium;
	text-decoration: none;
	color: #white;
	text-align : center;
}
h3 {
	font-family: Arial,Helvetica,Monaco;
	font: normal;
	font-size: 18;
	text-decoration: none;
	color: #white;

}
h4 {
	font-family: Arial,Helvetica,Monaco;
	font: normal;
	font-size : 26;
	text-decoration: none;
	color: #white;
	text-align : center;
}
