/* Normaler Text */
body  { background-color:rgb(204,204,204); /* hellgrau */
        color:rgb(102,102,102); /* Textfarbe grau */
	font-family:Arial,Arial,sans-serif;
	margin-top:0 }

/* Textblöcke */
div   { text-align:Left }

/* Aussehen der Links */
	/* Verweise zu noch nicht besuchten Seiten: rot */
	a:link    { font-weight:normal; color:rgb(223,6,6); text-decoration:underline }
			
	/* Verweise zu bereits besuchten Seiten: Textfarbe grau */
	a:visited { font-weight:normal; color:rgb(102,102,102); text-decoration:underline }

	/* Verweise, während der Anwender mit der Maus darüber fährt: rot */
	a:hover   { font-weight:normal; color:rgb(223,6,6); text-decoration:underline }

	/* gerade angeklickte Verweise: rot */
	a:active  { font-weight:normal; color:rgb(223,6,6); text-decoration:underline }

	/* Verweise, die den Fokus erhalten: rot */
	a:focus   { font-weight:normal; color:rgb(223,6,6); text-decoration:underline }

/* Überschriften */
h1 { background-color:rgb(204,204,204); /* hellgrau */
     color:rgb(153,153,153); /* dunkelgrau */
     font-weight:normal;
     font-style:italic;
     text-align:right;
     padding-top:0.2cm;
     padding-bottom:0.2cm;
     padding-right:0.2cm }

/* Trennlinien */
hr { color:rgb(223,6,6);
     height:1px }

/* Rahmen für Bilder */
#roterRahmen {border-width:1px;
              border-style:solid;
              border-color:rgb(223,6,6);
              padding:0}