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

.slideshow-container {
        position: relative;
        width: 100%;
        margin: auto;
}

.mySlides {display: none;}

.prev, .next {
        cursor: pointer;
        position: absolute;
        top: 21vw;
        padding: 1.9vw;
        width: auto;
        color: white;
        font-size: 4.8vw;
        transition: 0.6s ease;
        border-radius: 0 5px 5px 0;
        user-select: none;
        background: #3d9066;
        box-shadow: 0px 0px 55px -5px rgba(0, 0, 0, 0.79);
}

.next {
        right: 0;
        border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
        /*background-color: rgba(0, 0, 0, 0.8);*/
}

.text {
        color: #f2f2f2;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 100px;
        width: 100%;
        text-align: center;
}

.numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
}

.dot_container {
        position: absolute;
        z-index: 2000;
        width: 100%;
        display: inline-block;
        background: eee;
        margin-top: -45px;
}

.dot {
        cursor: pointer;
        height: 1.7vw;
        width: 1.7vw;
        margin: 0 7px;
        background: #3d9066;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
        box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.49);
}

@media screen and (max-width: 450px) {
        .dot {
                display: none;
        }
}

.dot.active {
        background: #fff;
        opacity: 0.9;
}
.dot:hover {}




fade {
        -webkit-animation-name: fade;
        -webkit-animation-duration: 1.5s;
        animation-name: fade;
        animation-duration: 1.5s;
}

@-webkit-keyframes fade {
        from {
                opacity: .4
        }

        to {
                opacity: 1
        }
}

@keyframes fade {
        from {
                opacity: .4
        }

        to {
                opacity: 1
        }
}
</pre></body></html>