/* Stylesheet fuer alle Websites */


/* ******************************* Allgemein ******************************** */

/* Alle Elemente */
* {
    margin: 0px;
    padding: 0px;
    font-family: Calibri;
}


/* Ausdehnen des Viewport auf 100%, auch wenn "<body>" leer ist */
html, body {
    height: 100%;		
}

/* <body> als oberster Bezugsrahmen */
body {
    position: relative;
    background-color: #001;
}


/* Links, Bilder: Verhinderung von Rahmen */
a, img {			
    border-width: 0px;
    text-decoration: none;
}


/* Warnhinweis Javascript */
noscript {			
    color: #F00;
    font-size: 10pt;
    font-weight: bold;
    font-family: Arial;
    text-align: left;
}

