.lush-slider {
    position: relative;
    list-style-type: none;
    padding: 0;
}

    .lush-slider > li,
    .lush-slider .lush {
        position: absolute;
        width: 100%;
        height: 100%;
        display: none;
        border-radius: 7px;
    }

.lush {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

    .lush.active {
        z-index: 1;
    }

    .lush img {
        border: none;
    }

    .lush a img {
        max-width: 100%;
    }

    .lush * {
        white-space: nowrap;
        margin: 0;
        /* activate hardware-accelerated animations */
        -webkit-perspective: 1000;
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0);
    }

.flexslider .slides img {
    width: auto !important;
    max-width: none;
}

    .flexslider .slides img:first-child {
        width: 100% !important;
    }
/* ================================
  * Lush Navigation Controls
  * ================================*/
.lush-nav {
    position: absolute;
    display: block !important;
    bottom: 20px;
    font-size: 0;
    white-space: nowrap;
    background-color: transparent;
    width: auto;
    float: none;
    z-index: 10;
    zoom: 1;
    opacity: 0.4;
    filter: alpha(opacity=40);
    -webkit-transition: opacity 0.2s linear 0;
    -moz-transition: opacity 0.2s linear 0s;
    -o-transition: opacity 0.2s linear 0;
    transition: opacity 0.2s linear 0;
}

    .lush-nav:hover {
        zoom: 1;
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transition: opacity 0.2s linear 0;
        -moz-transition: opacity 0.2s linear 0s;
        -o-transition: opacity 0.2s linear 0;
        transition: opacity 0.2s linear 0;
    }

    .lush-nav a {
        display: inline-block;
        *display: inline;
        zoom: 1;
        width: 40px;
        height: 42px;
        text-shadow: none !important;
    }

        .lush-nav a:focus {
            outline: none;
        }

    .lush-nav .lush-page {
        background-position: -40px 0;
    }

        .lush-nav .lush-page:hover,
        .lush-nav .lush-page.current {
            background-position: -40px -42px;
        }

    .lush-nav .lush-prev {
        background-position: 0 0;
    }

        .lush-nav .lush-prev:hover {
            background-position: 0 -42px;
        }

    .lush-nav .lush-next {
        background-position: -80px 0;
    }

        .lush-nav .lush-next:hover {
            background-position: -80px -42px;
        }
/* ================================
 * Skin White default
 * ================================*/
.lush-slider {
    padding: 15px;
    border: 1px solid #ddd;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #fff;
}

    .lush-slider .lush-nav {
        /* required to align bottom */
        line-height: 0;
    }

        .lush-slider .lush-nav a {
            background-image: url('../skin/lush-skin.html');
        }

    /* ================================
 * Skin Dark
 * ================================*/
    .lush-slider.dark {
        border: none;
        background-color: #202020;
        -webkit-box-shadow: 0 1px 2px #202020;
        -moz-box-shadow: 0 1px 2px #202020;
        box-shadow: 0 1px 2px #202020;
    }

        .lush-slider.dark .lush-nav a {
            background-image: url('../../Img/Skin/lush-skin-dark.png');
        }
    /* ================================
 * NO Skin
 * ================================*/
    .lush-slider.no-skin,
    .lush-slider.borderless {
        border: 0;
        background-color: transparent;
        padding: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }
/*!
 * Lush Content Slider - LESS Animation Stylesheet
 * =======================================================*/
/* ================================
 * Lush IN Transitions
 * ================================*/
.lush .in {
    /* LIGHT SPEED */
}

    .lush .in.left,
    .lush .in.l {
        margin-left: -100%;
    }

        .lush .in.left.live,
        .lush .in.l.live {
            margin-left: 0;
        }

    .lush .in.right,
    .lush .in.r {
        margin-left: 100%;
    }

        .lush .in.right.live,
        .lush .in.r.live {
            margin-left: 0;
        }

    .lush .in.top,
    .lush .in.t {
        margin-top: -100%;
        margin-bottom: 100%;
    }

        .lush .in.top.live,
        .lush .in.t.live {
            margin-top: 0;
            margin-bottom: 0;
        }

    .lush .in.bottom,
    .lush .in.b {
        margin-bottom: -100%;
        margin-top: 100%;
    }

        .lush .in.bottom.live,
        .lush .in.b.live {
            margin-bottom: 0;
            margin-top: 0;
        }

    .lush .in.roll-left {
        margin-left: -100%;
        -webkit-transform: rotate(-720deg);
        -moz-transform: rotate(-720deg);
        -ms-transform: rotate(-720deg);
        -o-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }

        .lush .in.roll-left.live {
            margin-left: 0;
            -webkit-transform: rotate(0);
            -moz-transform: rotate(0);
            -ms-transform: rotate(0);
            -o-transform: rotate(0);
            transform: rotate(0);
        }

    .lush .in.roll-right {
        margin-left: 100%;
        -webkit-transform: rotate(720deg);
        -moz-transform: rotate(720deg);
        -ms-transform: rotate(720deg);
        -o-transform: rotate(720deg);
        transform: rotate(720deg);
    }

        .lush .in.roll-right.live {
            margin-left: 0;
            -webkit-transform: rotate(0);
            -moz-transform: rotate(0);
            -ms-transform: rotate(0);
            -o-transform: rotate(0);
            transform: rotate(0);
        }

    .lush .in.roll-top {
        margin-top: -100%;
        margin-bottom: 100%;
        -webkit-transform: rotate(-720deg);
        -moz-transform: rotate(-720deg);
        -ms-transform: rotate(-720deg);
        -o-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }

        .lush .in.roll-top.live {
            margin-top: 0;
            margin-bottom: 0;
            -webkit-transform: rotate(0);
            -moz-transform: rotate(0);
            -ms-transform: rotate(0);
            -o-transform: rotate(0);
            transform: rotate(0);
        }

    .lush .in.roll-bottom {
        margin-bottom: -100%;
        margin-top: 100%;
        -webkit-transform: rotate(-720deg);
        -moz-transform: rotate(-720deg);
        -ms-transform: rotate(-720deg);
        -o-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }

        .lush .in.roll-bottom.live {
            margin-bottom: 0;
            margin-top: 0;
            -webkit-transform: rotate(0);
            -moz-transform: rotate(0);
            -ms-transform: rotate(0);
            -o-transform: rotate(0);
            transform: rotate(0);
        }

    .lush .in.left-bottom,
    .lush .in.lb {
        margin-left: -100%;
        margin-bottom: -100%;
        margin-top: 100%;
    }

        .lush .in.left-bottom.live,
        .lush .in.lb.live {
            margin-left: 0;
            margin-bottom: 0;
            margin-top: 0;
        }

    .lush .in.right-bottom,
    .lush .in.rb {
        margin-left: 100%;
        margin-bottom: -100%;
        margin-top: 100%;
    }

        .lush .in.right-bottom.live,
        .lush .in.rb.live {
            margin-left: 0;
            margin-bottom: 0;
            margin-top: 0;
        }

    .lush .in.left-top,
    .lush .in.lt {
        margin-left: -100%;
        margin-top: -100%;
        margin-bottom: 100%;
    }

        .lush .in.left-top.live,
        .lush .in.lt.live {
            margin-left: 0;
            margin-top: 0;
            margin-bottom: 0;
        }

    .lush .in.right-top,
    .lush .in.rt {
        margin-left: 100%;
        margin-top: -100%;
        margin-bottom: 100%;
    }

        .lush .in.right-top.live,
        .lush .in.rt.live {
            margin-left: 0;
            margin-top: 0;
            margin-bottom: 0;
        }

    .lush .in.fade {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.fade.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.left-fade,
    .lush .in.lf {
        margin-left: -50px;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.left-fade.live,
        .lush .in.lf.live {
            margin-left: 0;
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.right-fade,
    .lush .in.rf {
        margin-left: 50px;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.right-fade.live,
        .lush .in.rf.live {
            margin-left: 0;
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.top-fade,
    .lush .in.tf {
        margin-top: -50px;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.top-fade.live,
        .lush .in.tf.live {
            margin-top: 0;
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.bottom-fade,
    .lush .in.bf {
        margin-top: 50px;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.bottom-fade.live,
        .lush .in.bf.live {
            margin-top: 0;
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.front {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.front.live {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.back {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.back.live {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.left-top-rotate,
    .lush .in.ltr {
        -webkit-transform-origin: -50% 0 0;
        -moz-transform-origin: -50% 0 0;
        -ms-transform-origin: -50% 0 0;
        -o-transform-origin: -50% 0 0;
        transform-origin: -50% 0 0;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.left-top-rotate.live,
        .lush .in.ltr.live {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.right-top-rotate,
    .lush .in.rtr {
        -webkit-transform-origin: 150% 0 0;
        -moz-transform-origin: 150% 0 0;
        -ms-transform-origin: 150% 0 0;
        -o-transform-origin: 150% 0 0;
        transform-origin: 150% 0 0;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.right-top-rotate.live,
        .lush .in.rtr.live {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.left-bottom-rotate,
    .lush .in.lbr {
        -webkit-transform-origin: -50% 0 0;
        -moz-transform-origin: -50% 0 0;
        -ms-transform-origin: -50% 0 0;
        -o-transform-origin: -50% 0 0;
        transform-origin: -50% 0 0;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.left-bottom-rotate.live,
        .lush .in.lbr.live {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.right-bottom-rotate,
    .lush .in.rbr {
        -webkit-transform-origin: 150% 0 0;
        -moz-transform-origin: 150% 0 0;
        -ms-transform-origin: 150% 0 0;
        -o-transform-origin: 150% 0 0;
        transform-origin: 150% 0 0;
        -webkit-transform: rotate(-30deg);
        -moz-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        -o-transform: rotate(-30deg);
        transform: rotate(-30deg);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.right-bottom-rotate.live,
        .lush .in.rbr.live {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.front-rotate,
    .lush .in.fr {
        -webkit-transform: rotate(90deg) scale(2);
        -moz-transform: rotate(90deg) scale(2);
        -ms-transform: rotate(90deg) scale(2);
        -o-transform: rotate(90deg) scale(2);
        transform: rotate(90deg) scale(2);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.front-rotate.live,
        .lush .in.fr.live {
            -webkit-transform: rotate(0) scale(1);
            -moz-transform: rotate(0) scale(1);
            -ms-transform: rotate(0) scale(1);
            -o-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.back-rotate,
    .lush .in.br {
        -webkit-transform: rotate(90deg) scale(0);
        -moz-transform: rotate(90deg) scale(0);
        -ms-transform: rotate(90deg) scale(0);
        -o-transform: rotate(90deg) scale(0);
        transform: rotate(90deg) scale(0);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.back-rotate.live,
        .lush .in.br.live {
            -webkit-transform: rotate(0) scale(1);
            -moz-transform: rotate(0) scale(1);
            -ms-transform: rotate(0) scale(1);
            -o-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.front-rotate2,
    .lush .in.fr2 {
        -webkit-transform: rotate(-30deg) scale(2) translate(-100%);
        -moz-transform: rotate(-30deg) scale(2) translate(-100%);
        -ms-transform: rotate(-30deg) scale(2) translate(-100%);
        -o-transform: rotate(-30deg) scale(2) translate(-100%);
        transform: rotate(-30deg) scale(2) translate(-100%);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.front-rotate2.live,
        .lush .in.fr2.live {
            -webkit-transform: rotate(0) scale(1) translate(0, 0);
            -moz-transform: rotate(0) scale(1) translate(0, 0);
            -ms-transform: rotate(0) scale(1) translate(0, 0);
            -o-transform: rotate(0) scale(1) translate(0, 0);
            transform: rotate(0) scale(1) translate(0, 0);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.back-rotate2,
    .lush .in.br2 {
        -webkit-transform: rotate(30deg) scale(0) translate(100%);
        -moz-transform: rotate(30deg) scale(0) translate(100%);
        -ms-transform: rotate(30deg) scale(0) translate(100%);
        -o-transform: rotate(30deg) scale(0) translate(100%);
        transform: rotate(30deg) scale(0) translate(100%);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.back-rotate2.live,
        .lush .in.br2.live {
            -webkit-transform: rotate(0) scale(1) translate(0, 0);
            -moz-transform: rotate(0) scale(1) translate(0, 0);
            -ms-transform: rotate(0) scale(1) translate(0, 0);
            -o-transform: rotate(0) scale(1) translate(0, 0);
            transform: rotate(0) scale(1) translate(0, 0);
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .lush .in.back-left {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform-origin: 0 center 0;
        -moz-transform-origin: 0 center 0;
        -ms-transform-origin: 0 center 0;
        -o-transform-origin: 0 center 0;
        transform-origin: 0 center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.back-left.live {
            -webkit-backface-visibility: visible;
            -moz-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-animation-name: fadeIn, backLeftIn;
            -moz-animation-name: fadeIn, backLeftIn;
            -o-animation-name: fadeIn, backLeftIn;
            animation-name: fadeIn, backLeftIn;
        }

    .lush .in.back-right {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform-origin: right center 0;
        -moz-transform-origin: right center 0;
        -ms-transform-origin: right center 0;
        -o-transform-origin: right center 0;
        transform-origin: right center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.back-right.live {
            -webkit-backface-visibility: visible;
            -moz-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-animation-name: fadeIn, backRightIn;
            -moz-animation-name: fadeIn, backRightIn;
            -o-animation-name: fadeIn, backRightIn;
            animation-name: fadeIn, backRightIn;
        }

    .lush .in.front-right {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform-origin: right center 0;
        -moz-transform-origin: right center 0;
        -ms-transform-origin: right center 0;
        -o-transform-origin: right center 0;
        transform-origin: right center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.front-right.live {
            -webkit-backface-visibility: visible;
            -moz-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-animation-name: fadeIn, backLeftIn;
            -moz-animation-name: fadeIn, backLeftIn;
            -o-animation-name: fadeIn, backLeftIn;
            animation-name: fadeIn, backLeftIn;
        }

    .lush .in.front-left {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform-origin: 0 center 0;
        -moz-transform-origin: 0 center 0;
        -ms-transform-origin: 0 center 0;
        -o-transform-origin: 0 center 0;
        transform-origin: 0 center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.front-left.live {
            -webkit-backface-visibility: visible;
            -moz-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-animation-name: fadeIn, backRightIn;
            -moz-animation-name: fadeIn, backRightIn;
            -o-animation-name: fadeIn, backRightIn;
            animation-name: fadeIn, backRightIn;
        }

    .lush .in.back-bottom {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform-origin: bottom center 0;
        -moz-transform-origin: bottom center 0;
        -ms-transform-origin: bottom center 0;
        -o-transform-origin: bottom center 0;
        transform-origin: bottom center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.back-bottom.live {
            -webkit-backface-visibility: visible;
            -moz-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-animation-name: fadeIn, backBottomIn;
            -moz-animation-name: fadeIn, backBottomIn;
            -o-animation-name: fadeIn, backBottomIn;
            animation-name: fadeIn, backBottomIn;
        }

    .lush .in.back-top {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform-origin: top center 0;
        -moz-transform-origin: top center 0;
        -ms-transform-origin: top center 0;
        -o-transform-origin: top center 0;
        transform-origin: top center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.back-top.live {
            -webkit-backface-visibility: visible;
            -moz-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-animation-name: fadeIn, backTopIn;
            -moz-animation-name: fadeIn, backTopIn;
            -o-animation-name: fadeIn, backTopIn;
            animation-name: fadeIn, backTopIn;
        }

    .lush .in.front-bottom {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform-origin: bottom center 0;
        -moz-transform-origin: bottom center 0;
        -ms-transform-origin: bottom center 0;
        -o-transform-origin: bottom center 0;
        transform-origin: bottom center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.front-bottom.live {
            -webkit-backface-visibility: visible;
            -moz-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-animation-name: fadeIn, backTopIn;
            -moz-animation-name: fadeIn, backTopIn;
            -o-animation-name: fadeIn, backTopIn;
            animation-name: fadeIn, backTopIn;
        }

    .lush .in.front-top {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform-origin: top center 0;
        -moz-transform-origin: top center 0;
        -ms-transform-origin: top center 0;
        -o-transform-origin: top center 0;
        transform-origin: top center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.front-top.live {
            -webkit-backface-visibility: visible;
            -moz-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-animation-name: fadeIn, backBottomIn;
            -moz-animation-name: fadeIn, backBottomIn;
            -o-animation-name: fadeIn, backBottomIn;
            animation-name: fadeIn, backBottomIn;
        }

    .lush .in.flip {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-transform-origin: center center 0;
        -moz-transform-origin: center center 0;
        -ms-transform-origin: center center 0;
        -o-transform-origin: center center 0;
        transform-origin: center center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.flip.live {
            -webkit-animation-name: fadeIn, backRightIn;
            -moz-animation-name: fadeIn, backRightIn;
            -o-animation-name: fadeIn, backRightIn;
            animation-name: fadeIn, backRightIn;
        }

    .lush .in.flip-h {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-transform-origin: center center 0;
        -moz-transform-origin: center center 0;
        -ms-transform-origin: center center 0;
        -o-transform-origin: center center 0;
        transform-origin: center center 0;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        .lush .in.flip-h.live {
            -webkit-animation-name: fadeIn, backTopIn;
            -moz-animation-name: fadeIn, backTopIn;
            -o-animation-name: fadeIn, backTopIn;
            animation-name: fadeIn, backTopIn;
        }

    .lush .in.bounce {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.bounce.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: bounceIn, none;
            -moz-animation-name: bounceIn, none;
            -o-animation-name: bounceIn, none;
            animation-name: bounceIn, none;
        }

    .lush .in.bounce-left {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.bounce-left.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: bounceInLeft, none;
            -moz-animation-name: bounceInLeft, none;
            -o-animation-name: bounceInLeft, none;
            animation-name: bounceInLeft, none;
        }

    .lush .in.bounce-right {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.bounce-right.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: bounceInRight, none;
            -moz-animation-name: bounceInRight, none;
            -o-animation-name: bounceInRight, none;
            animation-name: bounceInRight, none;
        }

    .lush .in.bounce-top {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.bounce-top.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: bounceInDown, none;
            -moz-animation-name: bounceInDown, none;
            -o-animation-name: bounceInDown, none;
            animation-name: bounceInDown, none;
        }

    .lush .in.bounce-bottom {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.bounce-bottom.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: bounceInUp, none;
            -moz-animation-name: bounceInUp, none;
            -o-animation-name: bounceInUp, none;
            animation-name: bounceInUp, none;
        }

    .lush .in.rotate {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.rotate.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: rotateIn, none;
            -moz-animation-name: rotateIn, none;
            -o-animation-name: rotateIn, none;
            animation-name: rotateIn, none;
        }

    .lush .in.left-down-rotate {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.left-down-rotate.live {
            -webkit-animation-name: rotateInDownLeft, none;
            -moz-animation-name: rotateInDownLeft, none;
            -o-animation-name: rotateInDownLeft, none;
            animation-name: rotateInDownLeft, none;
        }

    .lush .in.right-down-rotate {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.right-down-rotate.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: rotateInDownRight, none;
            -moz-animation-name: rotateInDownRight, none;
            -o-animation-name: rotateInDownRight, none;
            animation-name: rotateInDownRight, none;
        }

    .lush .in.left-up-rotate {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.left-up-rotate.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: rotateInUpLeft, none;
            -moz-animation-name: rotateInUpLeft, none;
            -o-animation-name: rotateInUpLeft, none;
            animation-name: rotateInUpLeft, none;
        }

    .lush .in.right-up-rotate {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.right-up-rotate.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: rotateInUpRight, none;
            -moz-animation-name: rotateInUpRight, none;
            -o-animation-name: rotateInUpRight, none;
            animation-name: rotateInUpRight, none;
        }

    .lush .in.right-speed {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.right-speed.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: lightSpeedInRight, none;
            -moz-animation-name: lightSpeedInRight, none;
            -o-animation-name: lightSpeedInRight, none;
            animation-name: lightSpeedInRight, none;
        }

    .lush .in.left-speed {
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .lush .in.left-speed.live {
            zoom: 1;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-animation-name: lightSpeedInLeft, none;
            -moz-animation-name: lightSpeedInLeft, none;
            -o-animation-name: lightSpeedInLeft, none;
            animation-name: lightSpeedInLeft, none;
        }
/* ================================
 * Lush OUT Transitions 
 * ================================*/
.lush .out.left,
.lush .out.l {
    margin-left: 0;
}

    .lush .out.left.live,
    .lush .out.l.live {
        margin-left: -100%;
    }

.lush .out.right,
.lush .out.r {
    margin-left: 0;
}

    .lush .out.right.live,
    .lush .out.r.live {
        margin-left: 100%;
    }

.lush .out.top,
.lush .out.t {
    margin-top: 0;
    margin-bottom: 0;
}

    .lush .out.top.live,
    .lush .out.t.live {
        margin-top: -100%;
        margin-bottom: 100%;
    }

.lush .out.bottom,
.lush .out.b {
    margin-top: 0;
    margin-bottom: 0;
}

    .lush .out.bottom.live,
    .lush .out.b.live {
        margin-top: 100%;
        margin-bottom: -100%;
    }

.lush .out.left-bottom,
.lush .out.lb {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

    .lush .out.left-bottom.live,
    .lush .out.lb.live {
        margin-left: -100%;
        margin-top: 100%;
        margin-bottom: -100%;
    }

.lush .out.right-bottom,
.lush .out.rb {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

    .lush .out.right-bottom.live,
    .lush .out.rb.live {
        margin-left: 100%;
        margin-top: 100%;
        margin-bottom: -100%;
    }

.lush .out.left-top,
.lush .out.lt {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

    .lush .out.left-top.live,
    .lush .out.lt.live {
        margin-left: -100%;
        margin-top: -100%;
        margin-bottom: 100%;
    }

.lush .out.right-top,
.lush .out.rt {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

    .lush .out.right-top.live,
    .lush .out.rt.live {
        margin-left: 100%;
        margin-top: -100%;
        margin-bottom: 100%;
    }

.lush .out.roll-left {
    margin-left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

    .lush .out.roll-left.live {
        margin-left: -100%;
        -webkit-transform: rotate(-720deg);
        -moz-transform: rotate(-720deg);
        -ms-transform: rotate(-720deg);
        -o-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }

.lush .out.roll-right {
    margin-left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

    .lush .out.roll-right.live {
        margin-left: 100%;
        -webkit-transform: rotate(720deg);
        -moz-transform: rotate(720deg);
        -ms-transform: rotate(720deg);
        -o-transform: rotate(720deg);
        transform: rotate(720deg);
    }

.lush .out.roll-top {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

    .lush .out.roll-top.live {
        margin-top: -100%;
        margin-bottom: 100%;
        -webkit-transform: rotate(-720deg);
        -moz-transform: rotate(-720deg);
        -ms-transform: rotate(-720deg);
        -o-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }

.lush .out.roll-bottom {
    margin-bottom: 0;
    margin-top: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

    .lush .out.roll-bottom.live {
        margin-bottom: -100%;
        margin-top: 100%;
        -webkit-transform: rotate(-720deg);
        -moz-transform: rotate(-720deg);
        -ms-transform: rotate(-720deg);
        -o-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }

.lush .out.fade {
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.fade.live {
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.left-fade.live,
.lush .out.lf.live {
    margin-left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    margin-left: -50px;
    zoom: 1;
    opacity: 0;
    filter: alpha(opacity=0);
}

.lush .out.right-fade,
.lush .out.rf {
    margin-left: 0;
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.right-fade.live,
    .lush .out.rf.live {
        margin-left: 50px;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.top-fade,
.lush .out.tf {
    margin-top: 0;
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.top-fade.live,
    .lush .out.tf.live {
        margin-top: -50px;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.bottom-fade,
.lush .out.bf {
    margin-top: 0;
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.bottom-fade.live,
    .lush .out.bf.live {
        margin-top: 50px;
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.front {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.front.live {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.back {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

    .lush .out.back.live {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

.lush .out.left-top-rotate,
.lush .out.ltr {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.left-top-rotate.live,
    .lush .out.ltr.live {
        -webkit-transform-origin: -50% 0 0;
        -moz-transform-origin: -50% 0 0;
        -ms-transform-origin: -50% 0 0;
        -o-transform-origin: -50% 0 0;
        transform-origin: -50% 0 0;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.right-top-rotate,
.lush .out.rtr {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.right-top-rotate.live,
    .lush .out.rtr.live {
        -webkit-transform-origin: 150% 0 0;
        -moz-transform-origin: 150% 0 0;
        -ms-transform-origin: 150% 0 0;
        -o-transform-origin: 150% 0 0;
        transform-origin: 150% 0 0;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.left-bottom-rotate,
.lush .out.lbr {
    -webkit-transform-origin: -50% 0 0;
    -moz-transform-origin: -50% 0 0;
    -ms-transform-origin: -50% 0 0;
    -o-transform-origin: -50% 0 0;
    transform-origin: -50% 0 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.left-bottom-rotate.live,
    .lush .out.lbr.live {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.right-bottom-rotate,
.lush .out.rbr {
    -webkit-transform-origin: 150% 0 0;
    -moz-transform-origin: 150% 0 0;
    -ms-transform-origin: 150% 0 0;
    -o-transform-origin: 150% 0 0;
    transform-origin: 150% 0 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.right-bottom-rotate.live,
    .lush .out.rbr.live {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.front-rotate,
.lush .out.fr {
    -webkit-transform: rotate(0) scale(1);
    -moz-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    -o-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.front-rotate.live,
    .lush .out.fr.live {
        -webkit-transform: rotate(90deg) scale(2);
        -moz-transform: rotate(90deg) scale(2);
        -ms-transform: rotate(90deg) scale(2);
        -o-transform: rotate(90deg) scale(2);
        transform: rotate(90deg) scale(2);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.back-rotate,
.lush .out.br {
    -webkit-transform: rotate(0) scale(1);
    -moz-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    -o-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.back-rotate.live,
    .lush .out.br.live {
        -webkit-transform: rotate(90deg) scale(0);
        -moz-transform: rotate(90deg) scale(0);
        -ms-transform: rotate(90deg) scale(0);
        -o-transform: rotate(90deg) scale(0);
        transform: rotate(90deg) scale(0);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.front-rotate2,
.lush .out.fr2 {
    -webkit-transform: rotate(0) scale(1) translate(0, 0);
    -moz-transform: rotate(0) scale(1) translate(0, 0);
    -ms-transform: rotate(0) scale(1) translate(0, 0);
    -o-transform: rotate(0) scale(1) translate(0, 0);
    transform: rotate(0) scale(1) translate(0, 0);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.front-rotate2.live,
    .lush .out.fr2.live {
        -webkit-transform: rotate(-30deg) scale(2) translate(-100%);
        -moz-transform: rotate(-30deg) scale(2) translate(-100%);
        -ms-transform: rotate(-30deg) scale(2) translate(-100%);
        -o-transform: rotate(-30deg) scale(2) translate(-100%);
        transform: rotate(-30deg) scale(2) translate(-100%);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.back-rotate2,
.lush .out.br2 {
    -webkit-transform: rotate(0) scale(1) translate(0, 0);
    -moz-transform: rotate(0) scale(1) translate(0, 0);
    -ms-transform: rotate(0) scale(1) translate(0, 0);
    -o-transform: rotate(0) scale(1) translate(0, 0);
    transform: rotate(0) scale(1) translate(0, 0);
    zoom: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

    .lush .out.back-rotate2.live,
    .lush .out.br2.live {
        -webkit-transform: rotate(30deg) scale(0) translate(100%);
        -moz-transform: rotate(30deg) scale(0) translate(100%);
        -ms-transform: rotate(30deg) scale(0) translate(100%);
        -o-transform: rotate(30deg) scale(0) translate(100%);
        transform: rotate(30deg) scale(0) translate(100%);
        zoom: 1;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.lush .out.back-left {
    -webkit-transform-origin: 0 center 0;
    -moz-transform-origin: 0 center 0;
    -ms-transform-origin: 0 center 0;
    -o-transform-origin: 0 center 0;
    transform-origin: 0 center 0;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.back-left.live {
        -webkit-animation-name: fadeOut, backLeftOut;
        -moz-animation-name: fadeOut, backLeftOut;
        -o-animation-name: fadeOut, backLeftOut;
        animation-name: fadeOut, backLeftOut;
    }

.lush .out.back-right {
    -webkit-transform-origin: right center 0;
    -moz-transform-origin: right center 0;
    -ms-transform-origin: right center 0;
    -o-transform-origin: right center 0;
    transform-origin: right center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.back-right.live {
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: fadeOut, backRightOut;
        -moz-animation-name: fadeOut, backRightOut;
        -o-animation-name: fadeOut, backRightOut;
        animation-name: fadeOut, backRightOut;
    }

.lush .out.front-right {
    -webkit-transform-origin: right center 0;
    -moz-transform-origin: right center 0;
    -ms-transform-origin: right center 0;
    -o-transform-origin: right center 0;
    transform-origin: right center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.front-right.live {
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: fadeOut, backLeftOut;
        -moz-animation-name: fadeOut, backLeftOut;
        -o-animation-name: fadeOut, backLeftOut;
        animation-name: fadeOut, backLeftOut;
    }

.lush .out.front-left {
    -webkit-transform-origin: 0 center 0;
    -moz-transform-origin: 0 center 0;
    -ms-transform-origin: 0 center 0;
    -o-transform-origin: 0 center 0;
    transform-origin: 0 center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.front-left.live {
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: fadeOut, backRightOut;
        -moz-animation-name: fadeOut, backRightOut;
        -o-animation-name: fadeOut, backRightOut;
        animation-name: fadeOut, backRightOut;
    }

.lush .out.back-bottom {
    -webkit-transform-origin: bottom center 0;
    -moz-transform-origin: bottom center 0;
    -ms-transform-origin: bottom center 0;
    -o-transform-origin: bottom center 0;
    transform-origin: bottom center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.back-bottom.live {
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: fadeOut, backBottomOut;
        -moz-animation-name: fadeOut, backBottomOut;
        -o-animation-name: fadeOut, backBottomOut;
        animation-name: fadeOut, backBottomOut;
    }

.lush .out.back-top {
    -webkit-transform-origin: top center 0;
    -moz-transform-origin: top center 0;
    -ms-transform-origin: top center 0;
    -o-transform-origin: top center 0;
    transform-origin: top center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.back-top.live {
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: fadeOut, backTopOut;
        -moz-animation-name: fadeOut, backTopOut;
        -o-animation-name: fadeOut, backTopOut;
        animation-name: fadeOut, backTopOut;
    }

.lush .out.front-bottom {
    -webkit-transform-origin: bottom center 0;
    -moz-transform-origin: bottom center 0;
    -ms-transform-origin: bottom center 0;
    -o-transform-origin: bottom center 0;
    transform-origin: bottom center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.front-bottom.live {
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: fadeOut, backTopOut;
        -moz-animation-name: fadeOut, backTopOut;
        -o-animation-name: fadeOut, backTopOut;
        animation-name: fadeOut, backTopOut;
    }

.lush .out.front-top {
    -webkit-transform-origin: top center 0;
    -moz-transform-origin: top center 0;
    -ms-transform-origin: top center 0;
    -o-transform-origin: top center 0;
    transform-origin: top center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.front-top.live {
        -webkit-backface-visibility: visible;
        -moz-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: fadeOut, backBottomOut;
        -moz-animation-name: fadeOut, backBottomOut;
        -o-animation-name: fadeOut, backBottomOut;
        animation-name: fadeOut, backBottomOut;
    }

.lush .out.flip {
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-transform-origin: center center 0;
    -moz-transform-origin: center center 0;
    -ms-transform-origin: center center 0;
    -o-transform-origin: center center 0;
    transform-origin: center center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.flip.live {
        -webkit-animation-name: fadeOut, backLeftOut;
        -moz-animation-name: fadeOut, backLeftOut;
        -o-animation-name: fadeOut, backLeftOut;
        animation-name: fadeOut, backLeftOut;
    }

.lush .out.flip-h {
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-transform-origin: center center 0;
    -moz-transform-origin: center center 0;
    -ms-transform-origin: center center 0;
    -o-transform-origin: center center 0;
    transform-origin: center center 0;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.flip-h.live {
        -webkit-animation-name: fadeOut, backBottomOut;
        -moz-animation-name: fadeOut, backBottomOut;
        -o-animation-name: fadeOut, backBottomOut;
        animation-name: fadeOut, backBottomOut;
    }

.lush .out.bounce {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.bounce.live {
        -webkit-animation-name: bounceOut, none;
        -moz-animation-name: bounceOut, none;
        -o-animation-name: bounceOut, none;
        animation-name: bounceOut, none;
    }

.lush .out.bounce-left {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.bounce-left.live {
        -webkit-animation-name: bounceOutLeft, none;
        -moz-animation-name: bounceOutLeft, none;
        -o-animation-name: bounceOutLeft, none;
        animation-name: bounceOutLeft, none;
    }

.lush .out.bounce-right {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.bounce-right.live {
        -webkit-animation-name: bounceOutRight, none;
        -moz-animation-name: bounceOutRight, none;
        -o-animation-name: bounceOutRight, none;
        animation-name: bounceOutRight, none;
    }

.lush .out.bounce-top {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.bounce-top.live {
        -webkit-animation-name: bounceOutUp, none;
        -moz-animation-name: bounceOutUp, none;
        -o-animation-name: bounceOutUp, none;
        animation-name: bounceOutUp, none;
    }

.lush .out.bounce-bottom {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.bounce-bottom.live {
        -webkit-animation-name: bounceOutDown, none;
        -moz-animation-name: bounceOutDown, none;
        -o-animation-name: bounceOutDown, none;
        animation-name: bounceOutDown, none;
    }

.lush .out.rotate {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.rotate.live {
        -webkit-animation-name: rotateOut, none;
        -moz-animation-name: rotateOut, none;
        -o-animation-name: rotateOut, none;
        animation-name: rotateOut, none;
    }

.lush .out.left-down-rotate {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.left-down-rotate.live {
        -webkit-animation-name: rotateOutDownLeft, none;
        -moz-animation-name: rotateOutDownLeft, none;
        -o-animation-name: rotateOutDownLeft, none;
        animation-name: rotateOutDownLeft, none;
    }

.lush .out.right-down-rotate {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.right-down-rotate.live {
        -webkit-animation-name: rotateOutDownRight, none;
        -moz-animation-name: rotateOutDownRight, none;
        -o-animation-name: rotateOutDownRight, none;
        animation-name: rotateOutDownRight, none;
    }

.lush .out.left-up-rotate {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.left-up-rotate.live {
        -webkit-animation-name: rotateOutUpLeft, none;
        -moz-animation-name: rotateOutUpLeft, none;
        -o-animation-name: rotateOutUpLeft, none;
        animation-name: rotateOutUpLeft, none;
    }

.lush .out.right-up-rotate {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.right-up-rotate.live {
        -webkit-animation-name: rotateOutUpRight, none;
        -moz-animation-name: rotateOutUpRight, none;
        -o-animation-name: rotateOutUpRight, none;
        animation-name: rotateOutUpRight, none;
    }

.lush .out.right-speed {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.right-speed.live {
        -webkit-animation-name: lightSpeedOutRight, none;
        -moz-animation-name: lightSpeedOutRight, none;
        -o-animation-name: lightSpeedOutRight, none;
        animation-name: lightSpeedOutRight, none;
    }

.lush .out.left-speed {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.left-speed.live {
        -webkit-animation-name: lightSpeedOutLeft, none;
        -moz-animation-name: lightSpeedOutLeft, none;
        -o-animation-name: lightSpeedOutLeft, none;
        animation-name: lightSpeedOutLeft, none;
    }

.lush .out.hinge {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .lush .out.hinge.live {
        -webkit-animation-name: hinge, none;
        -moz-animation-name: hinge, none;
        -o-animation-name: hinge, none;
        animation-name: hinge, none;
    }
