    /* folgende Definition bezieht sich auf den Zeilenabstand */
    /* .zahl {line-height: 1.5;}  */

    
    .unten 
    {
    vertical-align: text-bottom;    
    }
    
    
    
    
    /* Schriften */
    
    /* folgende Definition bezieht sich auf TAG p */
    /* Normale Schrift */
    p {
    color:#000000;   /* Farbe black (RGB 0,0,0) */
    font-size:10pt;  /* Größe 10pt   */
    font-family:arial, "lucida console", sans-serif; /* Schriftart */
    line-height: 1.5; 
        }

    /* Fette Schrift */
    #p_bold {
    color:#000000;   /* Farbe black (RGB 0,0,0) */
    font-size:10pt;  /* Größe 10pt   */
    font-family:arial, "lucida console", sans-serif; /* Schriftart */
    font-weight: bold;    
        }





    /* Fette Schrift blau */
    #p_blue {
    color:#0000ff;   /* Farbe blue (RGB 0,0,255) */
    font-size:10pt;  /* Größe 10pt   */
    font-family:arial, "lucida console", sans-serif; /* Schriftart */
    font-weight: bold;    
        }






    /* Schrift rechtsbündig (und unten) */
    #p_bottom_right {
    color:#000000;   /* Farbe black (RGB 0,0,0) */
    font-size:10pt;  /* Größe 10pt   */
    font-family:arial, "lucida console", sans-serif; /* Schriftart */
    text-align: right;
    line-height: 1.5;
        }        




    /* Link-Attribute */

    /* unbesuchte links (link) schwarz darstellen */
    a:link
    {
        text-decoration: none;
        color:#000000     
    }

    /* besuchte links (visited) schwarz darstellen */
    a:visited
    {
        text-decoration: none;
        color:#000000
    }

    /* überstreifte links (hover) blau (RGB 0 0 255) darstellen */
    a:hover
    {
        text-decoration: none;
        color:#0000ff
    }

    /* angeklickte links (active) hellblau (RGB 101 101 255) darstellen */
    a:active
    {
        text-decoration: none;
        color:#6565ff
    }

    




    /* BOXEN */

    /* folgende Definition bezieht sich auf box_content */
    /* (Hintergrund) */
    #box_content {
    background-color: transparent;  /* war grau:#cccccc; Farbe grey80 (RGB 204,204,204) */
    position: absolute;
    width: 1000px;
    height: 1080px;
    top: 0%;
    left: 50%;
    /* margin-top: -485px;  height / 2 */
    margin-left: -500px; /* width / 2 */ 
    }

    /* folgende Definition bezieht sich auf box_navi */
    /* (Navigationsbox) */
    #box_navi {
    background-color: transparent;  /* #cccccc; Farbe grey80 (RGB 204,204,204) */
    position: absolute;
    width: 200px;
    height: 200px;
    top: 300px;
    right: 111px;
    }

    /* folgende Definition bezieht sich auf box_bottom_home_right */
    /* (Inhalt rechts unten auf Seite index.html) */
    #box_bottom_home_right {
    background-color: transparent;  /* #cccccc; Farbe grey80 (RGB 204,204,204) */
    position: absolute;
    width: 889px;
    height: 75px;
    top: 530px;
    right: 111px;   /* width: 889px + right: 111px = 1000 px ! */
    }

        /* folgende Definition bezieht sich auf box_bottom_leistungen_right */
        /* (Inhalt rechts unten auf Seite zbib-leistungen.html) */
    #box_bottom_leistungen_right {
    background-color: transparent;  /* #cccccc; Farbe grey80 (RGB 204,204,204) */
    position: absolute;
    width: 889px;
    height: 75px;
    top: 530px;
    right: 111px;   /* width: 889px + right: 111px = 1000 px ! */
    }

        /* folgende Definition bezieht sich auf box_bottom_impressum_right */
        /* (Inhalt rechts unten auf Seite zbib-impressum.html) */
    #box_bottom_impressum_right {
    background-color: transparent;  /* #cccccc; Farbe grey80 (RGB 204,204,204) */
    position: absolute;
    width: 889px;
    height: 150px;
    top: 527px;
    right: 111px;   /* width: 889px + right: 111px = 1000 px ! */
    }
    
                  /* folgende Definition bezieht sich auf box_bottom_kontakt_right */
                  /* (Inhalt rechts unten auf Seite zbib-kontakt.html) */
    #box_bottom_kontakt_right {
    background-color: transparent;  /* #cccccc; Farbe grey80 (RGB 204,204,204) */
    position: absolute;
    width: 889px;
    height: 150px;
    top: 527px;
    right: 111px;   /* width: 889px + right: 111px = 1000 px ! */
    }

     /* folgende Definition bezieht sich auf Bild zBiB-bild     (Wird aktuell nicht verwendet)    */
    #zbib-bild {
    position: absolute;
    top: 180px;
    left: 50%;
    margin-left: -450px; /* width / 2 */
    box-shadow: 12px 8px 0px #cccccc;  /* Farbe grey (RGB 204,204,204) */

}




