<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
}

a, a:hover, a:visited {
	outline: none !important;
}

.form-group.has-error .form-control {
    border-color: red;
}

.jsTemplate {
    display: none;
}
.jsTemplate textarea {
    width: 0;
    height: 0;
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}  
@keyframes fadeIn {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@-webkit-keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#ajaxLoader {
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    border: none;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
}
#ajaxLoader.display {
    opacity: 1;
    visibility: visible;
    z-index: 10000;
    -webkit-animation: fadeIn 2s;
    animation: fadeIn 2s;
}
#ajaxLoader.display .spinner {
    background-color: #eeeeee;
    position: absolute;
    margin: auto;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 80px;
    height: 80px;
    animation: spin 2s infinite linear;
}
#ajaxLoader.display .percentMeter {
    background-color: #dddddd;
    position: absolute;
    margin: auto;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 80%;
    max-width: 300px;
    height: 20px;
    transform: translateY(80px);
}
#ajaxLoader.display .percentMeter .percent {
    width: 0;
    background-color: #aaaaaa;
    height: 100%;
}
#ajaxLoader.display .percentMeter .percentText {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    text-align: center;
    font-size: 13px;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media screen and (max-width: 939px) {	/* iPad hoch */
	
}

@media screen and (max-width: 730px) {	/* schmaler als iPad quer */
	
}

@media screen and (max-width: 480px) {	/* iPhone quer */
	
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
</pre></body></html>