/*
 *  Easing Slider "Pro"
 *
 *  Slideshow CSS. Advised you don't make changes to this. Instead, add styling changing to your theme's style.css file.
 *
 *  Why do we use a lot of '!important' declarations here?
 *  Because we need to make sure any theme CSS doesn't destroy the slideshow functionality. Simple as that.
 *
 *  Some information:
 *      The slideshow container is set to 'display: none;' via inline CSS to prevent the 'flash' of images before the CSS file is conditionally loaded in the footer.
 *      This CSS file then sets the container to 'display: block !important', to make sure it overrides the inline CSS.
 *      It works, because the CSS is loaded after the slideshow is printed.
 */

/* ===== Core structural CSS. Don't edit this! ===== */
.easingsliderpro,
.easingsliderpro div,
.easingsliderpro a,
.easingsliderpro img {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    outline: none !important;
}

.easingsliderpro div,
.easingsliderpro a,
.easingsliderpro img {
    border: 0 !important;
    clear: none !important;
}

.easingsliderpro {
    position: relative !important;
}

.easingsliderpro-preload {
    background: url(../images/loading.gif) no-repeat center center #fff !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 50 !important;
}

.easingsliderpro-arrows.has-hover {
    opacity: 0;
}

.easingsliderpro:hover .easingsliderpro-arrows.has-hover {
    opacity: 1;
}

.easingsliderpro-pagination.has-hover {
    opacity: 0;
}

.easingsliderpro:hover .easingsliderpro-pagination.has-hover {
    opacity: 1;
}

.easingsliderpro-viewport {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
}

.easingsliderpro-slides-container {
    overflow: hidden !important;
    position: absolute !important;
    top: 0;
    left: 0;
    display: block !important;
}

.easingsliderpro.use-css3 .easingsliderpro-slides-container {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.easingsliderpro.use-slide.use-css3 .easingsliderpro-slides-container {
    -webkit-transition: -webkit-transform 0.5s ease;
    -moz-transition: -moz-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    -o-transition: -o-transform 0.5s ease;
    transition: transform 0.5s ease;
}

.easingsliderpro.use-fade.use-css3 .easingsliderpro-slides-container {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.easingsliderpro.use-css3 .easingsliderpro-slide {
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}

.easingsliderpro.use-slide .easingsliderpro-slide {
    float: left !important;
    position: relative !important;
}

.easingsliderpro.use-fade .easingsliderpro-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.easingsliderpro-slide {
    width: 100%;
}

.easingsliderpro-slide > a {
    display: block !important;
}

.easingsliderpro-image {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    border: none !important;
}

.easingsliderpro-slide-content .left {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.easingsliderpro-slide-content .right {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
}

.easingsliderpro-slide-content .top {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.easingsliderpro-slide-content .bottom {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
}

.easingsliderpro-video {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    z-index: 40 !important;
}

.easingsliderpro-shadow,
.easingsliderpro-shadow img {
    padding: 0 !important;
    line-height: 0 !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.easingsliderpro-shadow img {
    margin: 0 !important;
    width: 100%;
}

/* ===== Anything below here can be edited. Have fun! ===== */
.easingsliderpro-arrows {
    position: absolute;
	top: -moz-calc(50% - 20px) !important;
	top: -webkit-calc(50% - 20px) !important;
	top: calc(50% - 20px) !important;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 30;
    cursor: pointer;
    opacity: 0; /* Slideshow will set to this 1 when it has loaded */
    -webkit-transition: opacity 0.25s linear;
    -moz-transition: opacity 0.25s linear;
    -ms-transition: opacity 0.25s linear;
    -o-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
}

.easingsliderpro-arrows.easingsliderpro-next {
    background-image: url(../images/slideshow_arrow_next.png);
    background-position: top left;
}

.easingsliderpro-arrows.easingsliderpro-prev {
    background-image: url(../images/slideshow_arrow_prev.png);
    background-position: top right;
}

.easingsliderpro-next.inside {
    right: 0px;
}

.easingsliderpro-next.outside {
    right: -40px;
    padding-left: 20px; /* Prevents fade when moving mouse from slideshow to outside navigation */
}

.easingsliderpro-prev.inside {
    left: 0px;
}

.easingsliderpro-prev.outside {
    left: -40px;
    padding-right: 20px; /* Prevents fade when moving mouse from slideshow to outside navigation */
}

.easingsliderpro-pagination {
    position: absolute;
    z-index: 30;
    opacity: 0; /** Slideshow will set to this 1 when it has loaded */
    -webkit-transition: opacity 0.25s linear;
    -moz-transition: opacity 0.25s linear;
    -ms-transition: opacity 0.25s linear;
    -o-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
}

.easingsliderpro-pagination.inside.bottom-left {
    bottom: 10px;
    left: 10px;
}

.easingsliderpro-pagination.inside.bottom-right {
    bottom: 10px;
    right: 10px;
}

.easingsliderpro-pagination.inside.bottom-center {
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
}

.easingsliderpro-pagination.inside.top-left {
    top: 10px;
    left: 10px;
}

.easingsliderpro-pagination.inside.top-right {
    top: 10px;
    right: 10px;
}

.easingsliderpro-pagination.inside.top-center {
    top: 10px;
    left: 0;
    width: 100%;
    text-align: center;
}

.easingsliderpro-pagination.outside.bottom-left {
    bottom: -25px;
    left: 0;
    padding-top: 20px; /* Prevents fade when moving mouse from slideshow to outside navigation */
}

.easingsliderpro-pagination.outside.bottom-right {
    bottom: -25px;
    right: 0;
    padding-top: 20px;
}

.easingsliderpro-pagination.outside.bottom-center {
    bottom: -25px;
    left: 0;
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.easingsliderpro-pagination.outside.top-left {
    top: -25px;
    left: 0;
    padding-bottom: 20px;
}

.easingsliderpro-pagination.outside.top-right {
    top: -25px;
    right: 0;
    padding-bottom: 20px;
}

.easingsliderpro-pagination.outside.top-center {
    top: -25px;
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.easingsliderpro-icon {
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    background-image: url(../images/slideshow_icon_inactive.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    display: inline-block;
    *display: inline; /** IE7 hack */
    zoom: 1; /** IE7 hack */
    z-index: 30;
    cursor: pointer;
}

.easingsliderpro-icon:last-child {
    margin-right: 0;
}

.easingsliderpro-icon.active {
    background-image: url(../images/slideshow_icon_active.png);
}

.easingsliderpro-slide-content .left,
.easingsliderpro-slide-content .right {
    margin: 20px 50px !important;
    width: 45%;
}

.easingsliderpro-slide-content .top,
.easingsliderpro-slide-content .bottom {
    margin: 20px 4% !important;
    width: 92%;
    text-align: center;
}

.easingsliderpro-slide-content .caption {
    background-color: #000; /** Fallback for rgba unsupported browsers */
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 10px 0 0 rgba(0, 0, 0, 0.7), -10px 0 0 rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 10px 0 0 rgba(0, 0, 0, 0.7), -10px 0 0 rgba(0, 0, 0, 0.7);
    box-shadow: 10px 0 0 rgba(0, 0, 0, 0.7), -10px 0 0 rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 4px;
    margin: 0 0 10px 0;
    line-height: 1.8em !important;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.easingsliderpro-slide-content .caption:last-child {
    margin-bottom: 0;
}

.easingsliderpro-slide-content .fade {
    opacity: 0;
}

.active .easingsliderpro-slide-content .fade {
    opacity: 1;
}

.easingsliderpro-slide-content .slideleft {
    -webkit-transform: translate3d(-10px, 0, 0);
    -moz-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    -o-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}

.easingsliderpro-slide-content .slideright {
    -webkit-transform: translate3d(10px, 0, 0);
    -moz-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    -o-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
}

.easingsliderpro-slide-content .slidetop {
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    -o-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}

.easingsliderpro-slide-content .slidebottom {
    -webkit-transform: translate3d(0, 10px, 0);
    -moz-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    -o-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}

.active .easingsliderpro-slide-content .slideleft,
.active .easingsliderpro-slide-content .slideright,
.active .easingsliderpro-slide-content .slidetop,
.active .easingsliderpro-slide-content .slidebottom {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.easingsliderpro-close-video {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    z-index: 50;
    background: url(../images/delete_icon.png) no-repeat top left;
    cursor: pointer;
}