<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Slider*/
.slider {
    overflow: hidden;
    position: relative
}
.slides {
    cursor: move;
    left: 0px;
    overflow: hidden;
    position: absolute;
    top: 0px
}
.slide {
    height: 100%;
}
/*Loader*/
.slider-loader {
    background: #fff url(../images/loader.gif) no-repeat center center;
    bottom: 0;
    left: 0px;
    position: absolute;
    right: 0;
    top: 0px;
}
/*Navigation*/
.slider-navigator {
    bottom: 40px;
    position: absolute;
    right: 6px
}
.slider-navigator div {
    background: #ccc;
    border: 2px solid #fff;
    border-radius: 8px;
    box-shadow: 0 0 3px #333;
    cursor: pointer;
    height: 12px;
    overflow: hidden;
    position: absolute;
    width: 12px
}
.slider-navigator div:hover,
.slider-navigator .av {
    background: #333;
}
/*Arrows*/
.arrownavl, .arrownavr {
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: 'font-icons';
    font-size: 52px;
    height: 55px;
    line-height: 55px;
    overflow: hidden;
    position: absolute;
    text-shadow: 1px 1px 5px #333;
    top:123px;
    width: 55px;
}
.arrownavl {
    left: 8px
}
.arrownavl:before {
    content: '\e011'
}
.arrownavr {
    right: 8px
}
.arrownavr:before {
    content: '\e012'
}
/* Caption */
.caption {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 310px;
}
.caption.header {
    color: #000000;
    font-family: Arial;
    font-size: 3.4em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 1px 1px 3px #fff;
    top: 250px;
}
.caption.center {
    font-size: 1.4em;
    text-align: center;
}</pre></body></html>