<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fixed running bottom line */
#fixedBottomAddConteiner {
    display: none;
}

.fixedBottomAddConteiner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 3000px;
    height: 100px;
    z-index: 99999;
    background-repeat: repeat-x;
    background-size: 1000px;
    background-position: 0 bottom;
    display: block;
    animation: moveLeft 300s linear infinite;
}

@keyframes moveLeft {
    0% {
        background-position: 1000% bottom;
        visibility: visible;
    }
    100% {
        background-position: 0% bottom;
    }
}

.fixedBottomAddCloseBtn {
    background-color: #ffffff;
    border-radius: 11px;
    bottom: 37px;
    color: #000000;
    cursor: pointer;
    font-family: "Glyphter";
    font-size: 21px;
    font-weight: bold;
    height: 21px;
    line-height: 21px;
    opacity: 0.5;
    filter:Alpha(Opacity=50);
    position: fixed;
    right: 20px;
    text-align: center;
    width: 21px;
    z-index: 2147483640;
}

.fixedBottomAddCloseBtn:hover {
    opacity: 0.8;
}

.fixedBottomAddCloseBtn:before {
    content: "I";
}
/* END - Fixed running bottom line */
</pre></body></html>