/* globale CSS- Style Sheets für die gesamte Hompage*/
body{
/* Hintergrundfarbe der Homepage*/
background-color: black;
/* Schriftfarbe*/
color: yellow;
/* mögliche Schriftarten*/
font-family:times new roman, verdana, arial, helvetica, sans-serif;
/* Schriftgroesse*/
font-size: 16pt;
/* Textausrichtung*/
text-align: center;
/* vertikale Ausrichtung*/
vertical-align: bottom;
}

/* CSS- Style Sheets für die Tabelle*/
table, td {
/* Schriftgroesse*/
font-size: 16pt;
/* mögliche Schriftarten*/
font-family:times new roman, verdana, arial, helvetica, sans-serif;
/* Textausrichtung*/
text-align: center;
/* Ausrichtung*/
align: center;
/* vertikale Ausrichtung*/
vertical-align: bottom;
}
/* Tabellenzellen zeilenweise verbinden
td.zweizeilig {
column-Span: 2;
}                                      */

/* CSS- Style Sheets für die Weiterlitungen*/
A:link {
text-decoration: none;
color: #ff0000;
}
A:visited {
text-decoration: none;
color: #006699;
}
A:hover {
text-decoration: underline;
color: #cc33cc;
}
A:active {
text-decoration: none;
color: #006699;
}