/* this is complemented by loading_overlay.js */
#overlay {
    display: hidden;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.8;
    filter: alpha(opacity=75);
    z-index: 1000;
}
#loading {
    /* dimensions are for /public/images/loader.gif */
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -125px 0 0 -125px;
}

#overlayDigitalDoc {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 1000;
    display: block;
}
#fullDigitalDoc {
    /* dimensions are for digitalDocs at real size */
    position: absolute;
    width: 86%;
    top: 100px;
    left: 7%;
    margin: 0 0 0 0;
    z-index: 1001;}