<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
  Carousel control base styling
*/

.m-scooch-controls {
    padding-top: 10px;
    text-align: center;
}

.m-scooch-controls a {
    padding: 5px;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: -moz-none;
    user-drag: none;
}


/* Carousel controls: Bulleted */

.m-scooch-bulleted {
    position: absolute;
    bottom: .03em;
    left: 7em;
}

.m-scooch-bulleted a {
    line-height: 0;
    text-decoration: none;
    text-indent: -999px;
    overflow: hidden;
    display: inline-block;
    padding: .7em;
    width: 0;
    height: 0;
    margin: 0 3px;
    color: #333;
    background-color: #b5b5b6;
    -webkit-transition: background-color 0.1s ease-in;
    -moz-transition: background-color 0.1s ease-in;
    -o-transition: background-color 0.1s ease-in;
    transition: background-color 0.1s ease-in;
    -webkit-border-radius: .7em;
    -moz-border-radius: .7em;
    border-radius: .7em;
    border: 1px solid #fff;
}

.m-scooch-bulleted a:hover,
.m-scooch-bulleted a:focus {
    text-decoration: none;
    background-color: #005e60;
}

.m-scooch-bulleted a.m-active {
    background-color: #005e60;
    border: 1px solid #fff;
}


/* Carousel controls: Pagination */

.m-scooch-pagination {
    padding-top: 10px;
}

.m-scooch-pagination a {
    text-decoration: none;
    display: inline-block;
    padding: 3px 10px;
    margin: 1px 0;
    color: #333;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: background-color 0.1s ease-in;
    -moz-transition: background-color 0.1s ease-in;
    -o-transition: background-color 0.1s ease-in;
    transition: background-color 0.1s ease-in;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.m-scooch-pagination a:hover,
.m-scooch-pagination a:focus {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.6);
}

.m-scooch-pagination a.m-active {
    background-color: rgba(255, 255, 255, 1);
}


/* Carousel controls: HUD */

.m-scooch-hud {
    padding-top: 0;
}

.m-scooch-hud a {
    z-index: 2;
    opacity: 0;
    display: block;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 0;
    padding: 0;
    text-decoration: none;
    text-indent: -999px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity 0.1s ease-in;
    -moz-transition: opacity 0.1s ease-in;
    -o-transition: opacity 0.1s ease-in;
    transition: opacity 0.1s ease-in;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

.m-scooch:hover .m-scooch-hud a {
    opacity: 0.3;
}

.m-scooch .m-scooch-hud a:hover,
.m-scooch .m-scooch-hud a:focus {
    opacity: 1;
}

a.m-scooch-prev:hover,
a.m-scooch-next:hover,
a.m-scooch-prev:focus,
a.m-scooch-next:focus {
    border-color: #edb700;
    background-color: #edb700;
}

a.m-scooch-prev,
a.m-scooch-next {
    border-color: #005e60;
    background-color: #005e60;
}

a.m-scooch-prev:after,
a.m-scooch-next:after {
    color: rgba(255, 255, 255, 0.85);
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f053";
    text-indent: 0;
    text-align: center;
    display: block;
    margin-top: -6px;
    margin-left: -6px;
}

.m-scooch-next:after {
    content: "\f054" !important;
    margin-top: -7px !important;
    margin-left: -3px !important;
}

.m-scooch-hud .m-scooch-prev {
    left: 10px;
}

.m-scooch-hud .m-scooch-next {
    right: 10px;
}


/* extra bits */


/* captions */

.m-caption {
    margin: 0;
    padding: 1em;
    height: auto;
}


/* scaled slides */

.m-scaled .m-item {
    opacity: 0.7;
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -o-transform: scale(0.75);
    transform: scale(0.75);
    /* Configure animations */
    /* (0.5s would match the transition length between each,
      but fast swiping on a phone can result in odd timing.
      Half-length durations for each transform is a reasonable
      middle ground.) */
    -webkit-transition: -webkit-transform cubic-bezier(0.33, 0.66, 0.66, 1) 0.25s, opacity ease-out 0.25s;
    -moz-transition-timing-function: -moz-transform cubic-bezier(0.33, 0.66, 0.66, 1) 0.25s, opacity ease-out 0.25s;
    -o-transition-timing-function: -o-transform cubic-bezier(0.33, 0.66, 0.66, 1) 0.25s, opacity ease-out 0.25s;
    transition-timing-function: transform cubic-bezier(0.33, 0.66, 0.66, 1) 0.25s, opacity ease-out 0.25s;
}

.m-scaled .m-active {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .7s;
    transition: transform .7s;
}


/* Default Themes/Sytles for Slider */

.m-fluid .m-item {
    margin-right: 20px;
}
.m-item img{
  width: 100%;
}
.cat-17 .m-item img{
  width: auto;
}

/* https://github.com/mobify/scooch/issues/32 */


/* Styles for non-fluid, centered carousel */

.m-center.m-scaled:not(.m-fluid) .m-item {
    -webkit-transform: translate(-50%) scale(0.75);
    -moz-transform: translate(-50%) scale(0.75);
    -ms-transform: translate(-50%) scale(0.75);
    -o-transform: translate(-50%) scale(0.75);
    transform: translate(-50%) scale(0.75);
    -webkit-transition: -webkit-transform .7s;
    transition: transform .7s;
}

.m-center.m-scaled:not(.m-fluid) .m-item.m-active {
    -webkit-transform: scale(1) translate(-50%);
    -moz-transform: scale(1) translate(-50%);
    -ms-transform: scale(1) translate(-50%);
    -o-transform: scale(1) translate(-50%);
    transform: scale(1) translate(-50%);
    -webkit-transition: -webkit-transform .7s;
    transition: transform .7s;
}


/* Fluid Width Photo Carousel
 * .m-scooch.m-fluid.m-scooch-photos
 */

.m-scooch-photos .m-item &gt; img {
    margin: 0;
    padding: 0;
    max-width: none;
    width: 100%;
    height: auto;
    -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
    -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
    -o-box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
    -ms-box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
}

.sect-meida .m-scooch-photos .m-caption {
    font-size: 1.6em;
    color: #fff;
    background: rgba(0, 117, 121, 0.7);
    position: absolute;
    z-index: 9;
    max-width: 60%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Inner Cards for Carousel */

.m-card-dark {
    -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
    -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
    -o-box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
    -ms-box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px;
}

.m-card-dark {
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
}

.m-card-dark .m-caption {
    margin: 0;
    padding: .5em;
}

.m-fade-out {
    -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
}
</pre></body></html>