/* noch nicht besuchter Link - blau */
.navi a:link
{
text-decoration: none;
color: #0000FF
}


/* besuchter Link - wird orange nach Besuch */
.navi a:visited
{
text-decoration: none;
color: #0000FF
}


/* für Links, die mit der Tabulator-Taste bedient werden */
.navi a:focus
{
text-decoration: none;
color: #FF3333
}


/* Link beim Überfahren mit der Maus, unterstrichen */
.navi a:hover
{
text-decoration: underline;
color: #FF3333
}


/* aktiver Link */
.navi a:active
{
text-decoration: none;
color: 
}
