/* CSS-Definitionsdatei, die SiteStyle-Stylesheets enthält */
BODY { font-family: Arial,Helvetica,Geneva,Sans-serif; background-color: rgb(255,255,255); background-image: none;}
 A:active { color: rgb(51,204,102);}
 A:link { color: rgb(204,102,153);}
 A:visited { color: rgb(102,102,153);}
 .TextNavBar { font-size: xx-small;}
 A:hover { color: rgb(102,102,153);}
 @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.dreh-element {
    animation: spin 5s linear infinite; /* Dreht das Element endlos */
}