/*
Dies ist die CSS-Datei.
Hier kannst du auf das Design Einfluss nehmen.

Um die Bearbeitung einfacher zu machen, hier die Erklärung
font-family: Schriftart
color: Schriftfarbe
background : Hintergrundfarbe
font-size: Schriftgröße
text-decoration: Dekoration des Textes (none heisst keine; underline heisst unterstrichen; overline heisst überstrichen)
optional kann man noch font-weight einfügen (bold heisst fett; italic heisst kursiv). Die Notation ist gleich.

Versuche, body und table gleich zu halten.
hr steht für Linien
a und a:link für unbesuchte Links
a:visited für bereits besuchte Links
a:hover fürs Überfahren eines Links.
a:active steht für den Zustand des Links, nachdem er angeklickt wurde.
*/
body {
 font-family: Verdana, Arial;
 color: #666666;

 font-size: 11px;
}
table {
 font-family: Verdana, Arial;
 color: #666666;

 font-size: 11px;
}
hr {
color: #666666;
}
a {
 color: #666666;
 text-decoration: none;
}
a:link {
 color: #666666;
 text-decoration: none;
}
a:visited {
 color: #666666;
 text-decoration:none;
}
a:hover {
 color: #666666;
 text-decoration: none;
}
a:active {
 color: #666666;
 text-decoration: none;
}