<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * jQuery Nivo Slider v3.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.nivoSlider img {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: none;
}

.nivo-main-image {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 6;
    display: none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
    display: block;
    position: absolute;
    z-index: 5;
    height: 100%;
    top: 0;
}

.nivo-box {
    display: block;
    position: absolute;
    z-index: 5;
    overflow: hidden;
}

.nivo-box img {
    display: block;
}

/* Caption styles */
.nivo-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40%;
    font-size: 13px;
    color: #fff;
    display: none;
    overflow: hidden;
    z-index: 8;
    padding: 12px 24px;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.nivo-caption h2 {
    color: #fff;
}

.nivo-caption a {
    display: inline !important;
}

.nivo-html-caption {
    display: none;
}
/* Direction nav styles (e.g. Next &amp; Prev) */

.nivo-directionNav a {
    top: 50%;
    z-index: 9;
    position: absolute;
    width: 32px;
    height: 32px;
    font-size: 0;
    opacity: 0;
    cursor: pointer;
    margin-top: -16px;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.lt-ie9 .nivo-directionNav a {
    display: none;
}

.lt-ie9 .nivoSlider:hover .nivo-directionNav a {
    display: block;
}

.nivoSlider:hover .nivo-directionNav a {
    opacity: 1;
}

.nivo-directionNav .flex-prev {
    left: -20px;
}

.nivo-directionNav .flex-next {
    right: -20px;
}

.nivoSlider:hover .nivo-directionNav .nivo-prevNav {
    left: 10px;
}

.nivoSlider:hover .nivo-directionNav .nivo-nextNav {
    right: 10px;
}

.nivoSlider:hover .nivo-directionNav a:hover {
    background-color: #111;
    background-color: rgba(0, 0, 0, 0.9);
}

.nivo-directionNav a:after {
    content: '';
    top: 50%; left: 50%;
    margin-top: -6px;
    margin-left: -10px;
    position: absolute;
    border: 6px solid transparent;
    border-right-color: #fff;
}

.nivo-directionNav a.nivo-nextNav:after {
    border-left-color: #fff;
    margin-left: -2px;
    border-right-color: transparent;
}

.nivo-prevNav {
    left: 0px;
}

.nivo-nextNav {
    right: 0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
    text-align: center;
    left: 0; right: 0;
    bottom: -30px;
    position: absolute;
}

.nivo-controlNav a {
    cursor: pointer;
    margin: 0 6px;
    width: 12px;
    height: 12px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    background-color: #666;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.nivo-controlNav a:hover {
    background-color: #444;
}

.nivo-controlNav a.active {
    background-color: #444;
    cursor: default;
}

@media only screen and (max-width: 767px) {
    .nivo-caption {
        display: none !important;
    }
}</pre></body></html>