/*! lightslider - v1.1.5 - 2015-10-31
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */


/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */


/** /!!! core css Should not edit !!!/**/

.lSSlideOuter {
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
}
.lightSlider:before, .lightSlider:after {
    display: table;
    content: ' ';
}
.lightSlider {
    overflow: hidden;
    margin: 0;
}
.lSSlideWrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.lSSlideWrapper>.lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transition: all 1s;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: -webkit-transform, height;
    -moz-transition-property: -moz-transform, height;
    transition-property: transform, height;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade>* {
    position: absolute !important;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    margin-right: 0;
}
.lSSlideWrapper.usingCss .lSFade>* {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    opacity: 0;
}
.lSSlideWrapper .lSFade>*.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade>*.active {
    opacity: 1;
}

/** /!!! End of core css Should not edit !!!/**/


/* Pager */

.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg>li {
    display: inline-block;
    padding: 0 5px;
    cursor: pointer;
}
.lSSlideOuter .lSPager.lSpg>li a {
    position: relative;
    z-index: 99;
    display: inline-block;
    overflow: hidden;
    width: 8px;
    height: 8px;
    -webkit-transition: all .5s linear 0s;
    transition: all .5s linear 0s;
    text-indent: -999em;
    border-radius: 30px;
    background-color: #222;
}
.lSSlideOuter .lSPager.lSpg>li:hover a, .lSSlideOuter .lSPager.lSpg>li.active a {
    background-color: #428bca;
}
.lSSlideOuter .media {
    opacity: .8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}

/* End of pager */


/** Gallery */

.lSSlideOuter .lSPager.lSGallery {
    overflow: hidden;
    margin: 0;
    padding-left: 0;
    list-style: none outside none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    -webkit-touch-callout: none;
    -khtml-user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius .12s linear 0s .35s linear 0s;
    transition: border-radius .12s linear 0s .35s linear 0s;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border: 1px solid #d3161b;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    width: 100%;
    height: auto;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    display: table;
    content: ' ';
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}

/* End of Gallery*/


/* slider actions */

.lSAction>a {
    position: absolute;
    z-index: 99;
    top: 50%;
    display: block;
    width: 20px;
    height: 32px;
    margin-top: -16px;
    cursor: pointer;
    -webkit-transition: opacity .35s linear 0s;
    transition: opacity .35s linear 0s;
    opacity: .9;
}
.lSAction>a:hover {
    opacity: 1;
}
.lSAction>.lSPrev {
    left: 10px;
    background-position: 0 center;
}
.lSAction>.lSNext {
    right: 10px;
    background-position: -32px center;
}
.lSAction>a.disabled {
    pointer-events: none;
}
.cS-hidden {
    overflow: hidden;
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
}

/* vertical */

.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0 !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    top: 0;
    right: 0;
}
.lSSlideOuter.vertical .lightSlider>* {
    width: 100% !important;
    max-width: none !important;
}

/* vertical controlls */

.lSSlideOuter.vertical .lSAction>a {
    left: 50%;
    margin-top: 0;
    margin-left: -14px;
}
.lSSlideOuter.vertical .lSAction>.lSNext {
    top: auto;
    bottom: 10px;
    background-position: 31px -31px;
}
.lSSlideOuter.vertical .lSAction>.lSPrev {
    top: 10px;
    bottom: auto;
    background-position: 0 -31px;
}

/* vertical */


/* Rtl */

.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider>*, .lSSlideOuter .lSGallery li {
    float: left;
    height: auto;
    width:468px;
}
.lSSlideOuter .lightSlider>* img {
    vertical-align: middle;
    margin: 0px auto;
}
.lSSlideOuter.lSrtl .lightSlider>*, .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}

/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }
    50% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }
    50% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }
    50% {
        top: -15px;
    }
    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }
    50% {
        top: -15px;
    }
    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }
    50% {
        left: 15px;
    }
    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }
    50% {
        left: 15px;
    }
    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }
    50% {
        bottom: -15px;
    }
    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }
    50% {
        bottom: -15px;
    }
    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    position: relative;
    -webkit-animation: rightEnd .3s;
    animation: rightEnd .3s;
}
.lSSlideOuter .leftEnd {
    position: relative;
    -webkit-animation: leftEnd .3s;
    animation: leftEnd .3s;
}
.lSSlideOuter.vertical .rightEnd {
    position: relative;
    -webkit-animation: topEnd .3s;
    animation: topEnd .3s;
}
.lSSlideOuter.vertical .leftEnd {
    position: relative;
    -webkit-animation: bottomEnd .3s;
    animation: bottomEnd .3s;
}
.lSSlideOuter.lSrtl .rightEnd {
    position: relative;
    -webkit-animation: leftEnd .3s;
    animation: leftEnd .3s;
}
.lSSlideOuter.lSrtl .leftEnd {
    position: relative;
    -webkit-animation: rightEnd .3s;
    animation: rightEnd .3s;
}

/*/  GRab cursor */

.lightSlider.lsGrab>* {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.lightSlider.lsGrabbing>* {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}
