/* css 2.1 */

/* Standard Schrift und Standard Hintergrund */
body { 
font-family : Arial; 
font-size : 16px; 
background-image : url(backgr.jpg);
}

/* beliebige Schrift GERADE * SIGNALROT */
i {
font-style : normal;
color : rgb(255,0,0);
}

/* beliebige Schrift größer */
big {
font-size : 125%; 
}

/* beliebige Schrift kleiner */
small {
font-size : 75%; 
}

/* zentrierter Absatz normal KURSIV * GRÜN */
p {
font-family : Arial;
text-align : center;
font-size : 16px;
color : rgb(49,99,49);
font-style : italic;
}

/* zentrierter Absatz GROß (Times) KURSIV * ROT */ 
h1 {
font-family : Times;
text-align : center;
font-size : 24px;
color : rgb(222,0,0);
font-style : italic;
}

/* FETT normal * GRÜN */
b {
font-weight : bold;
font-family : Arial;
font-size : 16px;
color : rgb(49,99,49);
}

/* Standard Schrift Linklisten */
ul {
font-family : Arial; 
font-size : 12px;
}

/* Reihenfolge link,visited,focus,hover,active einhalten ! */
/* unbesuchte Links BLÄULICH */
a:link { 
color : rgb(85,85,170); 
text-decoration : none; 
} 

/* bereits besuchte Links * ROT */
a:visited { 
color : rgb(199,85,85); 
text-decoration : none; 
} 

/* Tabtaste */
a:focus { 
} 

/* Maus über Link INVERS * GRAU */
a:hover { 
color : rgb(85,85,170);
text-decoration : none; 
background-color : rgb(222,222,222); 
} 

/* aktives Link * SCHWARZ auf GELB */
a:active { 
color : rgb(0,0,0); 
text-decoration : none;
background-color : rgb(255,255,0); 
} 
