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

}
.fsmodal-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 70%;
    max-width: 700px;
    z-index: 200;
    padding: 60px;
    overflow: visibÄºe;

    color: #222;
    background-color: #fff;
    border-radius: 0;

    -webkit-transform: translate(-50%, -200%);
    -ms-transform: translate(-50%, -200%);
    transform: translate(-50%, -200%);

    transition: transform 0.4s ease-out;
}
.fsmodal-backdrop{
    opacity: 0;
}
.fsmodal.open .fsmodal-backdrop{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #FFF;
    background-color: rgba(0,0,0, .75);
    z-index:110;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.3s ease-out;

}
.fsmodal.open .fsmodal-container {
    top: 50%;
    margin-bottom: 10%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.fsmodal-close{
    display: block;
    float: right;
    width: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
    font-size:26px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #000;
}
.fsmodal-close:hover,
.fsmodal-close:focus{
    color: #fff;
    background-color: #333;
}
.fsmodal-head{
    display: block;
    overflow: hidden;
}
.fsmodal-title{
    font-size: 40px;
}
.fsmodal-body{
    display: block;
    overflow-y: auto;
    max-height: 80%;
    clear: both;
    font-size: 14px;
}
.fsmodal-body a{
    color: #990025;
    text-decoration: none;
}
.fsmodal-body a:active,
.fsmodal-body a:focus,
.fsmodal-body a:hover{
    text-decoration: underline;
}

/** cover */
.splibox{
    overflow-y: scroll;
}
.title{
    padding-top: 20px;
    min-height: 300px;
}
.subtitle{
    margin-top: 60px;
}

/** license */

.credits{
    margin-top: 60px;
    margin-bottom: 30px;
}

.btn-license{
    margin-top: 10px;
    cursor: pointer;
    text-align: right;
}

.btn-license img{
    width:80%;
    max-width:150px; 
    opacity:0.65;
}

.btn-license:hover img{
    opacity:0.95;
}

.logo{
    margin-bottom: 0 !important;
    text-align: left;
}
.logo img{
    width:80%;
    max-width: 150px !important;
}
/** Index */
.homebox-container .wrap-index .index .nav-index {
    margin-top: 10px !important;
}.homebox-container .wrap-index .index .nav-index li {
    margin-bottom: 2px;
    line-height: 110%;
}
.homebox-container .wrap-index .index .nav-index a {
    font-size: 1.5rem !important;
}



/** RESPONSIVE
 * ------------------------ */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    /** ---- Modal ---- */
    .fsmodal-container{
        width: 90%;
        padding: 40px;
    }
    .fsmodal-title{
        font-size: 24px;
    }
    .fsmodal-body{
        font-size: 12px;
    }
    /** cover */
    .subtitle{
        font-size: 15px !important;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    /** ---- Modal ---- */
    .fsmodal-container{
        width: 90%;
        padding: 50px;
    }
    .fsmodal-title{
        font-size: 24px;
    }
    .fsmodal-body{
        font-size: 12px;
    }
    /** cover */
    .subtitle{
        margin-top: 40px;
        font-size: 14px !important;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    /** ---- Modal ---- */
    .fsmodal-container{
        width: 85%;
        padding: 50px;
    }
    .fsmodal-title{
        font-size: 28px;
    }
    .fsmodal-body{
        font-size: 14px;
    }
    /** cover */
    .splitbox {
        display:-ms-grid;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        height: 100%;
    }
    .left-half {
        -ms-grid-column: 2;
        grid-column: 1;
    }

    .right-half {
        -ms-grid-column: 2;
        grid-column: 2;
    }
    .homebox-container .wrap-info{
        min-height: auto !important;
    }
    .homebox-container .wrap-info .info {
        padding: 30px 60px;
    }
    .homebox-container .wrap-index{
        min-height: auto !important;
    }
    .homebox-container .wrap-index .index {
        padding: 50px 60px;
    }
    .title h1{
        font-size: 30px;
    }
    .subtitle{
        margin-top: 50px;
        font-size: 15px !important;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    /** cover */
    .subtitle{
        margin-top: 60px;
        font-size: 15px !important;
    }
}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    /** cover */
 .title h1{
        font-size: 36px;
    }
    .subtitle{
        margin-top: 60px;
        font-size: 18px !important;
    }
}
</pre></body></html>