<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media(max-width: 550px) {
    .mobileDisplayNone {
        display: none;
    }
}

.large-image {
    display: inline;
}

.small-image {
    display: none;
    height: 40px;
}

@media(max-width: 350px) {
    .large-image {
        display: none;
    }

    .small-image {
        display: inline;
    }
}

.mobileLogoImg {
    height: 27px !important;
}
</pre></body></html>