/* Grundstil für alle Links */
a {
    font-family: arial;
    text-decoration: none;
	font-size: 14px
}

/* Noch nicht besuchte Links */
a:link {
    color: #FDDF35; /* gelb */
}

/* Bereits besuchte Links */
a:visited {
    color: #FDDF35; /* gelb */
}

/* Link, wenn Maus darüber ist */
a:hover {
    color: #FFFFFF;             /* weiß */
    
}

/* Link im Moment des Anklickens */
a:active {
    color: #FDDF35; /* Orange */
}

/* Tastaturfokus (z.B. mit Tab erreicht) */
a:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

p.top {
	
	font-family: arial;
    text-decoration: none;
	font-size: 14px;
	color: #FFFFFF;
}

table {
    border-collapse: collapse; /* Ränder der Zellen werden zusammengefasst */
    border-spacing: 0;         /* zusätzlicher Abstand zwischen Zellen = 0 */
}
	