<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.pulse{
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    visibility: visible !important;
}

@keyframes slideLeft {
    0% {transform: translateX(100%);}
    100% {transform: translateX(0%);}
}

@-webkit-keyframes slideLeft {
    0% {transform: translateX(100%);}
    100% {transform: translateX(0%);}
}

.slideLeft{
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;
    animation-duration: .5s;
    -webkit-animation-duration: .5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

.spin {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1010ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1010ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 1010ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 1010ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

.appear {
    opacity: 0;
    position: relative;
    -webkit-transition: opacity 0.15s ease;
    -moz-transition: opacity 0.15s ease;
    -ms-transition: opacity 0.15s ease;
    -o-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}

.appear.appeared {
    opacity: 1;
}

.appear.appear-from-left {
    left: -20px;
}

.appear.appear-from-right {
    right: -20px;
}

.appear.appear-from-left.appeared {
    left: 0;
}

.appear.appear-from-right.appeared {
    right: 0;
}

.appear.appear-from-top {
    top: -20px;
}

.appear.appear-from-top.appeared {
    top: 0;
}

.appear.appear-from-bottom{
    bottom: -20px;
}

.appear.appear-from-bottom.appeared {
    bottom: 0;
}

.ease {
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

.ease-slow {
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}


/* Background scroll */
@-webkit-keyframes bgscroll{
    100%{
        background-position:0px 3000px;
    }
}

@-moz-keyframes bgscroll{
    100%{
        background-position:0px 3000px;
    }
}

@-o-keyframes bgscroll{
    100%{
        background-position:0px 3000px;
    }
}

@-ms-keyframes bgscroll{
    100%{
        background-position:0px 3000px;
    }
}

@keyframes bgscroll{
    100%{
        background-position:0px 3000px;
    }
}


@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.leftright {
    bottom:15%;
    position:relative;
    -webkit-animation:linear infinite alternate;
    -webkit-animation-name: runleftright;
    -webkit-animation-duration: 1s;
}

@-webkit-keyframes runleftright{
    0% { left: 0;}
    50%{ left : 20px;}
    100%{ left: 0;}
}

@-moz-keyframes runleftright{
    0% { left: 0;}
    50%{ left : 20px;}
    100%{ left: 0;}
}

@-o-keyframes runleftright{
    0% { left: 0;}
    50%{ left : 20px;}
    100%{ left: 0;}
}

@-ms-keyframes runleftright{
    0% { left: 0;}
    50%{ left : 20px;}
    100%{ left: 0;}
}

@keyframes runleftright{
    0% { left: 0;}
    50%{ left : 20px;}
    100%{ left: 0;}
}


.nb-dot-flashing {
    display: block;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}
.nb-dot-flashing::before,
.nb-dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}
.nb-dot-flashing::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}
.nb-dot-flashing::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% {
        background-color: #ffffff;
    }
    50%, 100% {
        background-color: rgba(255, 255, 255, 0.2);
    }
}</pre></body></html>