@media only screen and (min-width: 768px) {
    .appear-animation {
        opacity: 0;
    }

    .appear-animation-visible {
        opacity: 1;
    }
}

.animated,
.appear-animation {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

    .animated.infinite,
    .appear-animation.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.hinge,
    .appear-animation.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1);
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1);
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    opacity: 1 !important;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden],
template {
    display: none;
}

a {
    background: transparent;
}

    a:active,
    a:hover {
        outline: 0;
    }

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    margin: .67em 0;
    font-size: 2em;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    height: 0;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

input {
    line-height: normal;
}

    input[type="checkbox"],
    input[type="radio"] {
        box-sizing: border-box;
        padding: 0;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type="search"] {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-appearance: textfield;
    }

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid silver;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}

@media print {
    * {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    select {
        background: #fff !important;
    }

    .navbar {
        display: none;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }

    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

a {
    color: #428bca;
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: #2a6496;
        text-decoration: underline;
    }

    a:focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small,
    .h1 small,
    .h2 small,
    .h3 small,
    .h4 small,
    .h5 small,
    .h6 small,
    h1 .small,
    h2 .small,
    h3 .small,
    h4 .small,
    h5 .small,
    h6 .small,
    .h1 .small,
    .h2 .small,
    .h3 .small,
    .h4 .small,
    .h5 .small,
    .h6 .small {
        font-weight: normal;
        line-height: 1;
        color: #999;
    }

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

    h1 small,
    .h1 small,
    h2 small,
    .h2 small,
    h3 small,
    .h3 small,
    h1 .small,
    .h1 .small,
    h2 .small,
    .h2 .small,
    h3 .small,
    .h3 .small {
        font-size: 65%;
    }

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

    h4 small,
    .h4 small,
    h5 small,
    .h5 small,
    h6 small,
    .h6 small,
    h4 .small,
    .h4 .small,
    h5 .small,
    .h5 .small,
    h6 .small,
    .h6 .small {
        font-size: 75%;
    }

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: 14px;
}

h6,
.h6 {
    font-size: 12px;
}

p {
    margin: 0 0 10px;
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
}

@media(min-width:768px) {
    .lead {
        font-size: 21px;
    }
}

small,
.small {
    font-size: 85%;
}

cite {
    font-style: normal;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-muted {
    color: #999;
}

.text-primary {
    color: #428bca;
}

a.text-primary:hover {
    color: #3071a9;
}

.text-success {
    color: #3c763d;
}

a.text-success:hover {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:hover {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:hover {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

a.text-danger:hover {
    color: #843534;
}

.bg-primary {
    color: #fff;
    background-color: #428bca;
}

a.bg-primary:hover {
    background-color: #3071a9;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover {
    background-color: #e4b9b9;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
}

    ul ul,
    ol ul,
    ul ol,
    ol ol {
        margin-bottom: 0;
    }

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
}

    .list-inline > li {
        display: inline-block;
        padding-right: 5px;
        padding-left: 5px;
    }

dl {
    margin-top: 0;
    margin-bottom: 20px;
}

dt,
dd {
    line-height: 1.42857143;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

@media(min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #999;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}

    blockquote p:last-child,
    blockquote ul:last-child,
    blockquote ol:last-child {
        margin-bottom: 0;
    }

    blockquote footer,
    blockquote small,
    blockquote .small {
        display: block;
        font-size: 80%;
        line-height: 1.42857143;
        color: #999;
    }

        blockquote footer:before,
        blockquote small:before,
        blockquote .small:before {
            content: 'â€”Â ';
        }

    .blockquote-reverse,
    blockquote.pull-right {
        padding-right: 15px;
        padding-left: 0;
        text-align: right;
        border-right: 5px solid #eee;
        border-left: 0;
    }

        .blockquote-reverse footer:before,
        blockquote.pull-right footer:before,
        .blockquote-reverse small:before,
        blockquote.pull-right small:before,
        .blockquote-reverse .small:before,
        blockquote.pull-right .small:before {
            content: '';
        }

        .blockquote-reverse footer:after,
        blockquote.pull-right footer:after,
        .blockquote-reverse small:after,
        blockquote.pull-right small:after,
        .blockquote-reverse .small:after,
        blockquote.pull-right .small:after {
            content: 'Â â€”';
        }

    blockquote:before,
    blockquote:after {
        content: "";
    }

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    white-space: nowrap;
    background-color: #f9f2f4;
    border-radius: 4px;
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        white-space: pre-wrap;
        background-color: transparent;
        border-radius: 0;
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media(min-width:768px) {
    .container {
        width: 750px;
    }
}

@media(min-width:992px) {
    .container {
        width: 970px;
    }
}

@media(min-width:1200px) {
    .container {
        width: 1200px;
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: 0;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: 0;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media(min-width:768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: 0;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: 0;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media(min-width:992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: 0;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: 0;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media(min-width:1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: 0;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: 0;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}

table {
    max-width: 100%;
    background-color: transparent;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    margin-bottom: 20px;
}

    .table > thead > tr > th,
    .table > tbody > tr > th,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > td,
    .table > tfoot > tr > td {
        padding: 8px;
        line-height: 1.42857143;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
    }

    .table > caption + thead > tr:first-child > th,
    .table > colgroup + thead > tr:first-child > th,
    .table > thead:first-child > tr:first-child > th,
    .table > caption + thead > tr:first-child > td,
    .table > colgroup + thead > tr:first-child > td,
    .table > thead:first-child > tr:first-child > td {
        border-top: 0;
    }

    .table > tbody + tbody {
        border-top: 2px solid #ddd;
    }

    .table .table {
        background-color: #fff;
    }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #ddd;
}

    .table-bordered > thead > tr > th,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > td {
        border: 1px solid #ddd;
    }

    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td {
        border-bottom-width: 2px;
    }

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    display: table-column;
    float: none;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    display: table-cell;
    float: none;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

@media(max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > thead > tr > th,
            .table-responsive > .table > tbody > tr > th,
            .table-responsive > .table > tfoot > tr > th,
            .table-responsive > .table > thead > tr > td,
            .table-responsive > .table > tbody > tr > td,
            .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > thead > tr > th:first-child,
            .table-responsive > .table-bordered > tbody > tr > th:first-child,
            .table-responsive > .table-bordered > tfoot > tr > th:first-child,
            .table-responsive > .table-bordered > thead > tr > td:first-child,
            .table-responsive > .table-bordered > tbody > tr > td:first-child,
            .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > thead > tr > th:last-child,
            .table-responsive > .table-bordered > tbody > tr > th:last-child,
            .table-responsive > .table-bordered > tfoot > tr > th:last-child,
            .table-responsive > .table-bordered > thead > tr > td:last-child,
            .table-responsive > .table-bordered > tbody > tr > td:last-child,
            .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > th,
            .table-responsive > .table-bordered > tfoot > tr:last-child > th,
            .table-responsive > .table-bordered > tbody > tr:last-child > td,
            .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 8px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    }

    .form-control::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #999;
    }

    .form-control::-webkit-input-placeholder {
        color: #999;
    }

    .form-control[disabled],
    .form-control[readonly],
    fieldset[disabled] .form-control {
        cursor: not-allowed;
        background-color: #eee;
        opacity: 1;
    }

textarea.form-control {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: none;
}

input[type="date"] {
    line-height: 34px;
}

.form-group {
    margin-bottom: 15px;
}

.radio,
.checkbox {
    display: block;
    min-height: 20px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .radio label,
    .checkbox label {
        display: inline;
        font-weight: normal;
        cursor: pointer;
    }

    .radio input[type="radio"],
    .radio-inline input[type="radio"],
    .checkbox input[type="checkbox"],
    .checkbox-inline input[type="checkbox"] {
        float: left;
        margin-left: -20px;
    }

    .radio + .radio,
    .checkbox + .checkbox {
        margin-top: -5px;
    }

.radio-inline,
.checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    vertical-align: middle;
    cursor: pointer;
}

    .radio-inline + .radio-inline,
    .checkbox-inline + .checkbox-inline {
        margin-top: 0;
        margin-left: 10px;
    }

    input[type="radio"][disabled],
    input[type="checkbox"][disabled],
    .radio[disabled],
    .radio-inline[disabled],
    .checkbox[disabled],
    .checkbox-inline[disabled],
    fieldset[disabled] input[type="radio"],
    fieldset[disabled] input[type="checkbox"],
    fieldset[disabled] .radio,
    fieldset[disabled] .radio-inline,
    fieldset[disabled] .checkbox,
    fieldset[disabled] .checkbox-inline {
        cursor: not-allowed;
    }

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-sm {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

select.input-lg {
    height: 46px;
    line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}

.has-feedback {
    position: relative;
}

    .has-feedback .form-control {
        padding-right: 42.5px;
    }

    .has-feedback .form-control-feedback {
        position: absolute;
        top: 25px;
        right: 0;
        display: block;
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
    }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-success .form-control:focus {
        border-color: #2b542c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    }

.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d;
}

.has-success .form-control-feedback {
    color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-warning .form-control:focus {
        border-color: #66512c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    }

.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
    color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #a94442;
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-error .form-control:focus {
        border-color: #843534;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    }

.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442;
}

.has-error .form-control-feedback {
    color: #a94442;
}

.form-control-static {
    margin-bottom: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

@media(min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .input-group > .form-control {
        width: 100%;
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .form-inline .radio input[type="radio"],
        .form-inline .checkbox input[type="checkbox"] {
            float: none;
            margin-left: 0;
        }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}

.form-horizontal .form-control-static {
    padding-top: 7px;
}

@media(min-width:768px) {
    .form-horizontal .control-label {
        text-align: right;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    top: 0;
    right: 15px;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
}

    .btn:focus,
    .btn:active:focus,
    .btn.active:focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .btn:hover,
    .btn:focus {
        color: #333;
        text-decoration: none;
    }

    .btn:active,
    .btn.active {
        background-image: none;
        outline: 0;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    }

    .btn.disabled,
    .btn[disabled],
    fieldset[disabled] .btn {
        pointer-events: none;
        cursor: not-allowed;
        filter: alpha(opacity=65);
        -webkit-box-shadow: none;
        box-shadow: none;
        opacity: .65;
    }

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    .btn-default:hover,
    .btn-default:focus,
    .btn-default:active,
    .btn-default.active,
    .open .dropdown-toggle.btn-default {
        color: #333;
        background-color: #ebebeb;
        border-color: #adadad;
    }

    .btn-default:active,
    .btn-default.active,
    .open .dropdown-toggle.btn-default {
        background-image: none;
    }

    .btn-default.disabled,
    .btn-default[disabled],
    fieldset[disabled] .btn-default,
    .btn-default.disabled:hover,
    .btn-default[disabled]:hover,
    fieldset[disabled] .btn-default:hover,
    .btn-default.disabled:focus,
    .btn-default[disabled]:focus,
    fieldset[disabled] .btn-default:focus,
    .btn-default.disabled:active,
    .btn-default[disabled]:active,
    fieldset[disabled] .btn-default:active,
    .btn-default.disabled.active,
    .btn-default[disabled].active,
    fieldset[disabled] .btn-default.active {
        background-color: #fff;
        border-color: #ccc;
    }

    .btn-default .badge {
        color: #fff;
        background-color: #333;
    }

.btn-primary {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active,
    .open .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: #3276b1;
        border-color: #285e8e;
    }

    .btn-primary:active,
    .btn-primary.active,
    .open .dropdown-toggle.btn-primary {
        background-image: none;
    }

    .btn-primary.disabled,
    .btn-primary[disabled],
    fieldset[disabled] .btn-primary,
    .btn-primary.disabled:hover,
    .btn-primary[disabled]:hover,
    fieldset[disabled] .btn-primary:hover,
    .btn-primary.disabled:focus,
    .btn-primary[disabled]:focus,
    fieldset[disabled] .btn-primary:focus,
    .btn-primary.disabled:active,
    .btn-primary[disabled]:active,
    fieldset[disabled] .btn-primary:active,
    .btn-primary.disabled.active,
    .btn-primary[disabled].active,
    fieldset[disabled] .btn-primary.active {
        background-color: #428bca;
        border-color: #357ebd;
    }

    .btn-primary .badge {
        color: #428bca;
        background-color: #fff;
    }

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    .btn-success:hover,
    .btn-success:focus,
    .btn-success:active,
    .btn-success.active,
    .open .dropdown-toggle.btn-success {
        color: #fff;
        background-color: #47a447;
        border-color: #398439;
    }

    .btn-success:active,
    .btn-success.active,
    .open .dropdown-toggle.btn-success {
        background-image: none;
    }

    .btn-success.disabled,
    .btn-success[disabled],
    fieldset[disabled] .btn-success,
    .btn-success.disabled:hover,
    .btn-success[disabled]:hover,
    fieldset[disabled] .btn-success:hover,
    .btn-success.disabled:focus,
    .btn-success[disabled]:focus,
    fieldset[disabled] .btn-success:focus,
    .btn-success.disabled:active,
    .btn-success[disabled]:active,
    fieldset[disabled] .btn-success:active,
    .btn-success.disabled.active,
    .btn-success[disabled].active,
    fieldset[disabled] .btn-success.active {
        background-color: #5cb85c;
        border-color: #4cae4c;
    }

    .btn-success .badge {
        color: #5cb85c;
        background-color: #fff;
    }

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    .btn-info:hover,
    .btn-info:focus,
    .btn-info:active,
    .btn-info.active,
    .open .dropdown-toggle.btn-info {
        color: #fff;
        background-color: #39b3d7;
        border-color: #269abc;
    }

    .btn-info:active,
    .btn-info.active,
    .open .dropdown-toggle.btn-info {
        background-image: none;
    }

    .btn-info.disabled,
    .btn-info[disabled],
    fieldset[disabled] .btn-info,
    .btn-info.disabled:hover,
    .btn-info[disabled]:hover,
    fieldset[disabled] .btn-info:hover,
    .btn-info.disabled:focus,
    .btn-info[disabled]:focus,
    fieldset[disabled] .btn-info:focus,
    .btn-info.disabled:active,
    .btn-info[disabled]:active,
    fieldset[disabled] .btn-info:active,
    .btn-info.disabled.active,
    .btn-info[disabled].active,
    fieldset[disabled] .btn-info.active {
        background-color: #5bc0de;
        border-color: #46b8da;
    }

    .btn-info .badge {
        color: #5bc0de;
        background-color: #fff;
    }

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .btn-warning:hover,
    .btn-warning:focus,
    .btn-warning:active,
    .btn-warning.active,
    .open .dropdown-toggle.btn-warning {
        color: #fff;
        background-color: #ed9c28;
        border-color: #d58512;
    }

    .btn-warning:active,
    .btn-warning.active,
    .open .dropdown-toggle.btn-warning {
        background-image: none;
    }

    .btn-warning.disabled,
    .btn-warning[disabled],
    fieldset[disabled] .btn-warning,
    .btn-warning.disabled:hover,
    .btn-warning[disabled]:hover,
    fieldset[disabled] .btn-warning:hover,
    .btn-warning.disabled:focus,
    .btn-warning[disabled]:focus,
    fieldset[disabled] .btn-warning:focus,
    .btn-warning.disabled:active,
    .btn-warning[disabled]:active,
    fieldset[disabled] .btn-warning:active,
    .btn-warning.disabled.active,
    .btn-warning[disabled].active,
    fieldset[disabled] .btn-warning.active {
        background-color: #f0ad4e;
        border-color: #eea236;
    }

    .btn-warning .badge {
        color: #f0ad4e;
        background-color: #fff;
    }

.btn-danger {
    color: #fff;
    background-color: #976102;
    font-size: 12px;
}

    .btn-danger:hover,
    .btn-danger:focus,
    .btn-danger:active,
    .btn-danger.active,
    .open .dropdown-toggle.btn-danger {
        color: #fff;
        background-color: #976102;
    }

    .btn-danger:active,
    .btn-danger.active,
    .open .dropdown-toggle.btn-danger {
        background-image: none;
    }

    .btn-danger.disabled,
    .btn-danger[disabled],
    fieldset[disabled] .btn-danger,
    .btn-danger.disabled:hover,
    .btn-danger[disabled]:hover,
    fieldset[disabled] .btn-danger:hover,
    .btn-danger.disabled:focus,
    .btn-danger[disabled]:focus,
    fieldset[disabled] .btn-danger:focus,
    .btn-danger.disabled:active,
    .btn-danger[disabled]:active,
    fieldset[disabled] .btn-danger:active,
    .btn-danger.disabled.active,
    .btn-danger[disabled].active,
    fieldset[disabled] .btn-danger.active {
        background-color: #d9534f;
        border-color: #d43f3a;
    }

    .btn-danger .badge {
        color: #d9534f;
        background-color: #fff;
    }

.btn-link {
    font-weight: normal;
    color: #428bca;
    cursor: pointer;
    border-radius: 0;
}

    .btn-link,
    .btn-link:active,
    .btn-link[disabled],
    fieldset[disabled] .btn-link {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-link,
        .btn-link:hover,
        .btn-link:focus,
        .btn-link:active {
            border-color: transparent;
        }

            .btn-link:hover,
            .btn-link:focus {
                color: #2a6496;
                text-decoration: underline;
                background-color: transparent;
            }

            .btn-link[disabled]:hover,
            fieldset[disabled] .btn-link:hover,
            .btn-link[disabled]:focus,
            fieldset[disabled] .btn-link:focus {
                color: #999;
                text-decoration: none;
            }

.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}

    .btn-block + .btn-block {
        margin-top: 5px;
    }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.collapse {
    display: none;
}

    .collapse.in {
        display: block;
    }

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    transition: height .35s ease;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular-.eot') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg') format('svg');
}

@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-Regular-webfont.eot');
    src: url('../fonts/OpenSans-Regular-webfont-.eot') format('embedded-opentype'), url('../fonts/OpenSans-Regular-webfont.woff') format('woff'), url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
    content: "*";
}

.glyphicon-plus:before {
    content: "+";
}

.glyphicon-euro:before {
    content: "â‚¬";
}

.glyphicon-minus:before {
    content: "âˆ’";
}

.glyphicon-cloud:before {
    content: "â˜";
}

.glyphicon-envelope:before {
    content: "âœ‰";
}

.glyphicon-pencil:before {
    content: "âœ";
}

.glyphicon-glass:before {
    content: "î€";
}

.glyphicon-music:before {
    content: "î€‚";
}

.glyphicon-search:before {
    content: "";
}

.glyphicon-heart:before {
    content: "î€…";
}

.glyphicon-star:before {
    content: "î€†";
}

.glyphicon-star-empty:before {
    content: "î€‡";
}

.glyphicon-user:before {
    content: "î€ˆ";
}

.glyphicon-film:before {
    content: "î€‰";
}

.glyphicon-th-large:before {
    content: "î€";
}

.glyphicon-th:before {
    content: "î€‘";
}

.glyphicon-th-list:before {
    content: "î€’";
}

.glyphicon-ok:before {
    content: "î€“";
}

.glyphicon-remove:before {
    content: "î€”";
}

.glyphicon-zoom-in:before {
    content: "î€•";
}

.glyphicon-zoom-out:before {
    content: "î€–";
}

.glyphicon-off:before {
    content: "î€—";
}

.glyphicon-signal:before {
    content: "î€˜";
}

.glyphicon-cog:before {
    content: "î€™";
}

.glyphicon-trash:before {
    content: "î€ ";
}

.glyphicon-home:before {
    content: "î€¡";
}

.glyphicon-file:before {
    content: "î€¢";
}

.glyphicon-time:before {
    content: "î€£";
}

.glyphicon-road:before {
    content: "î€¤";
}

.glyphicon-download-alt:before {
    content: "î€¥";
}

.glyphicon-download:before {
    content: "î€¦";
}

.glyphicon-upload:before {
    content: "î€§";
}

.glyphicon-inbox:before {
    content: "î€¨";
}

.glyphicon-play-circle:before {
    content: "î€©";
}

.glyphicon-repeat:before {
    content: "î€°";
}

.glyphicon-refresh:before {
    content: "î€±";
}

.glyphicon-list-alt:before {
    content: "î€²";
}

.glyphicon-lock:before {
    content: "î€³";
}

.glyphicon-flag:before {
    content: "î€´";
}

.glyphicon-headphones:before {
    content: "î€µ";
}

.glyphicon-volume-off:before {
    content: "î€¶";
}

.glyphicon-volume-down:before {
    content: "î€·";
}

.glyphicon-volume-up:before {
    content: "î€¸";
}

.glyphicon-qrcode:before {
    content: "î€¹";
}

.glyphicon-barcode:before {
    content: "î€";
}

.glyphicon-tag:before {
    content: "î";
}

.glyphicon-tags:before {
    content: "î‚";
}

.glyphicon-book:before {
    content: "îƒ";
}

.glyphicon-bookmark:before {
    content: "î„";
}

.glyphicon-print:before {
    content: "î…";
}

.glyphicon-camera:before {
    content: "î†";
}

.glyphicon-font:before {
    content: "î‡";
}

.glyphicon-bold:before {
    content: "îˆ";
}

.glyphicon-italic:before {
    content: "î‰";
}

.glyphicon-text-height:before {
    content: "î";
}

.glyphicon-text-width:before {
    content: "î‘";
}

.glyphicon-align-left:before {
    content: "î’";
}

.glyphicon-align-center:before {
    content: "î“";
}

.glyphicon-align-right:before {
    content: "î”";
}

.glyphicon-align-justify:before {
    content: "î•";
}

.glyphicon-list:before {
    content: "î–";
}

.glyphicon-indent-left:before {
    content: "î—";
}

.glyphicon-indent-right:before {
    content: "î˜";
}

.glyphicon-facetime-video:before {
    content: "î™";
}

.glyphicon-picture:before {
    content: "î ";
}

.glyphicon-map-marker:before {
    content: "î¢";
}

.glyphicon-adjust:before {
    content: "î£";
}

.glyphicon-tint:before {
    content: "î¤";
}

.glyphicon-edit:before {
    content: "î¥";
}

.glyphicon-share:before {
    content: "î¦";
}

.glyphicon-check:before {
    content: "î§";
}

.glyphicon-move:before {
    content: "î¨";
}

.glyphicon-step-backward:before {
    content: "î©";
}

.glyphicon-fast-backward:before {
    content: "î°";
}

.glyphicon-backward:before {
    content: "î±";
}

.glyphicon-play:before {
    content: "î²";
}

.glyphicon-pause:before {
    content: "î³";
}

.glyphicon-stop:before {
    content: "î´";
}

.glyphicon-forward:before {
    content: "îµ";
}

.glyphicon-fast-forward:before {
    content: "î¶";
}

.glyphicon-step-forward:before {
    content: "î·";
}

.glyphicon-eject:before {
    content: "î¸";
}

.glyphicon-chevron-left:before {
    content: "î¹";
}

.glyphicon-chevron-right:before {
    content: "î‚€";
}

.glyphicon-plus-sign:before {
    content: "î‚";
}

.glyphicon-minus-sign:before {
    content: "î‚‚";
}

.glyphicon-remove-sign:before {
    content: "î‚ƒ";
}

.glyphicon-ok-sign:before {
    content: "î‚„";
}

.glyphicon-question-sign:before {
    content: "î‚…";
}

.glyphicon-info-sign:before {
    content: "î‚†";
}

.glyphicon-screenshot:before {
    content: "î‚‡";
}

.glyphicon-remove-circle:before {
    content: "î‚ˆ";
}

.glyphicon-ok-circle:before {
    content: "î‚‰";
}

.glyphicon-ban-circle:before {
    content: "î‚";
}

.glyphicon-arrow-left:before {
    content: "î‚‘";
}

.glyphicon-arrow-right:before {
    content: "î‚’";
}

.glyphicon-arrow-up:before {
    content: "î‚“";
}

.glyphicon-arrow-down:before {
    content: "î‚”";
}

.glyphicon-share-alt:before {
    content: "î‚•";
}

.glyphicon-resize-full:before {
    content: "î‚–";
}

.glyphicon-resize-small:before {
    content: "î‚—";
}

.glyphicon-exclamation-sign:before {
    content: "î„";
}

.glyphicon-gift:before {
    content: "î„‚";
}

.glyphicon-leaf:before {
    content: "î„ƒ";
}

.glyphicon-fire:before {
    content: "î„„";
}

.glyphicon-eye-open:before {
    content: "î„…";
}

.glyphicon-eye-close:before {
    content: "î„†";
}

.glyphicon-warning-sign:before {
    content: "î„‡";
}

.glyphicon-plane:before {
    content: "î„ˆ";
}

.glyphicon-calendar:before {
    content: "î„‰";
}

.glyphicon-random:before {
    content: "î„";
}

.glyphicon-comment:before {
    content: "î„‘";
}

.glyphicon-magnet:before {
    content: "î„’";
}

.glyphicon-chevron-up:before {
    content: "î„“";
}

.glyphicon-chevron-down:before {
    content: "î„”";
}

.glyphicon-retweet:before {
    content: "î„•";
}

.glyphicon-shopping-cart:before {
    content: "î„–";
}

.glyphicon-folder-close:before {
    content: "î„—";
}

.glyphicon-folder-open:before {
    content: "î„˜";
}

.glyphicon-resize-vertical:before {
    content: "î„™";
}

.glyphicon-resize-horizontal:before {
    content: "î„ ";
}

.glyphicon-hdd:before {
    content: "î„¡";
}

.glyphicon-bullhorn:before {
    content: "î„¢";
}

.glyphicon-bell:before {
    content: "î„£";
}

.glyphicon-certificate:before {
    content: "î„¤";
}

.glyphicon-thumbs-up:before {
    content: "î„¥";
}

.glyphicon-thumbs-down:before {
    content: "î„¦";
}

.glyphicon-hand-right:before {
    content: "î„§";
}

.glyphicon-hand-left:before {
    content: "î„¨";
}

.glyphicon-hand-up:before {
    content: "î„©";
}

.glyphicon-hand-down:before {
    content: "î„°";
}

.glyphicon-circle-arrow-right:before {
    content: "î„±";
}

.glyphicon-circle-arrow-left:before {
    content: "î„²";
}

.glyphicon-circle-arrow-up:before {
    content: "î„³";
}

.glyphicon-circle-arrow-down:before {
    content: "î„´";
}

.glyphicon-globe:before {
    content: "î„µ";
}

.glyphicon-wrench:before {
    content: "î„¶";
}

.glyphicon-tasks:before {
    content: "î„·";
}

.glyphicon-filter:before {
    content: "î„¸";
}

.glyphicon-briefcase:before {
    content: "î„¹";
}

.glyphicon-fullscreen:before {
    content: "î…€";
}

.glyphicon-dashboard:before {
    content: "î…";
}

.glyphicon-paperclip:before {
    content: "î…‚";
}

.glyphicon-heart-empty:before {
    content: "î…ƒ";
}

.glyphicon-link:before {
    content: "î…„";
}

.glyphicon-phone:before {
    content: "î……";
}

.glyphicon-pushpin:before {
    content: "î…†";
}

.glyphicon-usd:before {
    content: "î…ˆ";
}

.glyphicon-gbp:before {
    content: "î…‰";
}

.glyphicon-sort:before {
    content: "î…";
}

.glyphicon-sort-by-alphabet:before {
    content: "î…‘";
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "î…’";
}

.glyphicon-sort-by-order:before {
    content: "î…“";
}

.glyphicon-sort-by-order-alt:before {
    content: "î…”";
}

.glyphicon-sort-by-attributes:before {
    content: "î…•";
}

.glyphicon-sort-by-attributes-alt:before {
    content: "î…–";
}

.glyphicon-unchecked:before {
    content: "î…—";
}

.glyphicon-expand:before {
    content: "î…˜";
}

.glyphicon-collapse-down:before {
    content: "î…™";
}

.glyphicon-collapse-up:before {
    content: "î… ";
}

.glyphicon-log-in:before {
    content: "î…¡";
}

.glyphicon-flash:before {
    content: "î…¢";
}

.glyphicon-log-out:before {
    content: "î…£";
}

.glyphicon-new-window:before {
    content: "î…¤";
}

.glyphicon-record:before {
    content: "î…¥";
}

.glyphicon-save:before {
    content: "î…¦";
}

.glyphicon-open:before {
    content: "î…§";
}

.glyphicon-saved:before {
    content: "î…¨";
}

.glyphicon-import:before {
    content: "î…©";
}

.glyphicon-export:before {
    content: "î…°";
}

.glyphicon-send:before {
    content: "î…±";
}

.glyphicon-floppy-disk:before {
    content: "î…²";
}

.glyphicon-floppy-saved:before {
    content: "î…³";
}

.glyphicon-floppy-remove:before {
    content: "î…´";
}

.glyphicon-floppy-save:before {
    content: "î…µ";
}

.glyphicon-floppy-open:before {
    content: "î…¶";
}

.glyphicon-credit-card:before {
    content: "î…·";
}

.glyphicon-transfer:before {
    content: "î…¸";
}

.glyphicon-cutlery:before {
    content: "î…¹";
}

.glyphicon-header:before {
    content: "î†€";
}

.glyphicon-compressed:before {
    content: "î†";
}

.glyphicon-earphone:before {
    content: "î†‚";
}

.glyphicon-phone-alt:before {
    content: "î†ƒ";
}

.glyphicon-tower:before {
    content: "î†„";
}

.glyphicon-stats:before {
    content: "î†…";
}

.glyphicon-sd-video:before {
    content: "î††";
}

.glyphicon-hd-video:before {
    content: "î†‡";
}

.glyphicon-subtitles:before {
    content: "î†ˆ";
}

.glyphicon-sound-stereo:before {
    content: "î†‰";
}

.glyphicon-sound-dolby:before {
    content: "î†";
}

.glyphicon-sound-5-1:before {
    content: "î†‘";
}

.glyphicon-sound-6-1:before {
    content: "î†’";
}

.glyphicon-sound-7-1:before {
    content: "î†“";
}

.glyphicon-copyright-mark:before {
    content: "î†”";
}

.glyphicon-registration-mark:before {
    content: "î†•";
}

.glyphicon-cloud-download:before {
    content: "î†—";
}

.glyphicon-cloud-upload:before {
    content: "î†˜";
}

.glyphicon-tree-conifer:before {
    content: "î†™";
}

.glyphicon-tree-deciduous:before {
    content: "îˆ€";
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
}

    .dropdown-menu.pull-right {
        right: 0;
        left: auto;
    }

    .dropdown-menu .divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    .dropdown-menu > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.42857143;
        color: #333;
        white-space: nowrap;
    }

        .dropdown-menu > li > a:hover,
        .dropdown-menu > li > a:focus {
            color: #262626;
            text-decoration: none;
        }

    .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:hover,
    .dropdown-menu > .active > a:focus {
        color: #fff;
        text-decoration: none;
        background-color: #428bca;
        outline: 0;
    }

    .dropdown-menu > .disabled > a,
    .dropdown-menu > .disabled > a:hover,
    .dropdown-menu > .disabled > a:focus {
        color: #999;
    }

        .dropdown-menu > .disabled > a:hover,
        .dropdown-menu > .disabled > a:focus {
            text-decoration: none;
            cursor: not-allowed;
            background-color: transparent;
            background-image: none;
            filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
        }

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.dropdown-menu-left {
    right: auto;
    left: 0;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #999;
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px solid;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}

@media(min-width:768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0;
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
}

    .btn-group > .btn,
    .btn-group-vertical > .btn {
        position: relative;
        float: left;
    }

        .btn-group > .btn:hover,
        .btn-group-vertical > .btn:hover,
        .btn-group > .btn:focus,
        .btn-group-vertical > .btn:focus,
        .btn-group > .btn:active,
        .btn-group-vertical > .btn:active,
        .btn-group > .btn.active,
        .btn-group-vertical > .btn.active {
            z-index: 2;
        }

        .btn-group > .btn:focus,
        .btn-group-vertical > .btn:focus {
            outline: none;
        }

    .btn-group .btn + .btn,
    .btn-group .btn + .btn-group,
    .btn-group .btn-group + .btn,
    .btn-group .btn-group + .btn-group {
        margin-left: -1px;
    }

.btn-toolbar {
    margin-left: -5px;
}

    .btn-toolbar .btn-group,
    .btn-toolbar .input-group {
        float: left;
    }

    .btn-toolbar > .btn,
    .btn-toolbar > .btn-group,
    .btn-toolbar > .input-group {
        margin-left: 5px;
    }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
    float: left;
}

    .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group > .btn-group:first-child > .btn:last-child,
    .btn-group > .btn-group:first-child > .dropdown-toggle {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .btn-group > .btn-group:last-child > .btn:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px;
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn .caret {
    margin-left: 0;
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

    .btn-group-vertical > .btn-group > .btn {
        float: none;
    }

    .btn-group-vertical > .btn + .btn,
    .btn-group-vertical > .btn + .btn-group,
    .btn-group-vertical > .btn-group + .btn,
    .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0;
    }

    .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .btn-group-vertical > .btn:first-child:not(:last-child) {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn:last-child:not(:first-child) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 4px;
    }

    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

    .btn-group-justified > .btn,
    .btn-group-justified > .btn-group {
        display: table-cell;
        float: none;
        width: 1%;
    }

        .btn-group-justified > .btn-group .btn {
            width: 100%;
        }

[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
    display: none;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

    .input-group[class*="col-"] {
        float: none;
        padding-right: 0;
        padding-left: 0;
    }

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px;
}

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px;
}

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}

    .input-group-addon:not(:first-child):not(:last-child),
    .input-group-btn:not(:first-child):not(:last-child),
    .input-group .form-control:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .input-group-addon.input-sm {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 3px;
    }

    .input-group-addon.input-lg {
        padding: 10px 16px;
        font-size: 18px;
        border-radius: 6px;
    }

    .input-group-addon input[type="radio"],
    .input-group-addon input[type="checkbox"] {
        margin-top: 0;
    }

    .input-group .form-control:first-child,
    .input-group-addon:first-child,
    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group > .btn,
    .input-group-btn:first-child > .dropdown-toggle,
    .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
    .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input-group-addon:first-child {
        border-right: 0;
    }

    .input-group .form-control:last-child,
    .input-group-addon:last-child,
    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group > .btn,
    .input-group-btn:last-child > .dropdown-toggle,
    .input-group-btn:first-child > .btn:not(:first-child),
    .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .input-group-addon:last-child {
        border-left: 0;
    }

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

    .input-group-btn > .btn {
        position: relative;
    }

        .input-group-btn > .btn + .btn {
            margin-left: -1px;
        }

        .input-group-btn > .btn:hover,
        .input-group-btn > .btn:focus,
        .input-group-btn > .btn:active {
            z-index: 2;
        }

    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group {
        margin-right: -1px;
    }

    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group {
        margin-left: -1px;
    }

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .nav > li {
        position: relative;
        display: block;
    }

        .nav > li > a {
            position: relative;
            display: block;
            padding: 10px 15px;
        }

            .nav > li > a:hover,
            .nav > li > a:focus {
                text-decoration: none;
            }

        .nav > li.disabled > a {
            color: #999;
        }

            .nav > li.disabled > a:hover,
            .nav > li.disabled > a:focus {
                color: #999;
                text-decoration: none;
                cursor: not-allowed;
            }

    .nav .nav-divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
    }

    .nav > li > a > img {
        max-width: none;
    }

.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

    .nav-tabs > li > a {
        margin-right: 2px;
        line-height: 1.42857143;
        border-radius: 5px;
    }

        .nav-tabs > li > a:hover {
            border-color: #eee #eee #ddd;
        }

    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:hover,
    .nav-tabs > li.active > a:focus {
        color: #fff;
        cursor: default;
    }

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
}

    .nav-tabs.nav-justified > li {
        float: none;
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 5px;
            text-align: center;
        }

    .nav-tabs.nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

@media(min-width:768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd;
}

@media(min-width:768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.nav-pills > li {
    float: left;
}

    .nav-pills > li > a {
        border-radius: 4px;
    }

    .nav-pills > li + li {
        margin-left: 2px;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:hover,
    .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #428bca;
    }

.nav-stacked > li {
    float: none;
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

.nav-justified {
    width: 100%;
}

    .nav-justified > li {
        float: none;
    }

        .nav-justified > li > a {
            margin-bottom: 5px;
            text-align: center;
        }

    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

@media(min-width:768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs-justified {
    border-bottom: 0;
}

    .nav-tabs-justified > li > a {
        margin-right: 0;
        border-radius: 4px;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border: 1px solid #ddd;
    }

@media(min-width:768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

@media(min-width:768px) {
    .navbar {
        border-radius: 4px;
    }
}

@media(min-width:768px) {
    .navbar-header {
        float: left;
    }
}

.navbar-collapse {
    max-height: 340px;
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

    .navbar-collapse.in {
        overflow-y: auto;
    }

@media(min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }

        .navbar-collapse.collapse {
            display: block !important;
            height: auto !important;
            padding-bottom: 0;
            overflow: visible !important;
        }

        .navbar-collapse.in {
            overflow-y: visible;
        }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}

@media(min-width:768px) {
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media(min-width:768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media(min-width:768px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

    .navbar-brand:hover,
    .navbar-brand:focus {
        text-decoration: none;
    }

@media(min-width:768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 0 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .navbar-toggle:focus {
        outline: none;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }

        .navbar-toggle .icon-bar + .icon-bar {
            margin-top: 4px;
        }

@media(min-width:768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: 7.5px -15px;
}

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 20px;
    }

@media(max-width:767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

        .navbar-nav .open .dropdown-menu > li > a,
        .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }

        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 20px;
        }

            .navbar-nav .open .dropdown-menu > li > a:hover,
            .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none;
            }
}

@media(min-width:768px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }

        .navbar-nav > li {
            float: left;
        }

            .navbar-nav > li > a {
                padding-top: 15px;
                padding-bottom: 15px;
            }

        .navbar-nav.navbar-right:last-child {
            margin-right: -15px;
        }
}

@media(min-width:768px) {
    .navbar-left {
        float: left !important;
    }

    .navbar-right {
        float: right !important;
    }
}

.navbar-form {
    padding: 10px 15px;
    margin-top: 8px;
    margin-right: -15px;
    margin-bottom: 8px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}

@media(min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .navbar-form .input-group > .form-control {
        width: 100%;
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .navbar-form .radio input[type="radio"],
        .navbar-form .checkbox input[type="checkbox"] {
            float: none;
            margin-left: 0;
        }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media(max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }
}

@media(min-width:768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-form.navbar-right:last-child {
            margin-right: -15px;
        }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}

    .navbar-btn.btn-sm {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-btn.btn-xs {
        margin-top: 14px;
        margin-bottom: 14px;
    }

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media(min-width:768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px;
    }

        .navbar-text.navbar-right:last-child {
            margin-right: 0;
        }
}

.navbar-default {
    border-color: #e7e7e7;
}

    .navbar-default .navbar-brand {
        color: #777;
    }

        .navbar-default .navbar-brand:hover,
        .navbar-default .navbar-brand:focus {
            color: #5e5e5e;
        }

    .navbar-default .navbar-text {
        color: #777;
    }

    .navbar-default .navbar-nav > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav > li > a:hover,
        .navbar-default .navbar-nav > li > a:focus {
            color: #333;
        }

    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus {
        color: #555;
    }

    .navbar-default .navbar-nav > .disabled > a,
    .navbar-default .navbar-nav > .disabled > a:hover,
    .navbar-default .navbar-nav > .disabled > a:focus {
        color: #ccc;
    }

    .navbar-default .navbar-toggle {
        border-color: #ddd;
    }

        .navbar-default .navbar-toggle .icon-bar {
            background-color: #fff;
        }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border-color: #e7e7e7;
    }

    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus {
        color: #555;
    }

@media(max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
        .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #333;
        }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
    }
}

.navbar-default .navbar-link {
    color: #777;
}

    .navbar-default .navbar-link:hover {
        color: #333;
    }

.navbar-inverse {
    border-color: #080808;
}

    .navbar-inverse .navbar-brand {
        color: #999;
    }

        .navbar-inverse .navbar-brand:hover,
        .navbar-inverse .navbar-brand:focus {
            color: #fff;
        }

    .navbar-inverse .navbar-text {
        color: #999;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #999;
    }

        .navbar-inverse .navbar-nav > li > a:hover,
        .navbar-inverse .navbar-nav > li > a:focus {
            color: #fff;
        }

    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus {
        color: #fff;
    }

    .navbar-inverse .navbar-nav > .disabled > a,
    .navbar-inverse .navbar-nav > .disabled > a:hover,
    .navbar-inverse .navbar-nav > .disabled > a:focus {
        color: #444;
    }

    .navbar-inverse .navbar-toggle {
        border-color: #333;
    }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: #101010;
    }

    .navbar-inverse .navbar-nav > .open > a,
    .navbar-inverse .navbar-nav > .open > a:hover,
    .navbar-inverse .navbar-nav > .open > a:focus {
        color: #fff;
    }

@media(max-width:767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #999;
    }

        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #fff;
        }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
    }
}

.navbar-inverse .navbar-link {
    color: #999;
}

    .navbar-inverse .navbar-link:hover {
        color: #fff;
    }

.breadcrumb {
    list-style: none;
}

    .breadcrumb > li {
        display: inline-block;
    }

        .breadcrumb > li + li:before {
            color: #ccc;
            content: "/Â ";
        }

    .breadcrumb > .active {
        color: #999;
    }

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #428bca;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            color: #2a6496;
            background-color: #eee;
            border-color: #ddd;
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 2;
        color: #fff;
        cursor: default;
        background-color: #428bca;
        border-color: #428bca;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #999;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

    .pager li {
        display: inline;
    }

        .pager li > a,
        .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
        }

            .pager li > a:hover,
            .pager li > a:focus {
                text-decoration: none;
                background-color: #eee;
            }

    .pager .next > a,
    .pager .next > span {
        float: right;
    }

    .pager .previous > a,
    .pager .previous > span {
        float: left;
    }

    .pager .disabled > a,
    .pager .disabled > a:hover,
    .pager .disabled > a:focus,
    .pager .disabled > span {
        color: #999;
        cursor: not-allowed;
        background-color: #fff;
    }

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

    .label[href]:hover,
    .label[href]:focus {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }

    .label:empty {
        display: none;
    }

.btn .label {
    position: relative;
    top: -1px;
}

.label-default {
    background-color: #999;
}

    .label-default[href]:hover,
    .label-default[href]:focus {
        background-color: gray;
    }

.label-primary {
    background-color: #428bca;
}

    .label-primary[href]:hover,
    .label-primary[href]:focus {
        background-color: #3071a9;
    }

.label-success {
    background-color: #5cb85c;
}

    .label-success[href]:hover,
    .label-success[href]:focus {
        background-color: #449d44;
    }

.label-info {
    background-color: #5bc0de;
}

    .label-info[href]:hover,
    .label-info[href]:focus {
        background-color: #31b0d5;
    }

.label-warning {
    background-color: #f0ad4e;
}

    .label-warning[href]:hover,
    .label-warning[href]:focus {
        background-color: #ec971f;
    }

.label-danger {
    background-color: #d9534f;
}

    .label-danger[href]:hover,
    .label-danger[href]:focus {
        background-color: #c9302c;
    }

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #999;
    border-radius: 10px;
}

    .badge:empty {
        display: none;
    }

.btn .badge {
    position: relative;
    top: -1px;
}

.btn-xs .badge {
    top: 0;
    padding: 1px 5px;
}

a.badge:hover,
a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #428bca;
    background-color: #fff;
}

.nav-pills > li > a > .badge {
    margin-left: 3px;
}

.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee;
}

    .jumbotron h1,
    .jumbotron .h1 {
        color: inherit;
    }

    .jumbotron p {
        margin-bottom: 15px;
        font-size: 21px;
        font-weight: 200;
    }

.container .jumbotron {
    border-radius: 6px;
}

.jumbotron .container {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .container .jumbotron {
        padding-right: 60px;
        padding-left: 60px;
    }

    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px;
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    .thumbnail > img,
    .thumbnail a > img {
        margin-right: auto;
        margin-left: auto;
    }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #428bca;
}

.thumbnail .caption {
    padding: 9px;
    color: #333;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        font-weight: bold;
    }

    .alert > p,
    .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissable {
    padding-right: 35px;
}

    .alert-dismissable .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    .alert-danger .alert-link {
        color: #843534;
    }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #428bca;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    transition: width .6s ease;
}

.progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
    background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
    background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
    background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
    background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.media,
.media-body {
    overflow: hidden;
    zoom: 1;
}

    .media,
    .media .media {
        margin-top: 15px;
    }

        .media:first-child {
            margin-top: 0;
        }

.media-object {
    display: block;
}

.media-heading {
    margin: 0 0 5px;
}

.media > .pull-left {
    margin-right: 10px;
}

.media > .pull-right {
    margin-left: 10px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

    .list-group-item:first-child {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .list-group-item:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .list-group-item > .badge {
        float: right;
    }

        .list-group-item > .badge + .badge {
            margin-right: 5px;
        }

a.list-group-item {
    color: #555;
}

    a.list-group-item .list-group-item-heading {
        color: #333;
    }

    a.list-group-item:hover,
    a.list-group-item:focus {
        text-decoration: none;
        background-color: #f5f5f5;
    }

    a.list-group-item.active,
    a.list-group-item.active:hover,
    a.list-group-item.active:focus {
        z-index: 2;
        color: #fff;
        background-color: #428bca;
        border-color: #428bca;
    }

        a.list-group-item.active .list-group-item-heading,
        a.list-group-item.active:hover .list-group-item-heading,
        a.list-group-item.active:focus .list-group-item-heading {
            color: inherit;
        }

        a.list-group-item.active .list-group-item-text,
        a.list-group-item.active:hover .list-group-item-text,
        a.list-group-item.active:focus .list-group-item-text {
            color: #e1edf7;
        }

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}

a.list-group-item-success {
    color: #3c763d;
}

    a.list-group-item-success .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-success:hover,
    a.list-group-item-success:focus {
        color: #3c763d;
        background-color: #d0e9c6;
    }

    a.list-group-item-success.active,
    a.list-group-item-success.active:hover,
    a.list-group-item-success.active:focus {
        color: #fff;
        background-color: #3c763d;
        border-color: #3c763d;
    }

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

a.list-group-item-info {
    color: #31708f;
}

    a.list-group-item-info .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-info:hover,
    a.list-group-item-info:focus {
        color: #31708f;
        background-color: #c4e3f3;
    }

    a.list-group-item-info.active,
    a.list-group-item-info.active:hover,
    a.list-group-item-info.active:focus {
        color: #fff;
        background-color: #31708f;
        border-color: #31708f;
    }

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

a.list-group-item-warning {
    color: #8a6d3b;
}

    a.list-group-item-warning .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-warning:hover,
    a.list-group-item-warning:focus {
        color: #8a6d3b;
        background-color: #faf2cc;
    }

    a.list-group-item-warning.active,
    a.list-group-item-warning.active:hover,
    a.list-group-item-warning.active:focus {
        color: #fff;
        background-color: #8a6d3b;
        border-color: #8a6d3b;
    }

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede;
}

a.list-group-item-danger {
    color: #a94442;
}

    a.list-group-item-danger .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-danger:hover,
    a.list-group-item-danger:focus {
        color: #a94442;
        background-color: #ebcccc;
    }

    a.list-group-item-danger.active,
    a.list-group-item-danger.active:hover,
    a.list-group-item-danger.active:focus {
        color: #fff;
        background-color: #a94442;
        border-color: #a94442;
    }

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.panel-body {
    padding: 15px;
}

.panel-heading {
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

    .panel-heading > .dropdown .dropdown-toggle {
        color: inherit;
    }

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

    .panel-title > a {
        color: inherit;
    }

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel > .list-group {
    margin-bottom: 0;
}

    .panel > .list-group .list-group-item {
        border-width: 1px 0;
        border-radius: 0;
    }

    .panel > .list-group:first-child .list-group-item:first-child {
        border-top: 0;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

    .panel > .list-group:last-child .list-group-item:last-child {
        border-bottom: 0;
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table {
    margin-bottom: 0;
}

    .panel > .table:first-child,
    .panel > .table-responsive:first-child > .table:first-child {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

        .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
        .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
        .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
        .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
        .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
        .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
        .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
        .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
            border-top-left-radius: 3px;
        }

        .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
        .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
        .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
        .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
        .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
        .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
        .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
        .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
            border-top-right-radius: 3px;
        }

    .panel > .table:last-child,
    .panel > .table-responsive:last-child > .table:last-child {
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

        .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
        .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
        .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
        .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
        .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
        .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
        .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
        .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
            border-bottom-left-radius: 3px;
        }

        .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
        .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
        .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
        .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
        .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
        .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
        .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
        .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
            border-bottom-right-radius: 3px;
        }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
    border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}

    .panel > .table-bordered > thead > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
    .panel > .table-bordered > tbody > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .panel > .table-bordered > tfoot > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .panel > .table-bordered > thead > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
    .panel > .table-bordered > tbody > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .panel > .table-bordered > tfoot > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    .panel > .table-bordered > thead > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
    .panel > .table-bordered > tbody > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .panel > .table-bordered > tfoot > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .panel > .table-bordered > thead > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
    .panel > .table-bordered > tbody > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .panel > .table-bordered > tfoot > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    .panel > .table-bordered > thead > tr:first-child > td,
    .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
    .panel > .table-bordered > tbody > tr:first-child > td,
    .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
    .panel > .table-bordered > thead > tr:first-child > th,
    .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
    .panel > .table-bordered > tbody > tr:first-child > th,
    .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
        border-bottom: 0;
    }

    .panel > .table-bordered > tbody > tr:last-child > td,
    .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .panel > .table-bordered > tfoot > tr:last-child > td,
    .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    .panel > .table-bordered > tbody > tr:last-child > th,
    .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .panel > .table-bordered > tfoot > tr:last-child > th,
    .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0;
    }

.panel > .table-responsive {
    margin-bottom: 0;
    border: 0;
}

.panel-group {
    margin-bottom: 20px;
}

    .panel-group .panel {
        margin-bottom: 0;
        overflow: hidden;
        border-radius: 4px;
    }

        .panel-group .panel + .panel {
            margin-top: 5px;
        }

    .panel-group .panel-heading {
        border-bottom: 0;
    }

        .panel-group .panel-heading + .panel-collapse .panel-body {
            border-top: 1px solid #ddd;
        }

    .panel-group .panel-footer {
        border-top: 0;
    }

        .panel-group .panel-footer + .panel-collapse .panel-body {
            border-bottom: 1px solid #ddd;
        }

.panel-default {
    border-color: #ddd;
}

    .panel-default > .panel-heading {
        color: #333;
        background-color: #303030;
    }

        .panel-default > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #ddd;
        }

    .panel-default > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #ddd;
    }

.panel-primary {
    border-color: #428bca;
}

    .panel-primary > .panel-heading {
        color: #fff;
        background-color: #428bca;
        border-color: #428bca;
    }

        .panel-primary > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #428bca;
        }

    .panel-primary > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #428bca;
    }

.panel-success {
    border-color: #d6e9c6;
}

    .panel-success > .panel-heading {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6;
    }

        .panel-success > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #d6e9c6;
        }

    .panel-success > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #d6e9c6;
    }

.panel-info {
    border-color: #bce8f1;
}

    .panel-info > .panel-heading {
        color: #31708f;
        background-color: #d9edf7;
        border-color: #bce8f1;
    }

        .panel-info > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #bce8f1;
        }

    .panel-info > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #bce8f1;
    }

.panel-warning {
    border-color: #faebcc;
}

    .panel-warning > .panel-heading {
        color: #8a6d3b;
        background-color: #fcf8e3;
        border-color: #faebcc;
    }

        .panel-warning > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #faebcc;
        }

    .panel-warning > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #faebcc;
    }

.panel-danger {
    border-color: #ebccd1;
}

    .panel-danger > .panel-heading {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
    }

        .panel-danger > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #ebccd1;
        }

    .panel-danger > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #ebccd1;
    }

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

    .well blockquote {
        border-color: #ddd;
        border-color: rgba(0, 0, 0, .15);
    }

.well-lg {
    padding: 24px;
    border-radius: 6px;
}

.well-sm {
    padding: 9px;
    border-radius: 3px;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: .5;
    }

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -moz-transition: -moz-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        transform: translate(0, -25%);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: none;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: .5;
    }

.modal-header {
    min-height: 16.42857143px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 20px;
}

.modal-footer {
    padding: 19px 20px 20px;
    margin-top: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

@media(min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media(min-width:992px) {
    .modal-lg {
        width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    font-size: 12px;
    line-height: 1.4;
    visibility: visible;
    filter: alpha(opacity=0);
    opacity: 0;
}

    .tooltip.in {
        filter: alpha(opacity=90);
        opacity: .9;
    }

    .tooltip.top {
        padding: 5px 0;
        margin-top: -3px;
    }

    .tooltip.right {
        padding: 0 5px;
        margin-left: 3px;
    }

    .tooltip.bottom {
        padding: 5px 0;
        margin-top: 3px;
    }

    .tooltip.left {
        padding: 0 5px;
        margin-left: -3px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 6px 13px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #333;
    border-radius: 5px;
    font-size: 12px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #333;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
    right: 5px;
    bottom: 0;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

    .popover.top {
        margin-top: -10px;
    }

    .popover.right {
        margin-left: 10px;
    }

    .popover.bottom {
        margin-top: 10px;
    }

    .popover.left {
        margin-left: -10px;
    }

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.popover-content {
    padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow {
    border-width: 11px;
}

    .popover > .arrow:after {
        content: "";
        border-width: 10px;
    }

.popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0;
}

    .popover.top > .arrow:after {
        bottom: 1px;
        margin-left: -10px;
        content: " ";
        border-top-color: #fff;
        border-bottom-width: 0;
    }

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0;
}

    .popover.right > .arrow:after {
        bottom: -10px;
        left: 1px;
        content: " ";
        border-right-color: #fff;
        border-left-width: 0;
    }

.popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
}

    .popover.bottom > .arrow:after {
        top: 1px;
        margin-left: -10px;
        content: " ";
        border-top-width: 0;
        border-bottom-color: #fff;
    }

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25);
}

    .popover.left > .arrow:after {
        right: 1px;
        bottom: -10px;
        content: " ";
        border-right-width: 0;
        border-left-color: #fff;
    }

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .carousel-inner > .item {
        position: relative;
        display: none;
        -webkit-transition: .6s ease-in-out left;
        transition: .6s ease-in-out left;
    }

        .carousel-inner > .item > img,
        .carousel-inner > .item > a > img {
            line-height: 1;
        }

    .carousel-inner > .active,
    .carousel-inner > .next,
    .carousel-inner > .prev {
        display: block;
    }

    .carousel-inner > .active {
        left: 0;
    }

    .carousel-inner > .next,
    .carousel-inner > .prev {
        position: absolute;
        top: 0;
        width: 100%;
    }

    .carousel-inner > .next {
        left: 100%;
    }

    .carousel-inner > .prev {
        left: -100%;
    }

        .carousel-inner > .next.left,
        .carousel-inner > .prev.right {
            left: 0;
        }

    .carousel-inner > .active.left {
        left: -100%;
    }

    .carousel-inner > .active.right {
        left: 100%;
    }

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    filter: alpha(opacity=50);
    opacity: .5;
    text-shadow: none;
}

    .carousel-control.left {
        background-repeat: repeat-x;
        background-image: linear-gradient(to right, transparent 0%, transparent 100%);
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background-repeat: repeat-x;
        background-image: linear-gradient(to right, transparent 0%, transparent 100%);
    }

    .carousel-control:hover,
    .carousel-control:focus {
        color: #fff;
        text-decoration: none;
        filter: alpha(opacity=90);
        outline: none;
        opacity: .9;
    }

    .carousel-control .icon-prev,
    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
    }

    .carousel-control .icon-prev,
    .carousel-control .glyphicon-chevron-left {
        left: 50%;
    }

    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-right {
        right: 50%;
    }

    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 20px;
        height: 20px;
        margin-top: -10px;
        margin-left: -10px;
        font-family: serif;
    }

        .carousel-control .icon-prev:before {
            content: 'â€¹';
        }

        .carousel-control .icon-next:before {
            content: 'â€º';
        }

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

    .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 10px;
    }

    .carousel-indicators .active {
        width: 12px;
        height: 12px;
        margin: 0;
        background-color: #fff;
    }

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

    .carousel-caption .btn {
        text-shadow: none;
    }

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        margin-left: -15px;
        font-size: 30px;
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

@media(max-width:767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media(min-width:768px)and (max-width:991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}

@media(min-width:992px)and (max-width:1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}

@media(min-width:1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}

@media(max-width:767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media(min-width:768px)and (max-width:991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media(min-width:992px)and (max-width:1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media(min-width:1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

#box-block .box-border {
    border: 1px solid #8f8f8f;
    -webkit-transition: border-color .2s ease 0s;
    -moz-transition: border-color .2s ease 0s;
    -ms-transition: border-color .2s ease 0s;
    -o-transition: border-color .2s ease 0s;
    transition: border-color .2s ease 0s;
}

    #box-block .box-border:hover {
        border-color: #8f8f8f;
    }

.box-block {
    overflow: hidden;
    font-size: 13px;
}

    .box-block .meta {
        position: relative;
    }

    .box-block .description,
    .box-block h3 {
        overflow: hidden;
        line-height: 18px;
    }

@media only screen and (max-width: 479px) {
    .box-block .description,
    .box-block h3 {
        max-height: none !important;
        height: auto !important;
    }
}

.box-block figure,
.box-block h3,
.box-block .id,
.box-block .date {
    display: block;
    margin-bottom: 5px;
}

.box-block .date {
    font-size: 11px;
}

.box-block h3 {
    font-size: 13px;
    text-transform: none;
    margin-bottom: 7px;
}

    .box-block h3 a {
        color: #0071bb;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 14px;
    }

.box-block .link {
    text-align: left;
}

.box-block .price-old {
    text-decoration: line-through;
}

.box-block figure {
    display: block;
    margin-bottom: 0;
    position: relative;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .box-block figure {
        width: 48%;
        float: left;
        margin: 0 15px 0 0;
        z-index: 9;
    }
}

@media only screen and (max-width: 479px) {
    .box-block figure {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        float: none !important;
        margin: 0;
    }

        .box-block figure img {
            height: auto !important;
            max-height: none !important;
        }
}

.box-block .price-old {
    color: #727272;
    font-size: 12px;
}

.box-block .price {
    display: block;
    color: #515151;
    font-size: 14px;
}

.box-block .over-lay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(images/overlay2.png);
    z-index: 9;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

@media only screen and (max-width: 991px) {
    .box-block .over-lay {
        display: none;
    }
}

.box-block .cart-zoom,
.box-block .product-zoom,
.box-block .product-detail {
    top: -10%;
    right: 45%;
    line-height: 8px;
    position: absolute;
    display: inline-block;
    text-align: center;
    z-index: 10;
    color: #fff;
    font-size: 0;
    background: rgba(0, 0, 0, .44);
    width: 28px;
    height: 28px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .6s ease 0s;
    -moz-transition: all .6s ease 0s;
    -ms-transition: all .6s ease 0s;
    -o-transition: all .6s ease 0s;
    transition: all .6s ease 0s;
}

.box-block .cart-zoom {
    border-radius: 0;
    width: 48px;
    height: 48px;
}

.box-block .product-detail {
    left: 150%;
    right: inherit;
}

.box-block:hover .cart-zoom,
.box-block:hover .product-detail,
.box-block:hover .product-zoom {
    line-height: 28px;
    font-size: 14px;
    top: 43%;
    opacity: 1;
    filter: alpha(opacity=100);
    width: 28px;
    height: 28px;
}

.box-block:hover .cart-zoom {
    width: 48px;
    height: 48px;
}

.box-block:hover .product-detail {
    left: 51%;
    right: inherit;
}

.box-block:hover .over-lay {
    opacity: 1;
    filter: alpha(opacity=100);
}

.box-block:hover .is-hover {
    z-index: 99;
    position: relative;
}

@media only screen and (max-width: 479px) {
    .box-block {
        text-align: left;
    }

        .box-block .price-all {
            display: inline-block;
        }
}

#mainmenutop .navbar-toggle {
    float: left;
    color: #fff;
}

#menu-offcanvas .menu-offcanvas-inner {
    font-weight: bold;
    background: url(images/mobile-nav.png);
    background-color: #fff;
}

#menu-offcanvas .dropdown {
    width: 100%;
    display: inline-block;
    position: inherit;
    list-style: inside;
}

    #menu-offcanvas .dropdown .dropdown-menu {
        border: medium none;
        display: block;
        float: none;
        position: inherit;
        width: 100% !important;
        min-width: 100%;
        background: none;
        padding-right: 20px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }

        #menu-offcanvas .dropdown .dropdown-menu .dropdown-menu-inner {
            padding: 0 0 0 23px;
        }

    #menu-offcanvas .dropdown > .dropdown-menu {
        color: #000;
        padding-left: 16px;
        text-transform: capitalize;
        font-size: 13px;
        font-weight: normal;
    }

        #menu-offcanvas .dropdown > .dropdown-menu a {
            padding-left: 0;
            color: #ddd;
            padding: 3px 0;
            display: block;
        }

.offcanvas-menu ul.megamenu > li > a {
    border-bottom: 1px solid #222;
    border-top: 1px solid #535353;
}

.offcanvas-menu ul.megamenu > li > i {
    float: left;
    font-size: 18px;
    color: #fff;
    padding: 15px 0 0 10px;
    margin-right: 12px;
    color: #ddd;
}

.order-1 .fa-home:before {
    content: "";
}

.order-2 .fa-home:before {
    content: "";
}

.order-3 .fa-home:before {
    content: "";
}

.order-4 .fa-home:before {
    content: "";
}

.order-5 .fa-home:before {
    content: "";
}

.order-6 .fa-home:before {
    content: "";
}

.order-7 .fa-home:before {
    content: "";
}

html,
body,
.offcanvas-container,
.offcanvas-pusher,
.offcanvas-content {
    min-height: 100%;
}

.offcanvas-content {
    overflow-y: scroll;
    background: #f3efe0;
}

.offcanvas-pusher {
    left: 0;
    z-index: 99;
    height: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
}

    .offcanvas-pusher:after {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        background: rgba(0, 0, 0, .2);
        -webkit-transition: opacity .5s, width .1s .5s, height .1s .5s;
        transition: opacity .5s, width .1s .5s, height .1s .5s;
        z-index: 9999;
        width: 0;
        height: 0;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.offcanvas-menu-open .offcanvas-pusher::after {
    opacity: 1;
    filter: alpha(opacity=100);
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}

.offcanvas-menu {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999;
    visibility: hidden;
    width: 300px;
    height: 100%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

    .offcanvas-menu:after {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        background: rgba(0, 0, 0, .2);
        width: 100%;
        height: 100%;
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transition: opacity .5s;
        -moz-transition: opacity .5s;
        -ms-transition: opacity .5s;
        -o-transition: opacity .5s;
        transition: opacity .5s;
    }

.offcanvas-menu-open .offcanvas-menu::after {
    -webkit-transition: opacity .5s, width .1s .5s, height .1s .5s;
    transition: opacity .5s, width .1s .5s, height .1s .5s;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 0;
    height: 0;
}

.offcanvas-menu ul {
    margin: 0;
    padding: 0;
    lioffcanvas-style: none;
}

    .offcanvas-menu ul.megamenu {
        padding: 40px 0 0 0;
    }

.offcanvas-menu h2 {
    margin: 0;
    padding: 1em;
    color: rgba(0, 0, 0, .4);
    text-shadow: 0 0 1px rgba(0, 0, 0, .1);
    font-weight: 300;
    font-size: 2em;
}

.offcanvas-menu ul.megamenu > li > a {
    display: block;
    padding: 1em 1em 1em 0;
    outline: none;
    color: #ddd;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: normal;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.offcanvas-effect-1.offcanvas-menu {
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.offcanvas-effect-1.offcanvas-menu-open .offcanvas-effect-1.offcanvas-menu {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.offcanvas-effect-1.offcanvas-menu::after {
    display: none;
}

.offcanvas-effect-2.offcanvas-menu-open .offcanvas-pusher {
    -webkit-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0);
}

.offcanvas-effect-2.offcanvas-menu {
    z-index: 1;
}

.offcanvas-effect-2.offcanvas-menu-open .offcanvas-effect-2.offcanvas-menu {
    visibility: visible;
    -webkit-transition: -webkit-transform .5s;
    -moz-transition: -moz-transform .5s;
    -o-transition: -o-transform .5s;
    transition: transform .5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.offcanvas-effect-3.offcanvas-menu-open .offcanvas-pusher {
    -webkit-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0);
}

.offcanvas-effect-3.offcanvas-menu {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    z-index: 1;
}

.offcanvas-effect-3.offcanvas-menu-open .offcanvas-effect-3.offcanvas-menu {
    visibility: visible;
    -webkit-transition: -webkit-transform .5s;
    -moz-transition: -moz-transform .5s;
    -o-transition: -o-transform .5s;
    transition: transform .5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.offcanvas-effect-5.offcanvas-menu-open .offcanvas-pusher {
    -webkit-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0);
}

.offcanvas-effect-5.offcanvas-menu {
    z-index: 1;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
}

.offcanvas-effect-5.offcanvas-menu-open .offcanvas-effect-5.offcanvas-menu {
    visibility: visible;
    -webkit-transition: -webkit-transform .5s;
    -moz-transition: -moz-transform .5s;
    -o-transition: -o-transform .5s;
    transition: transform .5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media(max-width:991px) {
    #mainmenutop .navbar-nav {
        display: none;
    }

    .offcanvas-siderbars {
        position: relative;
    }

        .offcanvas-siderbars .offcanvas-sidebar {
            display: none;
            width: 100%;
        }

        .offcanvas-siderbars.column-left-active #oc-column-left {
            display: block;
            margin-bottom: 34px;
        }

        .offcanvas-siderbars.column-right-active #oc-column-right {
            display: block;
        }

        .offcanvas-siderbars.column-left-active .main-column,
        .offcanvas-siderbars.column-right-active .main-column {
            display: none;
        }
}

.offcanvas-sidebars-buttons {
    margin-bottom: 15px;
    overflow: hidden;
}

#menu-offcanvas .pavo-widget .widget-inner iframe {
    width: 250px !important;
}

@media only screen and (max-width: 1199px) {
    .gallery a {
        width: auto !important;
    }
}

@media only screen and (max-width: 991px) {
    #logo {
        text-align: center;
    }

    #vns-mainnav .mainnav-wrap {
        background: transparent;
    }

    .navbar .navbar-toggle {
        font-size: 18px;
        display: block;
        float: none;
        color: #093461;
        height: 32px;
        line-height: 32px;
        border: none;
        margin-left: 2px;
        padding: 0 14px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-transition: background .2s;
        -moz-transition: background .2s;
        -ms-transition: background .2s;
        -o-transition: background .2s;
        transition: background .2s;
    }

        .navbar .navbar-toggle i {
            z-index: 999;
            position: relative;
        }

        .navbar .navbar-toggle span {
            font-size: 14px;
            z-index: 9;
            position: relative;
        }

    .offcanvas-menu-open .navbar-default .navbar-toggle,
    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #eaeaea;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav > li {
        float: none;
    }
}

@media(min-width:991px) {
    .offcanvas-effect-1.offcanvas-menu-open .offcanvas-pusher {
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .offcanvas-effect-2.offcanvas-menu-open .offcanvas-pusher {
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .offcanvas-effect-3.offcanvas-menu-open .offcanvas-pusher {
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .offcanvas-effect-4.offcanvas-menu-open .offcanvas-pusher {
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .offcanvas-effect-5.offcanvas-menu-open .offcanvas-pusher {
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .offcanvas-menu,
    .offcanvas-menu-open .offcanvas-pusher::after {
        width: 0;
        height: 0;
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

.button-close-menu {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 24px;
    cursor: pointer;
    display: block;
    z-index: 99999;
    color: #ddd;
}

#vns-mainnav {
    font-size: 16px;
    z-index: 9999999;
    font-family: 'Roboto', sans-serif;
    position: relative;
    border: 1px solid #eaeaea;
    border-top: none;
    background-color: #fff;
}

    #vns-mainnav .megamenu {
        width: 100%;
    }

    #vns-mainnav .navbar {
        margin: 0;
        border: none;
    }

        #vns-mainnav .navbar .navbar-collapse {
            padding-left: 0;
            padding-right: 0;
        }

        #vns-mainnav .navbar ul.nav > li {
            text-align: center;
            position: relative;
            white-space: nowrap;
            text-transform: uppercase;
            font-weight: 700;
            width: 12.5%;
            padding-top: 4px;
            border-right: 1px solid #e9e9e9;
        }

            #vns-mainnav .navbar ul.nav > li:before {
                position: absolute;
                content: '';
                height: 4px;
                width: 100%;
                left: 0;
                top: 0;
                background: #308345;
            }

            #vns-mainnav .navbar ul.nav > li:last-child {
                border-right: 0;
            }

                #vns-mainnav .navbar ul.nav > li:last-child:before {
                    width: 101%;
                }

            #vns-mainnav .navbar ul.nav > li:first-child:before {
                width: 101%;
                left: -1px;
            }

            #vns-mainnav .navbar ul.nav > li.active > a,
            #vns-mainnav .navbar ul.nav > li:hover > a,
            #vns-mainnav .navbar ul.nav > li:focus > a {
                color: #308345;
            }

            #vns-mainnav .navbar ul.nav > li > a {
                color: #5d5d5d;
                padding: 13px 0 15px;
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -ms-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
            }

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    #vns-mainnav .navbar ul.nav > li > a {
        min-width: inherit;
    }
}
/*#vns-mainnav .navbar ul.nav>li.item-2:before {
    background: #40af64
}
#vns-mainnav .navbar ul.nav>li.item-3:before {
    background: #6e45a7
}
#vns-mainnav .navbar ul.nav>li.item-4:before {
    background: #f58634
}
#vns-mainnav .navbar ul.nav>li.item-5:before {
    background: #f7be24
}
#vns-mainnav .navbar ul.nav>li.item-6:before {
    background: #ff6a61
}
#vns-mainnav .navbar ul.nav>li.item-7:before {
    background: #4775c9
}
#vns-mainnav .navbar ul.nav>li.item-8:before {
    background: #91c547
}*/
#vns-mainnav .dropdown > .dropdown-menu {
    border: none;
    text-align: left;
    padding-bottom: 0;
    padding-top: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0;
    -moz-box-shadow: 0;
    -ms-box-shadow: 0;
    -o-box-shadow: 0;
    box-shadow: 0;
    min-width: 100%;
    font-size: 14px;
    border-bottom: 2px solid #308345;
    left: -.5%;
}

    #vns-mainnav .dropdown > .dropdown-menu .dropdown-menu {
        left: 100%;
        top: -3px;
        margin-left: 2px;
    }

#vns-mainnav .dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
}

#vns-mainnav .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

    #vns-mainnav .dropdown:hover > .dropdown-menu li a {
        color: #fff;
    }

#vns-mainnav .dropdown > .dropdown-menu .dropdown-menu-inner li {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-weight: 500;
    border: 1px solid #e9e9e9;
    border-bottom: 0;
    text-shadow: 0 0 1px #f2f2f2;
    font-weight: 700;
}

    #vns-mainnav .dropdown > .dropdown-menu .dropdown-menu-inner li:last-child {
        border-bottom: 1px solid #e9e9e9;
    }

        #vns-mainnav .dropdown > .dropdown-menu .dropdown-menu-inner li:last-child > a {
            padding: 6px 31px 5px 31px;
        }

    #vns-mainnav .dropdown > .dropdown-menu .dropdown-menu-inner li a {
        display: block;
        color: #5d5d5d;
        padding: 9px 31px 2px 31px;
    }

@media only screen and (max-width: 1199px) {
    #vns-mainnav .dropdown > .dropdown-menu .dropdown-menu-inner li a {
        font-size: 13px;
        padding: 3px 13px 7px 18px !important;
    }
}

#vns-mainnav .dropdown > .dropdown-menu .dropdown-menu-inner li:hover > a {
    color: #308345;
}

#vns-mainnav .dropdown > .dropdown-menu .dropdown-menu-inner li li {
    text-transform: capitalize;
}

#vns-mainnav .dropdown > .dropdown-menu li:hover > .dropdown-menu {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    #vns-mainnav {
        font-size: 14px;
    }

        #vns-mainnav .navbar ul.nav > li > a {
            min-width: inherit;
        }
}

@media only screen and (max-width: 991px) {
    .navbar-toggle {
        margin: 0;
    }
}

.cart-info table {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.cart-info tbody td {
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}

.cart-info thead td {
    color: #4d4d4d;
    font-weight: bold;
    background-color: rgba(109, 109, 109, .27);
    border-bottom: 1px solid #ddd;
}

.cart-info td {
    padding: 7px;
}

.cart-info tbody .check {
    text-align: left;
}

.cart-info tbody .name,
.cart-info tbody .image,
.cart-info tbody .model,
.cart-info tbody .quantity {
    text-align: left;
}

.cart-info tbody .price,
.cart-info tbody .total {
    text-align: right;
}

.cart-info thead .name,
.cart-info thead .model,
.cart-info thead .quantity {
    text-align: left;
}

.cart-info tbody .image img {
    max-height: 44px;
}

.cart-info thead .price,
.cart-info thead .total {
    text-align: right;
}

.cart-info tfoot {
    border-bottom: 1px solid #ddd;
}

    .cart-info tfoot .total {
        color: #4d4d4d;
        font-weight: bold;
        text-align: right;
    }

    .cart-info tfoot .price-total {
        text-align: right;
        font-weight: 700;
        font-size: 14px;
    }

@media only screen and (max-width: 749px) {
    table.history-list thead,
    table.order-info thead,
    .wishlist-info thead,
    table.pav-shop-cart thead {
        display: none;
    }

    table.pav-shop-cart tfoot .total {
        display: none !important;
    }

    .cart-info tbody .image {
        text-align: center !important;
    }
}

@media only screen and (max-width: 749px) {
    .wishlist-info tr td,
    table.order-info tr td,
    table.history-list tr td,
    table.pav-shop-cart tr td {
        text-align: right;
        display: block;
        min-height: 20px;
        border-left: none;
        background: none;
    }
}

@media only screen and (max-width: 749px) {
    .wishlist-info td,
    .wishlist-info th,
    table.history-list td,
    table.history-list th,
    table.order-info td,
    table.order-info th,
    table.compare-info td,
    table.compare-info th,
    table.pav-checkout-product td,
    table.pav-checkout-product th,
    table.pav-shop-cart td,
    table.pav-shop-cart th {
        border-right: 0 none;
        display: block !important;
        float: none !important;
        text-align: left !important;
        width: auto !important;
    }
}

@media only screen and (max-width: 749px) {
    .wishlist-info tr td:before,
    table.history-list tr td:before,
    table.order-info tr td:before,
    table.pav-shop-cart tr td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-align: left;
        white-space: nowrap;
        width: 50%;
    }
}

.bt-carts .bt-cart {
    margin: 0;
    display: block;
    float: left;
    margin-right: 10px;
    width: 80px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: none;
}

    .bt-carts .bt-cart:hover {
        color: #fff;
    }

html {
    overflow-y: scroll;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #444;
}

.fs-100 {
    font-size: 100px;
}

.fs-99 {
    font-size: 99px;
}

.fs-98 {
    font-size: 98px;
}

.fs-97 {
    font-size: 97px;
}

.fs-96 {
    font-size: 96px;
}

.fs-95 {
    font-size: 95px;
}

.fs-94 {
    font-size: 94px;
}

.fs-93 {
    font-size: 93px;
}

.fs-92 {
    font-size: 92px;
}

.fs-91 {
    font-size: 91px;
}

.fs-90 {
    font-size: 90px;
}

.fs-89 {
    font-size: 89px;
}

.fs-88 {
    font-size: 88px;
}

.fs-87 {
    font-size: 87px;
}

.fs-86 {
    font-size: 86px;
}

.fs-85 {
    font-size: 85px;
}

.fs-84 {
    font-size: 84px;
}

.fs-83 {
    font-size: 83px;
}

.fs-82 {
    font-size: 82px;
}

.fs-81 {
    font-size: 81px;
}

.fs-80 {
    font-size: 80px;
}

.fs-79 {
    font-size: 79px;
}

.fs-78 {
    font-size: 78px;
}

.fs-77 {
    font-size: 77px;
}

.fs-76 {
    font-size: 76px;
}

.fs-75 {
    font-size: 75px;
}

.fs-74 {
    font-size: 74px;
}

.fs-73 {
    font-size: 73px;
}

.fs-72 {
    font-size: 72px;
}

.fs-71 {
    font-size: 71px;
}

.fs-70 {
    font-size: 70px;
}

.fs-69 {
    font-size: 69px;
}

.fs-68 {
    font-size: 68px;
}

.fs-67 {
    font-size: 67px;
}

.fs-66 {
    font-size: 66px;
}

.fs-65 {
    font-size: 65px;
}

.fs-64 {
    font-size: 64px;
}

.fs-63 {
    font-size: 63px;
}

.fs-62 {
    font-size: 62px;
}

.fs-61 {
    font-size: 61px;
}

.fs-60 {
    font-size: 60px;
}

.fs-59 {
    font-size: 59px;
}

.fs-58 {
    font-size: 58px;
}

.fs-57 {
    font-size: 57px;
}

.fs-56 {
    font-size: 56px;
}

.fs-55 {
    font-size: 55px;
}

.fs-54 {
    font-size: 54px;
}

.fs-53 {
    font-size: 53px;
}

.fs-52 {
    font-size: 52px;
}

.fs-51 {
    font-size: 51px;
}

.fs-50 {
    font-size: 50px;
}

.fs-49 {
    font-size: 49px;
}

.fs-48 {
    font-size: 48px;
}

.fs-47 {
    font-size: 47px;
}

.fs-46 {
    font-size: 46px;
}

.fs-45 {
    font-size: 45px;
}

.fs-44 {
    font-size: 44px;
}

.fs-43 {
    font-size: 43px;
}

.fs-42 {
    font-size: 42px;
}

.fs-41 {
    font-size: 41px;
}

.fs-40 {
    font-size: 40px;
}

.fs-39 {
    font-size: 39px;
}

.fs-38 {
    font-size: 38px;
}

.fs-37 {
    font-size: 37px;
}

.fs-36 {
    font-size: 36px;
}

.fs-35 {
    font-size: 35px;
}

.fs-34 {
    font-size: 34px;
}

.fs-33 {
    font-size: 33px;
}

.fs-32 {
    font-size: 32px;
}

.fs-31 {
    font-size: 31px;
}

.fs-30 {
    font-size: 30px;
}

.fs-29 {
    font-size: 29px;
}

.fs-28 {
    font-size: 28px;
}

.fs-27 {
    font-size: 27px;
}

.fs-26 {
    font-size: 26px;
}

.fs-25 {
    font-size: 25px;
}

.fs-24 {
    font-size: 24px;
}

.fs-23 {
    font-size: 23px;
}

.fs-22 {
    font-size: 22px;
}

.fs-21 {
    font-size: 21px;
}

.fs-20 {
    font-size: 20px;
}

.fs-19 {
    font-size: 19px;
}

.fs-18 {
    font-size: 18px;
}

.fs-17 {
    font-size: 17px;
}

.fs-16 {
    font-size: 16px;
}

.fs-15 {
    font-size: 15px;
}

.fs-14 {
    font-size: 14px;
}

.fs-13 {
    font-size: 13px;
}

.fs-12 {
    font-size: 12px;
}

.fs-11 {
    font-size: 11px;
}

.fs-10 {
    font-size: 10px;
}

.fs-9 {
    font-size: 9px;
}

.fs-8 {
    font-size: 8px;
}

.fs-7 {
    font-size: 7px;
}

.fs-6 {
    font-size: 6px;
}

.fs-5 {
    font-size: 5px;
}

.fs-4 {
    font-size: 4px;
}

.fs-3 {
    font-size: 3px;
}

.fs-2 {
    font-size: 2px;
}

.fs-1 {
    font-size: 1px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-right-100 {
    margin-right: 100px;
}

.margin-bottom-100 {
    margin-bottom: 100px;
}

.margin-left-100 {
    margin-left: 100px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-right-100 {
    padding-right: 100px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-left-100 {
    padding-left: 100px;
}

.margin-top-99 {
    margin-top: 99px;
}

.margin-right-99 {
    margin-right: 99px;
}

.margin-bottom-99 {
    margin-bottom: 99px;
}

.margin-left-99 {
    margin-left: 99px;
}

.padding-top-99 {
    padding-top: 99px;
}

.padding-right-99 {
    padding-right: 99px;
}

.padding-bottom-99 {
    padding-bottom: 99px;
}

.padding-left-99 {
    padding-left: 99px;
}

.margin-top-98 {
    margin-top: 98px;
}

.margin-right-98 {
    margin-right: 98px;
}

.margin-bottom-98 {
    margin-bottom: 98px;
}

.margin-left-98 {
    margin-left: 98px;
}

.padding-top-98 {
    padding-top: 98px;
}

.padding-right-98 {
    padding-right: 98px;
}

.padding-bottom-98 {
    padding-bottom: 98px;
}

.padding-left-98 {
    padding-left: 98px;
}

.margin-top-97 {
    margin-top: 97px;
}

.margin-right-97 {
    margin-right: 97px;
}

.margin-bottom-97 {
    margin-bottom: 97px;
}

.margin-left-97 {
    margin-left: 97px;
}

.padding-top-97 {
    padding-top: 97px;
}

.padding-right-97 {
    padding-right: 97px;
}

.padding-bottom-97 {
    padding-bottom: 97px;
}

.padding-left-97 {
    padding-left: 97px;
}

.margin-top-96 {
    margin-top: 96px;
}

.margin-right-96 {
    margin-right: 96px;
}

.margin-bottom-96 {
    margin-bottom: 96px;
}

.margin-left-96 {
    margin-left: 96px;
}

.padding-top-96 {
    padding-top: 96px;
}

.padding-right-96 {
    padding-right: 96px;
}

.padding-bottom-96 {
    padding-bottom: 96px;
}

.padding-left-96 {
    padding-left: 96px;
}

.margin-top-95 {
    margin-top: 95px;
}

.margin-right-95 {
    margin-right: 95px;
}

.margin-bottom-95 {
    margin-bottom: 95px;
}

.margin-left-95 {
    margin-left: 95px;
}

.padding-top-95 {
    padding-top: 95px;
}

.padding-right-95 {
    padding-right: 95px;
}

.padding-bottom-95 {
    padding-bottom: 95px;
}

.padding-left-95 {
    padding-left: 95px;
}

.margin-top-94 {
    margin-top: 94px;
}

.margin-right-94 {
    margin-right: 94px;
}

.margin-bottom-94 {
    margin-bottom: 94px;
}

.margin-left-94 {
    margin-left: 94px;
}

.padding-top-94 {
    padding-top: 94px;
}

.padding-right-94 {
    padding-right: 94px;
}

.padding-bottom-94 {
    padding-bottom: 94px;
}

.padding-left-94 {
    padding-left: 94px;
}

.margin-top-93 {
    margin-top: 93px;
}

.margin-right-93 {
    margin-right: 93px;
}

.margin-bottom-93 {
    margin-bottom: 93px;
}

.margin-left-93 {
    margin-left: 93px;
}

.padding-top-93 {
    padding-top: 93px;
}

.padding-right-93 {
    padding-right: 93px;
}

.padding-bottom-93 {
    padding-bottom: 93px;
}

.padding-left-93 {
    padding-left: 93px;
}

.margin-top-92 {
    margin-top: 92px;
}

.margin-right-92 {
    margin-right: 92px;
}

.margin-bottom-92 {
    margin-bottom: 92px;
}

.margin-left-92 {
    margin-left: 92px;
}

.padding-top-92 {
    padding-top: 92px;
}

.padding-right-92 {
    padding-right: 92px;
}

.padding-bottom-92 {
    padding-bottom: 92px;
}

.padding-left-92 {
    padding-left: 92px;
}

.margin-top-91 {
    margin-top: 91px;
}

.margin-right-91 {
    margin-right: 91px;
}

.margin-bottom-91 {
    margin-bottom: 91px;
}

.margin-left-91 {
    margin-left: 91px;
}

.padding-top-91 {
    padding-top: 91px;
}

.padding-right-91 {
    padding-right: 91px;
}

.padding-bottom-91 {
    padding-bottom: 91px;
}

.padding-left-91 {
    padding-left: 91px;
}

.margin-top-90 {
    margin-top: 90px;
}

.margin-right-90 {
    margin-right: 90px;
}

.margin-bottom-90 {
    margin-bottom: 90px;
}

.margin-left-90 {
    margin-left: 90px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-right-90 {
    padding-right: 90px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-left-90 {
    padding-left: 90px;
}

.margin-top-89 {
    margin-top: 89px;
}

.margin-right-89 {
    margin-right: 89px;
}

.margin-bottom-89 {
    margin-bottom: 89px;
}

.margin-left-89 {
    margin-left: 89px;
}

.padding-top-89 {
    padding-top: 89px;
}

.padding-right-89 {
    padding-right: 89px;
}

.padding-bottom-89 {
    padding-bottom: 89px;
}

.padding-left-89 {
    padding-left: 89px;
}

.margin-top-88 {
    margin-top: 88px;
}

.margin-right-88 {
    margin-right: 88px;
}

.margin-bottom-88 {
    margin-bottom: 88px;
}

.margin-left-88 {
    margin-left: 88px;
}

.padding-top-88 {
    padding-top: 88px;
}

.padding-right-88 {
    padding-right: 88px;
}

.padding-bottom-88 {
    padding-bottom: 88px;
}

.padding-left-88 {
    padding-left: 88px;
}

.margin-top-87 {
    margin-top: 87px;
}

.margin-right-87 {
    margin-right: 87px;
}

.margin-bottom-87 {
    margin-bottom: 87px;
}

.margin-left-87 {
    margin-left: 87px;
}

.padding-top-87 {
    padding-top: 87px;
}

.padding-right-87 {
    padding-right: 87px;
}

.padding-bottom-87 {
    padding-bottom: 87px;
}

.padding-left-87 {
    padding-left: 87px;
}

.margin-top-86 {
    margin-top: 86px;
}

.margin-right-86 {
    margin-right: 86px;
}

.margin-bottom-86 {
    margin-bottom: 86px;
}

.margin-left-86 {
    margin-left: 86px;
}

.padding-top-86 {
    padding-top: 86px;
}

.padding-right-86 {
    padding-right: 86px;
}

.padding-bottom-86 {
    padding-bottom: 86px;
}

.padding-left-86 {
    padding-left: 86px;
}

.margin-top-85 {
    margin-top: 85px;
}

.margin-right-85 {
    margin-right: 85px;
}

.margin-bottom-85 {
    margin-bottom: 85px;
}

.margin-left-85 {
    margin-left: 85px;
}

.padding-top-85 {
    padding-top: 85px;
}

.padding-right-85 {
    padding-right: 85px;
}

.padding-bottom-85 {
    padding-bottom: 85px;
}

.padding-left-85 {
    padding-left: 85px;
}

.margin-top-84 {
    margin-top: 84px;
}

.margin-right-84 {
    margin-right: 84px;
}

.margin-bottom-84 {
    margin-bottom: 84px;
}

.margin-left-84 {
    margin-left: 84px;
}

.padding-top-84 {
    padding-top: 84px;
}

.padding-right-84 {
    padding-right: 84px;
}

.padding-bottom-84 {
    padding-bottom: 84px;
}

.padding-left-84 {
    padding-left: 84px;
}

.margin-top-83 {
    margin-top: 83px;
}

.margin-right-83 {
    margin-right: 83px;
}

.margin-bottom-83 {
    margin-bottom: 83px;
}

.margin-left-83 {
    margin-left: 83px;
}

.padding-top-83 {
    padding-top: 83px;
}

.padding-right-83 {
    padding-right: 83px;
}

.padding-bottom-83 {
    padding-bottom: 83px;
}

.padding-left-83 {
    padding-left: 83px;
}

.margin-top-82 {
    margin-top: 82px;
}

.margin-right-82 {
    margin-right: 82px;
}

.margin-bottom-82 {
    margin-bottom: 82px;
}

.margin-left-82 {
    margin-left: 82px;
}

.padding-top-82 {
    padding-top: 82px;
}

.padding-right-82 {
    padding-right: 82px;
}

.padding-bottom-82 {
    padding-bottom: 82px;
}

.padding-left-82 {
    padding-left: 82px;
}

.margin-top-81 {
    margin-top: 81px;
}

.margin-right-81 {
    margin-right: 81px;
}

.margin-bottom-81 {
    margin-bottom: 81px;
}

.margin-left-81 {
    margin-left: 81px;
}

.padding-top-81 {
    padding-top: 81px;
}

.padding-right-81 {
    padding-right: 81px;
}

.padding-bottom-81 {
    padding-bottom: 81px;
}

.padding-left-81 {
    padding-left: 81px;
}

.margin-top-80 {
    margin-top: 80px;
}

.margin-right-80 {
    margin-right: 80px;
}

.margin-bottom-80 {
    margin-bottom: 80px;
}

.margin-left-80 {
    margin-left: 80px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-right-80 {
    padding-right: 80px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-left-80 {
    padding-left: 80px;
}

.margin-top-79 {
    margin-top: 79px;
}

.margin-right-79 {
    margin-right: 79px;
}

.margin-bottom-79 {
    margin-bottom: 79px;
}

.margin-left-79 {
    margin-left: 79px;
}

.padding-top-79 {
    padding-top: 79px;
}

.padding-right-79 {
    padding-right: 79px;
}

.padding-bottom-79 {
    padding-bottom: 79px;
}

.padding-left-79 {
    padding-left: 79px;
}

.margin-top-78 {
    margin-top: 78px;
}

.margin-right-78 {
    margin-right: 78px;
}

.margin-bottom-78 {
    margin-bottom: 78px;
}

.margin-left-78 {
    margin-left: 78px;
}

.padding-top-78 {
    padding-top: 78px;
}

.padding-right-78 {
    padding-right: 78px;
}

.padding-bottom-78 {
    padding-bottom: 78px;
}

.padding-left-78 {
    padding-left: 78px;
}

.margin-top-77 {
    margin-top: 77px;
}

.margin-right-77 {
    margin-right: 77px;
}

.margin-bottom-77 {
    margin-bottom: 77px;
}

.margin-left-77 {
    margin-left: 77px;
}

.padding-top-77 {
    padding-top: 77px;
}

.padding-right-77 {
    padding-right: 77px;
}

.padding-bottom-77 {
    padding-bottom: 77px;
}

.padding-left-77 {
    padding-left: 77px;
}

.margin-top-76 {
    margin-top: 76px;
}

.margin-right-76 {
    margin-right: 76px;
}

.margin-bottom-76 {
    margin-bottom: 76px;
}

.margin-left-76 {
    margin-left: 76px;
}

.padding-top-76 {
    padding-top: 76px;
}

.padding-right-76 {
    padding-right: 76px;
}

.padding-bottom-76 {
    padding-bottom: 76px;
}

.padding-left-76 {
    padding-left: 76px;
}

.margin-top-75 {
    margin-top: 75px;
}

.margin-right-75 {
    margin-right: 75px;
}

.margin-bottom-75 {
    margin-bottom: 75px;
}

.margin-left-75 {
    margin-left: 75px;
}

.padding-top-75 {
    padding-top: 75px;
}

.padding-right-75 {
    padding-right: 75px;
}

.padding-bottom-75 {
    padding-bottom: 75px;
}

.padding-left-75 {
    padding-left: 75px;
}

.margin-top-74 {
    margin-top: 74px;
}

.margin-right-74 {
    margin-right: 74px;
}

.margin-bottom-74 {
    margin-bottom: 74px;
}

.margin-left-74 {
    margin-left: 74px;
}

.padding-top-74 {
    padding-top: 74px;
}

.padding-right-74 {
    padding-right: 74px;
}

.padding-bottom-74 {
    padding-bottom: 74px;
}

.padding-left-74 {
    padding-left: 74px;
}

.margin-top-73 {
    margin-top: 73px;
}

.margin-right-73 {
    margin-right: 73px;
}

.margin-bottom-73 {
    margin-bottom: 73px;
}

.margin-left-73 {
    margin-left: 73px;
}

.padding-top-73 {
    padding-top: 73px;
}

.padding-right-73 {
    padding-right: 73px;
}

.padding-bottom-73 {
    padding-bottom: 73px;
}

.padding-left-73 {
    padding-left: 73px;
}

.margin-top-72 {
    margin-top: 72px;
}

.margin-right-72 {
    margin-right: 72px;
}

.margin-bottom-72 {
    margin-bottom: 72px;
}

.margin-left-72 {
    margin-left: 72px;
}

.padding-top-72 {
    padding-top: 72px;
}

.padding-right-72 {
    padding-right: 72px;
}

.padding-bottom-72 {
    padding-bottom: 72px;
}

.padding-left-72 {
    padding-left: 72px;
}

.margin-top-71 {
    margin-top: 71px;
}

.margin-right-71 {
    margin-right: 71px;
}

.margin-bottom-71 {
    margin-bottom: 71px;
}

.margin-left-71 {
    margin-left: 71px;
}

.padding-top-71 {
    padding-top: 71px;
}

.padding-right-71 {
    padding-right: 71px;
}

.padding-bottom-71 {
    padding-bottom: 71px;
}

.padding-left-71 {
    padding-left: 71px;
}

.margin-top-70 {
    margin-top: 70px;
}

.margin-right-70 {
    margin-right: 70px;
}

.margin-bottom-70 {
    margin-bottom: 70px;
}

.margin-left-70 {
    margin-left: 70px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-right-70 {
    padding-right: 70px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-left-70 {
    padding-left: 70px;
}

.margin-top-69 {
    margin-top: 69px;
}

.margin-right-69 {
    margin-right: 69px;
}

.margin-bottom-69 {
    margin-bottom: 69px;
}

.margin-left-69 {
    margin-left: 69px;
}

.padding-top-69 {
    padding-top: 69px;
}

.padding-right-69 {
    padding-right: 69px;
}

.padding-bottom-69 {
    padding-bottom: 69px;
}

.padding-left-69 {
    padding-left: 69px;
}

.margin-top-68 {
    margin-top: 68px;
}

.margin-right-68 {
    margin-right: 68px;
}

.margin-bottom-68 {
    margin-bottom: 68px;
}

.margin-left-68 {
    margin-left: 68px;
}

.padding-top-68 {
    padding-top: 68px;
}

.padding-right-68 {
    padding-right: 68px;
}

.padding-bottom-68 {
    padding-bottom: 68px;
}

.padding-left-68 {
    padding-left: 68px;
}

.margin-top-67 {
    margin-top: 67px;
}

.margin-right-67 {
    margin-right: 67px;
}

.margin-bottom-67 {
    margin-bottom: 67px;
}

.margin-left-67 {
    margin-left: 67px;
}

.padding-top-67 {
    padding-top: 67px;
}

.padding-right-67 {
    padding-right: 67px;
}

.padding-bottom-67 {
    padding-bottom: 67px;
}

.padding-left-67 {
    padding-left: 67px;
}

.margin-top-66 {
    margin-top: 66px;
}

.margin-right-66 {
    margin-right: 66px;
}

.margin-bottom-66 {
    margin-bottom: 66px;
}

.margin-left-66 {
    margin-left: 66px;
}

.padding-top-66 {
    padding-top: 66px;
}

.padding-right-66 {
    padding-right: 66px;
}

.padding-bottom-66 {
    padding-bottom: 66px;
}

.padding-left-66 {
    padding-left: 66px;
}

.margin-top-65 {
    margin-top: 65px;
}

.margin-right-65 {
    margin-right: 65px;
}

.margin-bottom-65 {
    margin-bottom: 65px;
}

.margin-left-65 {
    margin-left: 65px;
}

.padding-top-65 {
    padding-top: 65px;
}

.padding-right-65 {
    padding-right: 65px;
}

.padding-bottom-65 {
    padding-bottom: 65px;
}

.padding-left-65 {
    padding-left: 65px;
}

.margin-top-64 {
    margin-top: 64px;
}

.margin-right-64 {
    margin-right: 64px;
}

.margin-bottom-64 {
    margin-bottom: 64px;
}

.margin-left-64 {
    margin-left: 64px;
}

.padding-top-64 {
    padding-top: 64px;
}

.padding-right-64 {
    padding-right: 64px;
}

.padding-bottom-64 {
    padding-bottom: 64px;
}

.padding-left-64 {
    padding-left: 64px;
}

.margin-top-63 {
    margin-top: 63px;
}

.margin-right-63 {
    margin-right: 63px;
}

.margin-bottom-63 {
    margin-bottom: 63px;
}

.margin-left-63 {
    margin-left: 63px;
}

.padding-top-63 {
    padding-top: 63px;
}

.padding-right-63 {
    padding-right: 63px;
}

.padding-bottom-63 {
    padding-bottom: 63px;
}

.padding-left-63 {
    padding-left: 63px;
}

.margin-top-62 {
    margin-top: 62px;
}

.margin-right-62 {
    margin-right: 62px;
}

.margin-bottom-62 {
    margin-bottom: 62px;
}

.margin-left-62 {
    margin-left: 62px;
}

.padding-top-62 {
    padding-top: 62px;
}

.padding-right-62 {
    padding-right: 62px;
}

.padding-bottom-62 {
    padding-bottom: 62px;
}

.padding-left-62 {
    padding-left: 62px;
}

.margin-top-61 {
    margin-top: 61px;
}

.margin-right-61 {
    margin-right: 61px;
}

.margin-bottom-61 {
    margin-bottom: 61px;
}

.margin-left-61 {
    margin-left: 61px;
}

.padding-top-61 {
    padding-top: 61px;
}

.padding-right-61 {
    padding-right: 61px;
}

.padding-bottom-61 {
    padding-bottom: 61px;
}

.padding-left-61 {
    padding-left: 61px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-right-60 {
    margin-right: 60px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-left-60 {
    margin-left: 60px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-right-60 {
    padding-right: 60px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-left-60 {
    padding-left: 60px;
}

.margin-top-59 {
    margin-top: 59px;
}

.margin-right-59 {
    margin-right: 59px;
}

.margin-bottom-59 {
    margin-bottom: 59px;
}

.margin-left-59 {
    margin-left: 59px;
}

.padding-top-59 {
    padding-top: 59px;
}

.padding-right-59 {
    padding-right: 59px;
}

.padding-bottom-59 {
    padding-bottom: 59px;
}

.padding-left-59 {
    padding-left: 59px;
}

.margin-top-58 {
    margin-top: 58px;
}

.margin-right-58 {
    margin-right: 58px;
}

.margin-bottom-58 {
    margin-bottom: 58px;
}

.margin-left-58 {
    margin-left: 58px;
}

.padding-top-58 {
    padding-top: 58px;
}

.padding-right-58 {
    padding-right: 58px;
}

.padding-bottom-58 {
    padding-bottom: 58px;
}

.padding-left-58 {
    padding-left: 58px;
}

.margin-top-57 {
    margin-top: 57px;
}

.margin-right-57 {
    margin-right: 57px;
}

.margin-bottom-57 {
    margin-bottom: 57px;
}

.margin-left-57 {
    margin-left: 57px;
}

.padding-top-57 {
    padding-top: 57px;
}

.padding-right-57 {
    padding-right: 57px;
}

.padding-bottom-57 {
    padding-bottom: 57px;
}

.padding-left-57 {
    padding-left: 57px;
}

.margin-top-56 {
    margin-top: 56px;
}

.margin-right-56 {
    margin-right: 56px;
}

.margin-bottom-56 {
    margin-bottom: 56px;
}

.margin-left-56 {
    margin-left: 56px;
}

.padding-top-56 {
    padding-top: 56px;
}

.padding-right-56 {
    padding-right: 56px;
}

.padding-bottom-56 {
    padding-bottom: 56px;
}

.padding-left-56 {
    padding-left: 56px;
}

.margin-top-55 {
    margin-top: 55px;
}

.margin-right-55 {
    margin-right: 55px;
}

.margin-bottom-55 {
    margin-bottom: 55px;
}

.margin-left-55 {
    margin-left: 55px;
}

.padding-top-55 {
    padding-top: 55px;
}

.padding-right-55 {
    padding-right: 55px;
}

.padding-bottom-55 {
    padding-bottom: 55px;
}

.padding-left-55 {
    padding-left: 55px;
}

.margin-top-54 {
    margin-top: 54px;
}

.margin-right-54 {
    margin-right: 54px;
}

.margin-bottom-54 {
    margin-bottom: 54px;
}

.margin-left-54 {
    margin-left: 54px;
}

.padding-top-54 {
    padding-top: 54px;
}

.padding-right-54 {
    padding-right: 54px;
}

.padding-bottom-54 {
    padding-bottom: 54px;
}

.padding-left-54 {
    padding-left: 54px;
}

.margin-top-53 {
    margin-top: 53px;
}

.margin-right-53 {
    margin-right: 53px;
}

.margin-bottom-53 {
    margin-bottom: 53px;
}

.margin-left-53 {
    margin-left: 53px;
}

.padding-top-53 {
    padding-top: 53px;
}

.padding-right-53 {
    padding-right: 53px;
}

.padding-bottom-53 {
    padding-bottom: 53px;
}

.padding-left-53 {
    padding-left: 53px;
}

.margin-top-52 {
    margin-top: 52px;
}

.margin-right-52 {
    margin-right: 52px;
}

.margin-bottom-52 {
    margin-bottom: 52px;
}

.margin-left-52 {
    margin-left: 52px;
}

.padding-top-52 {
    padding-top: 52px;
}

.padding-right-52 {
    padding-right: 52px;
}

.padding-bottom-52 {
    padding-bottom: 52px;
}

.padding-left-52 {
    padding-left: 52px;
}

.margin-top-51 {
    margin-top: 51px;
}

.margin-right-51 {
    margin-right: 51px;
}

.margin-bottom-51 {
    margin-bottom: 51px;
}

.margin-left-51 {
    margin-left: 51px;
}

.padding-top-51 {
    padding-top: 51px;
}

.padding-right-51 {
    padding-right: 51px;
}

.padding-bottom-51 {
    padding-bottom: 51px;
}

.padding-left-51 {
    padding-left: 51px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-right-50 {
    margin-right: 50px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-left-50 {
    margin-left: 50px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-right-50 {
    padding-right: 50px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-left-50 {
    padding-left: 50px;
}

.margin-top-49 {
    margin-top: 49px;
}

.margin-right-49 {
    margin-right: 49px;
}

.margin-bottom-49 {
    margin-bottom: 49px;
}

.margin-left-49 {
    margin-left: 49px;
}

.padding-top-49 {
    padding-top: 49px;
}

.padding-right-49 {
    padding-right: 49px;
}

.padding-bottom-49 {
    padding-bottom: 49px;
}

.padding-left-49 {
    padding-left: 49px;
}

.margin-top-48 {
    margin-top: 48px;
}

.margin-right-48 {
    margin-right: 48px;
}

.margin-bottom-48 {
    margin-bottom: 48px;
}

.margin-left-48 {
    margin-left: 48px;
}

.padding-top-48 {
    padding-top: 48px;
}

.padding-right-48 {
    padding-right: 48px;
}

.padding-bottom-48 {
    padding-bottom: 48px;
}

.padding-left-48 {
    padding-left: 48px;
}

.margin-top-47 {
    margin-top: 47px;
}

.margin-right-47 {
    margin-right: 47px;
}

.margin-bottom-47 {
    margin-bottom: 47px;
}

.margin-left-47 {
    margin-left: 47px;
}

.padding-top-47 {
    padding-top: 47px;
}

.padding-right-47 {
    padding-right: 47px;
}

.padding-bottom-47 {
    padding-bottom: 47px;
}

.padding-left-47 {
    padding-left: 47px;
}

.margin-top-46 {
    margin-top: 46px;
}

.margin-right-46 {
    margin-right: 46px;
}

.margin-bottom-46 {
    margin-bottom: 46px;
}

.margin-left-46 {
    margin-left: 46px;
}

.padding-top-46 {
    padding-top: 46px;
}

.padding-right-46 {
    padding-right: 46px;
}

.padding-bottom-46 {
    padding-bottom: 46px;
}

.padding-left-46 {
    padding-left: 46px;
}

.margin-top-45 {
    margin-top: 45px;
}

.margin-right-45 {
    margin-right: 45px;
}

.margin-bottom-45 {
    margin-bottom: 45px;
}

.margin-left-45 {
    margin-left: 45px;
}

.padding-top-45 {
    padding-top: 45px;
}

.padding-right-45 {
    padding-right: 45px;
}

.padding-bottom-45 {
    padding-bottom: 45px;
}

.padding-left-45 {
    padding-left: 45px;
}

.margin-top-44 {
    margin-top: 44px;
}

.margin-right-44 {
    margin-right: 44px;
}

.margin-bottom-44 {
    margin-bottom: 44px;
}

.margin-left-44 {
    margin-left: 44px;
}

.padding-top-44 {
    padding-top: 44px;
}

.padding-right-44 {
    padding-right: 44px;
}

.padding-bottom-44 {
    padding-bottom: 44px;
}

.padding-left-44 {
    padding-left: 44px;
}

.margin-top-43 {
    margin-top: 43px;
}

.margin-right-43 {
    margin-right: 43px;
}

.margin-bottom-43 {
    margin-bottom: 43px;
}

.margin-left-43 {
    margin-left: 43px;
}

.padding-top-43 {
    padding-top: 43px;
}

.padding-right-43 {
    padding-right: 43px;
}

.padding-bottom-43 {
    padding-bottom: 43px;
}

.padding-left-43 {
    padding-left: 43px;
}

.margin-top-42 {
    margin-top: 42px;
}

.margin-right-42 {
    margin-right: 42px;
}

.margin-bottom-42 {
    margin-bottom: 42px;
}

.margin-left-42 {
    margin-left: 42px;
}

.padding-top-42 {
    padding-top: 42px;
}

.padding-right-42 {
    padding-right: 42px;
}

.padding-bottom-42 {
    padding-bottom: 42px;
}

.padding-left-42 {
    padding-left: 42px;
}

.margin-top-41 {
    margin-top: 41px;
}

.margin-right-41 {
    margin-right: 41px;
}

.margin-bottom-41 {
    margin-bottom: 41px;
}

.margin-left-41 {
    margin-left: 41px;
}

.padding-top-41 {
    padding-top: 41px;
}

.padding-right-41 {
    padding-right: 41px;
}

.padding-bottom-41 {
    padding-bottom: 41px;
}

.padding-left-41 {
    padding-left: 41px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-right-40 {
    margin-right: 40px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-left-40 {
    margin-left: 40px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-right-40 {
    padding-right: 40px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-left-40 {
    padding-left: 40px;
}

.margin-top-39 {
    margin-top: 39px;
}

.margin-right-39 {
    margin-right: 39px;
}

.margin-bottom-39 {
    margin-bottom: 39px;
}

.margin-left-39 {
    margin-left: 39px;
}

.padding-top-39 {
    padding-top: 39px;
}

.padding-right-39 {
    padding-right: 39px;
}

.padding-bottom-39 {
    padding-bottom: 39px;
}

.padding-left-39 {
    padding-left: 39px;
}

.margin-top-38 {
    margin-top: 38px;
}

.margin-right-38 {
    margin-right: 38px;
}

.margin-bottom-38 {
    margin-bottom: 38px;
}

.margin-left-38 {
    margin-left: 38px;
}

.padding-top-38 {
    padding-top: 38px;
}

.padding-right-38 {
    padding-right: 38px;
}

.padding-bottom-38 {
    padding-bottom: 38px;
}

.padding-left-38 {
    padding-left: 38px;
}

.margin-top-37 {
    margin-top: 37px;
}

.margin-right-37 {
    margin-right: 37px;
}

.margin-bottom-37 {
    margin-bottom: 37px;
}

.margin-left-37 {
    margin-left: 37px;
}

.padding-top-37 {
    padding-top: 37px;
}

.padding-right-37 {
    padding-right: 37px;
}

.padding-bottom-37 {
    padding-bottom: 37px;
}

.padding-left-37 {
    padding-left: 37px;
}

.margin-top-36 {
    margin-top: 36px;
}

.margin-right-36 {
    margin-right: 36px;
}

.margin-bottom-36 {
    margin-bottom: 36px;
}

.margin-left-36 {
    margin-left: 36px;
}

.padding-top-36 {
    padding-top: 36px;
}

.padding-right-36 {
    padding-right: 36px;
}

.padding-bottom-36 {
    padding-bottom: 36px;
}

.padding-left-36 {
    padding-left: 36px;
}

.margin-top-35 {
    margin-top: 35px;
}

.margin-right-35 {
    margin-right: 35px;
}

.margin-bottom-35 {
    margin-bottom: 35px;
}

.margin-left-35 {
    margin-left: 35px;
}

.padding-top-35 {
    padding-top: 35px;
}

.padding-right-35 {
    padding-right: 35px;
}

.padding-bottom-35 {
    padding-bottom: 35px;
}

.padding-left-35 {
    padding-left: 35px;
}

.margin-top-34 {
    margin-top: 34px;
}

.margin-right-34 {
    margin-right: 34px;
}

.margin-bottom-34 {
    margin-bottom: 34px;
}

.margin-left-34 {
    margin-left: 34px;
}

.padding-top-34 {
    padding-top: 34px;
}

.padding-right-34 {
    padding-right: 34px;
}

.padding-bottom-34 {
    padding-bottom: 34px;
}

.padding-left-34 {
    padding-left: 34px;
}

.margin-top-33 {
    margin-top: 33px;
}

.margin-right-33 {
    margin-right: 33px;
}

.margin-bottom-33 {
    margin-bottom: 33px;
}

.margin-left-33 {
    margin-left: 33px;
}

.padding-top-33 {
    padding-top: 33px;
}

.padding-right-33 {
    padding-right: 33px;
}

.padding-bottom-33 {
    padding-bottom: 33px;
}

.padding-left-33 {
    padding-left: 33px;
}

.margin-top-32 {
    margin-top: 32px;
}

.margin-right-32 {
    margin-right: 32px;
}

.margin-bottom-32 {
    margin-bottom: 32px;
}

.margin-left-32 {
    margin-left: 32px;
}

.padding-top-32 {
    padding-top: 32px;
}

.padding-right-32 {
    padding-right: 32px;
}

.padding-bottom-32 {
    padding-bottom: 32px;
}

.padding-left-32 {
    padding-left: 32px;
}

.margin-top-31 {
    margin-top: 31px;
}

.margin-right-31 {
    margin-right: 31px;
}

.margin-bottom-31 {
    margin-bottom: 31px;
}

.margin-left-31 {
    margin-left: 31px;
}

.padding-top-31 {
    padding-top: 31px;
}

.padding-right-31 {
    padding-right: 31px;
}

.padding-bottom-31 {
    padding-bottom: 31px;
}

.padding-left-31 {
    padding-left: 31px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-right-30 {
    margin-right: 30px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-left-30 {
    margin-left: 30px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-right-30 {
    padding-right: 30px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-left-30 {
    padding-left: 30px;
}

.margin-top-29 {
    margin-top: 29px;
}

.margin-right-29 {
    margin-right: 29px;
}

.margin-bottom-29 {
    margin-bottom: 29px;
}

.margin-left-29 {
    margin-left: 29px;
}

.padding-top-29 {
    padding-top: 29px;
}

.padding-right-29 {
    padding-right: 29px;
}

.padding-bottom-29 {
    padding-bottom: 29px;
}

.padding-left-29 {
    padding-left: 29px;
}

.margin-top-28 {
    margin-top: 28px;
}

.margin-right-28 {
    margin-right: 28px;
}

.margin-bottom-28 {
    margin-bottom: 28px;
}

.margin-left-28 {
    margin-left: 28px;
}

.padding-top-28 {
    padding-top: 28px;
}

.padding-right-28 {
    padding-right: 28px;
}

.padding-bottom-28 {
    padding-bottom: 28px;
}

.padding-left-28 {
    padding-left: 28px;
}

.margin-top-27 {
    margin-top: 27px;
}

.margin-right-27 {
    margin-right: 27px;
}

.margin-bottom-27 {
    margin-bottom: 27px;
}

.margin-left-27 {
    margin-left: 27px;
}

.padding-top-27 {
    padding-top: 27px;
}

.padding-right-27 {
    padding-right: 27px;
}

.padding-bottom-27 {
    padding-bottom: 27px;
}

.padding-left-27 {
    padding-left: 27px;
}

.margin-top-26 {
    margin-top: 26px;
}

.margin-right-26 {
    margin-right: 26px;
}

.margin-bottom-26 {
    margin-bottom: 26px;
}

.margin-left-26 {
    margin-left: 26px;
}

.padding-top-26 {
    padding-top: 26px;
}

.padding-right-26 {
    padding-right: 26px;
}

.padding-bottom-26 {
    padding-bottom: 26px;
}

.padding-left-26 {
    padding-left: 26px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-right-25 {
    margin-right: 25px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-left-25 {
    margin-left: 25px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-right-25 {
    padding-right: 25px;
}

.padding-bottom-25 {
    padding-bottom: 25px;
}

.padding-left-25 {
    padding-left: 25px;
}

.margin-top-24 {
    margin-top: 24px;
}

.margin-right-24 {
    margin-right: 24px;
}

.margin-bottom-24 {
    margin-bottom: 24px;
}

.margin-left-24 {
    margin-left: 24px;
}

.padding-top-24 {
    padding-top: 24px;
}

.padding-right-24 {
    padding-right: 24px;
}

.padding-bottom-24 {
    padding-bottom: 24px;
}

.padding-left-24 {
    padding-left: 24px;
}

.margin-top-23 {
    margin-top: 23px;
}

.margin-right-23 {
    margin-right: 23px;
}

.margin-bottom-23 {
    margin-bottom: 23px;
}

.margin-left-23 {
    margin-left: 23px;
}

.padding-top-23 {
    padding-top: 23px;
}

.padding-right-23 {
    padding-right: 23px;
}

.padding-bottom-23 {
    padding-bottom: 23px;
}

.padding-left-23 {
    padding-left: 23px;
}

.margin-top-22 {
    margin-top: 22px;
}

.margin-right-22 {
    margin-right: 22px;
}

.margin-bottom-22 {
    margin-bottom: 22px;
}

.margin-left-22 {
    margin-left: 22px;
}

.padding-top-22 {
    padding-top: 22px;
}

.padding-right-22 {
    padding-right: 22px;
}

.padding-bottom-22 {
    padding-bottom: 22px;
}

.padding-left-22 {
    padding-left: 22px;
}

.margin-top-21 {
    margin-top: 21px;
}

.margin-right-21 {
    margin-right: 21px;
}

.margin-bottom-21 {
    margin-bottom: 21px;
}

.margin-left-21 {
    margin-left: 21px;
}

.padding-top-21 {
    padding-top: 21px;
}

.padding-right-21 {
    padding-right: 21px;
}

.padding-bottom-21 {
    padding-bottom: 21px;
}

.padding-left-21 {
    padding-left: 21px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-left-20 {
    margin-left: 20px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-right-20 {
    padding-right: 20px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-left-20 {
    padding-left: 20px;
}

.margin-top-19 {
    margin-top: 19px;
}

.margin-right-19 {
    margin-right: 19px;
}

.margin-bottom-19 {
    margin-bottom: 19px;
}

.margin-left-19 {
    margin-left: 19px;
}

.padding-top-19 {
    padding-top: 19px;
}

.padding-right-19 {
    padding-right: 19px;
}

.padding-bottom-19 {
    padding-bottom: 19px;
}

.padding-left-19 {
    padding-left: 19px;
}

.margin-top-18 {
    margin-top: 18px;
}

.margin-right-18 {
    margin-right: 18px;
}

.margin-bottom-18 {
    margin-bottom: 18px;
}

.margin-left-18 {
    margin-left: 18px;
}

.padding-top-18 {
    padding-top: 18px;
}

.padding-right-18 {
    padding-right: 18px;
}

.padding-bottom-18 {
    padding-bottom: 18px;
}

.padding-left-18 {
    padding-left: 18px;
}

.margin-top-17 {
    margin-top: 17px;
}

.margin-right-17 {
    margin-right: 17px;
}

.margin-bottom-17 {
    margin-bottom: 17px;
}

.margin-left-17 {
    margin-left: 17px;
}

.padding-top-17 {
    padding-top: 17px;
}

.padding-right-17 {
    padding-right: 17px;
}

.padding-bottom-17 {
    padding-bottom: 17px;
}

.padding-left-17 {
    padding-left: 17px;
}

.margin-top-16 {
    margin-top: 16px;
}

.margin-right-16 {
    margin-right: 16px;
}

.margin-bottom-16 {
    margin-bottom: 16px;
}

.margin-left-16 {
    margin-left: 16px;
}

.padding-top-16 {
    padding-top: 16px;
}

.padding-right-16 {
    padding-right: 16px;
}

.padding-bottom-16 {
    padding-bottom: 16px;
}

.padding-left-16 {
    padding-left: 16px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-right-15 {
    margin-right: 15px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-left-15 {
    margin-left: 15px;
}

.padding-top-15 {
    padding-top: 15px;
}

.padding-right-15 {
    padding-right: 15px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}

.padding-left-15 {
    padding-left: 15px;
}

.margin-top-14 {
    margin-top: 14px;
}

.margin-right-14 {
    margin-right: 14px;
}

.margin-bottom-14 {
    margin-bottom: 14px;
}

.margin-left-14 {
    margin-left: 14px;
}

.padding-top-14 {
    padding-top: 14px;
}

.padding-right-14 {
    padding-right: 14px;
}

.padding-bottom-14 {
    padding-bottom: 14px;
}

.padding-left-14 {
    padding-left: 14px;
}

.margin-top-13 {
    margin-top: 13px;
}

.margin-right-13 {
    margin-right: 13px;
}

.margin-bottom-13 {
    margin-bottom: 13px;
}

.margin-left-13 {
    margin-left: 13px;
}

.padding-top-13 {
    padding-top: 13px;
}

.padding-right-13 {
    padding-right: 13px;
}

.padding-bottom-13 {
    padding-bottom: 13px;
}

.padding-left-13 {
    padding-left: 13px;
}

.margin-top-12 {
    margin-top: 12px;
}

.margin-right-12 {
    margin-right: 12px;
}

.margin-bottom-12 {
    margin-bottom: 12px;
}

.margin-left-12 {
    margin-left: 12px;
}

.padding-top-12 {
    padding-top: 12px;
}

.padding-right-12 {
    padding-right: 12px;
}

.padding-bottom-12 {
    padding-bottom: 12px;
}

.padding-left-12 {
    padding-left: 12px;
}

.margin-top-11 {
    margin-top: 11px;
}

.margin-right-11 {
    margin-right: 11px;
}

.margin-bottom-11 {
    margin-bottom: 11px;
}

.margin-left-11 {
    margin-left: 11px;
}

.padding-top-11 {
    padding-top: 11px;
}

.padding-right-11 {
    padding-right: 11px;
}

.padding-bottom-11 {
    padding-bottom: 11px;
}

.padding-left-11 {
    padding-left: 11px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-right-10 {
    margin-right: 10px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-left-10 {
    margin-left: 10px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-right-10 {
    padding-right: 10px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-left-10 {
    padding-left: 10px;
}

.margin-top-9 {
    margin-top: 9px;
}

.margin-right-9 {
    margin-right: 9px;
}

.margin-bottom-9 {
    margin-bottom: 9px;
}

.margin-left-9 {
    margin-left: 9px;
}

.padding-top-9 {
    padding-top: 9px;
}

.padding-right-9 {
    padding-right: 9px;
}

.padding-bottom-9 {
    padding-bottom: 9px;
}

.padding-left-9 {
    padding-left: 9px;
}

.margin-top-8 {
    margin-top: 8px;
}

.margin-right-8 {
    margin-right: 8px;
}

.margin-bottom-8 {
    margin-bottom: 8px;
}

.margin-left-8 {
    margin-left: 8px;
}

.padding-top-8 {
    padding-top: 8px;
}

.padding-right-8 {
    padding-right: 8px;
}

.padding-bottom-8 {
    padding-bottom: 8px;
}

.padding-left-8 {
    padding-left: 8px;
}

.margin-top-7 {
    margin-top: 7px;
}

.margin-right-7 {
    margin-right: 7px;
}

.margin-bottom-7 {
    margin-bottom: 7px;
}

.margin-left-7 {
    margin-left: 7px;
}

.padding-top-7 {
    padding-top: 7px;
}

.padding-right-7 {
    padding-right: 7px;
}

.padding-bottom-7 {
    padding-bottom: 7px;
}

.padding-left-7 {
    padding-left: 7px;
}

.margin-top-6 {
    margin-top: 6px;
}

.margin-right-6 {
    margin-right: 6px;
}

.margin-bottom-6 {
    margin-bottom: 6px;
}

.margin-left-6 {
    margin-left: 6px;
}

.padding-top-6 {
    padding-top: 6px;
}

.padding-right-6 {
    padding-right: 6px;
}

.padding-bottom-6 {
    padding-bottom: 6px;
}

.padding-left-6 {
    padding-left: 6px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-right-5 {
    margin-right: 5px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-left-5 {
    margin-left: 5px;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-right-5 {
    padding-right: 5px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}

.padding-left-5 {
    padding-left: 5px;
}

.margin-top-4 {
    margin-top: 4px;
}

.margin-right-4 {
    margin-right: 4px;
}

.margin-bottom-4 {
    margin-bottom: 4px;
}

.margin-left-4 {
    margin-left: 4px;
}

.padding-top-4 {
    padding-top: 4px;
}

.padding-right-4 {
    padding-right: 4px;
}

.padding-bottom-4 {
    padding-bottom: 4px;
}

.padding-left-4 {
    padding-left: 4px;
}

.margin-top-3 {
    margin-top: 3px;
}

.margin-right-3 {
    margin-right: 3px;
}

.margin-bottom-3 {
    margin-bottom: 3px;
}

.margin-left-3 {
    margin-left: 3px;
}

.padding-top-3 {
    padding-top: 3px;
}

.padding-right-3 {
    padding-right: 3px;
}

.padding-bottom-3 {
    padding-bottom: 3px;
}

.padding-left-3 {
    padding-left: 3px;
}

.margin-top-2 {
    margin-top: 2px;
}

.margin-right-2 {
    margin-right: 2px;
}

.margin-bottom-2 {
    margin-bottom: 2px;
}

.margin-left-2 {
    margin-left: 2px;
}

.padding-top-2 {
    padding-top: 2px;
}

.padding-right-2 {
    padding-right: 2px;
}

.padding-bottom-2 {
    padding-bottom: 2px;
}

.padding-left-2 {
    padding-left: 2px;
}

.margin-top-1 {
    margin-top: 1px;
}

.margin-right-1 {
    margin-right: 1px;
}

.margin-bottom-1 {
    margin-bottom: 1px;
}

.margin-left-1 {
    margin-left: 1px;
}

.padding-top-1 {
    padding-top: 1px;
}

.padding-right-1 {
    padding-right: 1px;
}

.padding-bottom-1 {
    padding-bottom: 1px;
}

.padding-left-1 {
    padding-left: 1px;
}

.margin-top-0 {
    margin-top: 0;
}

.margin-right-0 {
    margin-right: 0;
}

.margin-bottom-0 {
    margin-bottom: 0;
}

.margin-left-0 {
    margin-left: 0;
}

.padding-top-0 {
    padding-top: 0;
}

.padding-right-0 {
    padding-right: 0;
}

.padding-bottom-0 {
    padding-bottom: 0;
}

.padding-left-0 {
    padding-left: 0;
}

.font-bold {
    font-weight: 700;
}

img {
    border: 0 none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

    img.width-full {
        max-width: 100%;
        max-height: 100%;
    }

@media only screen and (max-width: 479px) {
    .hidden-480 {
        display: none !important;
    }
}

ul,
ol {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

    ul li,
    ol li {
        line-height: 20px;
    }

body,
td,
th,
input,
textarea,
select,
a {
    outline: 0 none;
}

    a,
    a:hover,
    a:focus {
        text-decoration: none;
        -webkit-transition: color .2s ease 0s;
        -moz-transition: color .2s ease 0s;
        -ms-transition: color .2s ease 0s;
        -o-transition: color .2s ease 0s;
        transition: color .2s ease 0s;
    }

a {
    cursor: pointer;
    color: #444;
    outline: none;
}

    a:hover {
        text-decoration: none;
        color: #1e1e1e;
    }

.success,
.warning,
.attention,
.information {
    padding: 10px;
    margin-bottom: 15px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

    .success .colse,
    .warning .colse,
    .attention .colse,
    .information .colse {
        float: right;
        cursor: pointer;
        line-height: 12px;
        width: 12px;
        height: 12px;
    }

.warning {
    background: #ffd1d1 url('warning.png') 10px center no-repeat;
    border: 1px solid #f8acac;
}

.success {
    background: #eaf7d9 url('success.png') 10px center no-repeat;
    border: 1px solid #bbdf8d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1 {
    font-size: 25px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 15px;
}

h5 {
    font-size: 13px;
}

h6 {
    font-size: 12px;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small {
    font-size: 75%;
}

button,
input,
textarea,
select {
    border: 1px solid #ccc;
}

#page {
    margin: 0 auto;
}

.bt-cart {
    float: left;
    background-color: #e03d3d;
    color: #fff;
    display: block;
    padding: 5px 15px;
    line-height: 25px;
    text-align: center;
    border: none;
    outline: none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

    .bt-cart:hover {
        background: #760000;
        color: #fff;
    }

.fix-7 {
    padding: 0 7px;
}

.row.fix-7 {
    padding: 0;
    margin: 0 -7px;
}

.search {
    border: 1px solid #d3d3d3;
    width: 179px;
    height: 26px;
    float: right;
    border-radius: 25px;
    margin-top: 4px;
    background: #fff;
}

    .search .txt-search,
    .search .bt-search {
        height: 24px;
        margin: 0;
        border: none;
    }

    .search .txt-search {
        font-size: 12px;
        color: #959595;
        float: left;
        width: 150px;
        padding-left: 11px;
        font-family: Arial, Helvetica, sans-serif;
        font-style: italic;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
    }

        .search .txt-search:-moz-placeholder {
            color: #959595;
            font-size: 12px;
            letter-spacing: -.1px;
        }

        .search .txt-search:-ms-input-placeholder {
            letter-spacing: -.1px;
            color: #959595;
            font-size: 12px;
        }

        .search .txt-search::-webkit-input-placeholder {
            letter-spacing: -.1px;
            color: #959595;
            font-size: 12px;
        }

    .search .bt-search {
        background: url(images/bt-search.png) no-repeat top left;
        color: #fff;
        float: right;
        width: 21px;
        height: 20px;
        margin-top: 2px;
        margin-right: 2px;
    }

.show-mobile > div {
    position: relative;
    border-right: 1px solid #ededed;
}

    .show-mobile > div:last-child {
        border-left: 1px solid #ededed;
    }

    .show-mobile > div:hover .inner {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .show-mobile > div:hover .icon {
        background: #eaeaea;
    }

.show-mobile .icon {
    width: 47px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    color: #444;
    font-size: 16px;
    padding-right: 2px;
    cursor: pointer;
    -webkit-transition: background-color .5s;
    -moz-transition: background-color .5s;
    -ms-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
}

    .show-mobile .icon a {
        color: #444;
    }

.show-mobile .inner {
    padding: 5px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 9;
    background: #fff;
    line-height: 18px;
    font-size: 12px;
    padding-top: 7px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border: 1px solid #ededed;
}

    .show-mobile .inner > * {
        white-space: nowrap;
    }

.show-mobile .search {
    margin: 4px;
}

.language {
    float: left;
    margin-top: 9px;
    margin-right: -5px;
    z-index: 999;
    position: relative;
}

    .language a {
        float: left;
        width: 19px;
        height: 19px;
        background: url(images/language.png) no-repeat left top;
    }

        .language a.lg-1 {
            background-position: left top;
            margin-right: 5px;
        }

        .language a.lg-2 {
            background-position: right top;
        }

#top-down {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 9;
}

    #top-down a {
        background: url(Images/top.png) no-repeat;
        width: 33px;
        height: 34px;
        display: block;
    }

@media only screen and (max-width: 767px) {
    #top-down {
        right: 10px;
        bottom: 10px;
    }
}

.number-cart {
    padding: 5px;
    text-align: center;
    border: 1px solid #bfc0bf;
    background: #fff;
    display: block;
    float: left;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    width: 60px;
    height: 30px;
}

    .number-cart:focus {
        border: 1px solid #f7d736;
    }

.pager {
    padding: 13px 0;
}

    .pager a {
        padding: 4px 6px;
        margin-right: 1px;
        -webkit-transition: all .3s ease-in-out 0s;
        transition: all .3s ease-in-out 0s;
        color: #000;
        font-size: 12px;
        font-weight: 700;
        position: relative;
        background: #515151;
        color: #fff;
    }

        .pager a:hover,
        .pager a.active {
            background: #308345;
            color: #fff;
        }

.text-box {
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    margin-bottom: 10px;
}

textarea {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #292929;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 150px;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    textarea:focus,
    .text-box:focus {
        border-color: rgba(255, 110, 2, .49);
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 4px rgba(255, 145, 0, .19);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 4px rgba(255, 145, 0, .19);
    }

.input-validation-error {
    border-color: rgba(255, 110, 2, .49) !important;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 4px rgba(255, 145, 0, .19);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 4px rgba(255, 145, 0, .19);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.form-contact span {
    font-size: 13px;
    display: block;
    color: #868686;
    margin-bottom: 8px;
}

.form-contact h2.heading span {
    padding-bottom: 4px;
    padding-left: 24px;
    text-shadow: 0 0 1px #cbcbcb;
    position: relative;
    font-size: 20px;
    color: #4a4a4a;
}

.form textarea {
    height: 211px;
}

.form .text1 {
    margin-bottom: 10px;
}

    .form .text1 .bt-submit,
    .cleartext {
        margin-bottom: 20px;
        width: auto;
        border-radius: 0;
        background: #3f3f3f;
        color: #fff;
        border: none;
        font-size: 14px;
        font-family: Tahoma;
        height: 32px;
        padding: 0 12px;
        margin-top: 20px;
        -webkit-transition: all .6s ease-in-out 0s;
        transition: all .6s ease-in-out 0s;
        display: block;
        float: left;
        line-height: 32px;
        margin-right: 10px;
    }

        .form .text1 .bt-submit:hover,
        .cleartext:hover {
            -webkit-box-shadow: 0 0 0 30px #ed1c24 inset;
            box-shadow: 0 0 0 30px #ed1c24 inset;
            color: #fff;
        }

    .form .text1 label,
    .form .context-c1 label {
        margin-top: 7px;
        margin-bottom: 5px;
        color: #969696;
        font-weight: normal;
    }

    .form .text1 img.captcha {
        margin-top: 2px;
    }

.box-companny {
    padding: 7px 0;
    font-size: 13px;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 10px;
}

    .box-companny.no-border {
        border-bottom: 0;
    }

    .box-companny .title {
        font-size: 16px;
        margin-bottom: 20px;
        font-weight: 600;
        text-transform: uppercase;
        color: #f4812c;
    }

        .box-companny .title a {
            color: #ed1c24;
        }

    .box-companny .content {
        color: #000;
        line-height: 24px;
    }

        .box-companny .content .label i {
            width: 30px;
        }

        .box-companny .content .label {
            color: #000;
            font-size: 13px;
            padding: 3px 0;
            display: block;
            text-align: left;
            font-weight: normal;
            margin-bottom: 7px;
        }

.contacts p.description {
    margin-top: 25px;
    padding-top: 25px;
}

.contacts .description {
    border-left: 0;
    border-right: 0;
    margin: 5px 0;
    padding: 5px 0;
    font-size: 13px;
}

.bt-submit,
.bt-clear {
    margin-bottom: 20px;
    width: auto;
    border-radius: 0;
    background: #383838;
    color: #fff;
    border: none;
    font-size: 16px;
    height: 40px;
    padding: 0 25px;
    margin-top: 20px;
    -webkit-transition: background .6s ease;
    transition: background .6s ease;
    display: block;
    float: left;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    outline: none;
}

    .bt-submit:hover,
    .bt-clear:hover {
        background: #308345;
        color: #fff;
    }

.maps {
    margin-bottom: 40px;
}

.success-contact {
    margin-bottom: 20px;
    font-size: 13px;
    color: #262626;
    font-weight: 700;
    font-family: Arial;
}

.contact-company .heading_title {
    font-size: 18px;
    margin-bottom: 3px;
    color: #ed1c24;
    margin-bottom: 10px;
}

h2.custommer-comment {
    font-size: 18px;
    margin-bottom: 3px;
    color: #ed1c24;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.maps iframe {
    height: 450px;
}

@media only screen and (max-width: 1199px) {
    .maps iframe {
        height: 300px;
    }
}

#support {
    position: fixed;
    bottom: 50px;
    right: 0;
    z-index: 99999;
}

    #support:hover .box-content {
        opacity: 1;
        filter: alpha(opacity=100);
        z-index: 999;
        visibility: visible;
    }

    #support .box-content {
        background-color: #0071bb;
        width: 280px;
        height: auto;
        position: absolute;
        right: 40px;
        bottom: 5px;
        border: 2px solid #ccc;
        padding: 12px 14px;
        opacity: .9;
        filter: alpha(opacity=0);
        -webkit-transition: all .4s;
        transition: all .4s;
        z-index: 999;
        visibility: hidden;
    }

    #support .hot-line {
        font-size: 12px;
        text-transform: uppercase;
        padding-left: 0;
        clear: both;
        width: 100%;
        background: none;
        color: #404040;
        margin-bottom: 10px;
        font-family: Arial;
        padding: 0;
        margin-bottom: 0;
    }

        #support .hot-line span {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
        }

        #support .hot-line .phone-number {
            font-size: 24px;
            color: #ff0;
            font-weight: normal;
        }

    #support .item {
        color: #464646;
        font-size: 12px;
        margin: 6px 0;
        display: block;
        overflow: hidden;
    }

        #support .item a {
            float: right;
        }

        #support .item span {
            margin-right: 6px;
            color: #fff;
        }

        #support .item label {
            color: #fff;
        }

        #support .item .skye {
            background: url(Images/skype.png) no-repeat;
            width: 16px;
            height: 16px;
            margin-right: 6px;
        }

        #support .item .yahoo {
            position: relative;
            top: -3px;
        }

.share-article {
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .share-article a {
        padding: 8px 12px;
        margin-right: 5px;
        color: #333;
        background-color: #fff;
        display: block;
        float: left;
        margin-bottom: 7px;
        border-bottom: 3px solid;
        border-radius: 3px;
        color: #fff;
    }

        .share-article a i {
            font-size: 15px;
            color: #fff;
        }

a#facebook {
    background-color: #435f9f;
    border-bottom-color: #344a7b;
}

    a#facebook:hover {
        border-color: #435f9f;
        background-color: #435f9f;
    }

a#twitter {
    background-color: #00aaf0;
    border-bottom-color: #0086bd;
}

    a#twitter:hover {
        border-color: #00aaf0;
        background-color: #00aaf0;
    }

a#google {
    background-color: #e04b34;
    border-bottom-color: #c3341e;
}

    a#google:hover {
        background-color: #e04b34;
        border-bottom-color: #e04b34;
    }

a#linkedin {
    border-color: #000;
    background-color: #000;
}

    a#linkedin:hover {
        border-color: #000;
        background-color: #000;
    }

.share-article a:hover,
.share-article a:hover i {
    -webkit-transition: color .4s ease 0s, background-color .4s ease 0s;
    transition: color .4s ease 0s, background-color .4s ease 0s;
    color: #fff !important;
}

.tags {
    overflow: hidden;
}

    .tags a {
        color: #fff;
        background: #515151;
        font-size: 12px;
        float: left;
        margin-right: 5px;
        margin-bottom: 5px;
    }

        .tags a span {
            display: block;
            padding: 5px 11px;
            -webkit-transition: background .3s ease;
            -moz-transition: background .3s ease;
            -ms-transition: background .3s ease;
            -o-transition: background .3s ease;
            transition: background .3s ease;
        }

        .tags a:hover span {
            background: #777;
        }

.description table {
    width: 100%;
}

    .description table td {
        padding: 5px;
    }

    .description table p {
        margin-bottom: 0;
    }

.description.short,
.description.full {
    font-size: 13px;
    line-height: 21px;
}

.description.full {
    margin-bottom: 15px;
    margin-top: 18px;
}

    .description.short table,
    .description.short tr,
    .description.short th,
    .description.short td,
    .description.full table,
    .description.full tr,
    .description.full th,
    .description.full td {
        border: 1px solid #ccc;
    }

    .description.full ul {
        list-style: disc;
        padding-left: 30px;
    }

    .description.full ol {
        list-style: decimal;
        padding-left: 30px;
    }

.image-product {
    float: right;
    width: 303px;
    height: 302px;
    border: 1px solid #ccc;
}

h1.name {
    font-size: 21px;
    text-transform: capitalize;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e3e3e3;
    overflow: hidden;
}

.property {
    overflow: hidden;
    float: left;
    width: 100%;
}

    .property > span {
        display: block;
        margin-bottom: 10px;
    }

    .property .id {
        position: relative;
        top: -1px;
        padding-left: 1px;
        color: #555;
    }

    .property .description.short {
        margin-top: 15px;
        padding-top: 16px;
        background: url(Images/bg8.png) repeat-x left top;
        overflow: hidden;
        font-size: 13px;
        line-height: 21px;
        font-weight: normal;
        letter-spacing: .22px;
    }

        .property .description.short li,
        .property .description.short p {
            background: url(Images/bg9.png) no-repeat left 3px top 8px;
            margin-bottom: 9px;
            padding-left: 21px;
        }

    .property .cart {
        overflow: hidden;
    }

        .property .cart > span {
            display: block;
        }

    .property .cart {
        padding-top: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
        display: block;
    }

        .property .cart > strong {
            margin-bottom: 8px;
            display: block;
        }

    .property .info > span {
        display: block;
        margin-bottom: 5px;
    }

    .property .price {
        font-size: 160%;
        font-weight: 700;
    }

    .property .price-old {
        text-decoration: line-through;
        font-size: 16px;
        display: block;
        color: #6f6f6f;
    }

    .property .price-new {
        color: #ed1c24;
    }

@media only screen and (max-width: 1199px) {
    .property {
        width: 425px;
    }

    .image-product {
        width: 190px;
        height: 190px;
    }
}

@media only screen and (max-width: 991px) {
    .property {
        width: 300px;
    }

    .image-product {
        width: 150px;
        height: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .property {
        width: 100%;
        float: none;
    }

    .image-product {
        float: none;
        width: 100%;
        height: auto;
    }
}

.number-cart {
    width: 100px;
    height: 35px;
    padding: 5px;
    text-align: center;
    border: 1px solid #bfc0bf;
    background: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: block;
    float: left;
}

    .number-cart:focus {
        border-color: #ed1c24;
    }

.bt-cart {
    float: left;
    background-color: #131313;
    color: #fff;
    display: block;
    padding: 5px 15px;
    line-height: 25px;
    text-align: center;
    border: none;
    -webkit-transition: all .5s;
    transition: all .5s;
    outline: none;
}

    .bt-cart:hover {
        background: #424242;
        color: #fff;
    }

@media only screen and (max-width: 767px) {
    .image-product {
        float: none;
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

        .image-product img {
            height: auto;
        }
}

#related {
    margin-bottom: 20px;
}

.heading-related {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 6px 0 12px 0;
    border-left: none;
    border-right: none;
    text-transform: none;
    font-weight: 600;
    margin-left: 2px;
    letter-spacing: -.3px;
}

#related ul {
    list-style: inside;
    padding-left: 20px;
    font-size: 13px;
}

    #related ul .fs11 {
        color: #8f8f8f;
    }

@media only screen and (max-width: 767px) {
    #sys-notification {
        z-index: 9;
    }

        #sys-notification .success {
            font-size: 15px;
        }
}

@media only screen and (max-width: 767px) {
    .offcanvas-effect-1.offcanvas-menu-open .offcanvas-effect-1.offcanvas-menu,
    .offcanvas-effect-2.offcanvas-menu-open .offcanvas-effect-2.offcanvas-menu,
    .offcanvas-effect-3.offcanvas-menu-open .offcanvas-effect-3.offcanvas-menu,
    .offcanvas-effect-4.offcanvas-menu-open .offcanvas-effect-4.offcanvas-menu,
    .offcanvas-effect-5.offcanvas-menu-open .offcanvas-effect-5.offcanvas-menu {
        overflow-y: scroll;
    }

        .offcanvas-effect-1.offcanvas-menu-open .offcanvas-effect-1.offcanvas-menu::-webkit-scrollbar,
        .offcanvas-effect-2.offcanvas-menu-open .offcanvas-effect-2.offcanvas-menu::-webkit-scrollbar,
        .offcanvas-effect-3.offcanvas-menu-open .offcanvas-effect-3.offcanvas-menu::-webkit-scrollbar,
        .offcanvas-effect-4.offcanvas-menu-open .offcanvas-effect-4.offcanvas-menu::-webkit-scrollbar,
        .offcanvas-effect-5.offcanvas-menu-open .offcanvas-effect-5.offcanvas-menu::-webkit-scrollbar {
            width: 1px;
        }

        .offcanvas-effect-1.offcanvas-menu-open .offcanvas-effect-1.offcanvas-menu::-moz-scrollbar,
        .offcanvas-effect-2.offcanvas-menu-open .offcanvas-effect-2.offcanvas-menu::-moz-scrollbar,
        .offcanvas-effect-3.offcanvas-menu-open .offcanvas-effect-3.offcanvas-menu::-moz-scrollbar,
        .offcanvas-effect-4.offcanvas-menu-open .offcanvas-effect-4.offcanvas-menu::-moz-scrollbar,
        .offcanvas-effect-5.offcanvas-menu-open .offcanvas-effect-5.offcanvas-menu::-moz-scrollbar {
            width: 1px;
        }

    .offcanvas-menu-open .offcanvas-menu {
        position: fixed;
        max-width: 300px;
    }
}

.fixtop {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
}

ul.categorys li {
    -webkit-transition: background .2s linear;
    -moz-transition: background .2s linear;
    -ms-transition: background .2s linear;
    -o-transition: background .2s linear;
    transition: background .2s linear;
    border-bottom: 1px solid #e9e9e9;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 0 0;
    /*background: url(Images/bg-li.png) no-repeat left 14px top 17px*/
}

    ul.categorys li.active a,
    ul.categorys li:hover a {
        color: #308345;
    }

    ul.categorys li a {
        display: block;
        padding: 11px 15px 8px 7px;
        color: #4a4a4a;
    }

    ul.categorys li:last-child {
        border-bottom: 0;
    }
/*ul.categorys li:last-child a {
    padding: 11px 15px 14px 36px
}*/
.edit-admin {
    padding: 2px;
    background: #ed1c24;
    color: #fff;
    overflow: hidden;
    float: left;
    font-weight: 700;
}

    .edit-admin span {
        margin: 2px;
        padding: 5px;
        border: 1px solid #fff;
        display: block;
    }

    .edit-admin:hover {
        color: #fff;
    }

ul.category-accordion li {
    position: relative;
}

    ul.category-accordion li a {
        display: block;
        text-transform: uppercase;
    }

    ul.category-accordion li li a {
        padding-left: 40px;
    }

ul.category-accordion ul ul li a {
    padding-left: 60px;
}

ul.category-accordion ul ul ul li a {
    padding-left: 80px;
}

.btn-sidebar {
    display: inline-block;
    padding: 6px 15px 4px;
    border-left: 1px solid #ededed;
    outline: none !important;
    box-shadow: none !important;
    -webkit-transition: background-color .5s;
    -moz-transition: background-color .5s;
    -ms-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
}

    .btn-sidebar .overlay {
        content: "";
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        background: #444;
        opacity: .2;
        filter: alpha(opacity=20);
        cursor: pointer;
    }

    .btn-sidebar:hover {
        background-color: #eaeaea;
    }

body.show-sidebar .btn-sidebar .overlay {
    display: inline;
}

.owl-carousel.is-active .owl-item > * {
    opacity: .3;
    filter: alpha(opacity=30);
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    -webkit-transition: all .8s ease 0s;
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.owl-carousel.is-active .owl-item.active > * {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.hover-div {
    position: relative;
}

    .hover-div .hover-mark {
        position: absolute;
        background: rgba(0, 0, 0, .58);
        width: 100%;
        height: 100%;
        top: 999999%;
    }

@media only screen and (max-width: 991px) {
    #sidebar {
        position: fixed;
        overflow: auto;
        overflow-x: hidden;
        top: 0;
        height: 100%;
        background: #fff;
        z-index: 999;
        padding-top: 50px;
        padding-bottom: 20px;
        -webkit-transition: all .5s ease 0s;
        -moz-transition: all .5s ease 0s;
        -ms-transition: all .5s ease 0s;
        -o-transition: all .5s ease 0s;
        transition: all .5s ease 0s;
    }

    .sidebar-left,
    .sidebar-right {
        width: 300px;
        opacity: 0;
        filter: alpha(opacity=0);
    }

        .sidebar-left span.close,
        .sidebar-right span.close {
            position: absolute;
            top: 10px;
            padding: 5px 6px;
            font-size: 15px;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .sidebar-right {
        right: -300px;
    }

        .sidebar-right span.close {
            left: 15px;
        }

    .sidebar-left {
        left: -300px;
    }

        .sidebar-left span.close {
            right: 15px;
        }

    .show-sidebar .sidebar-right {
        right: 0;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .show-sidebar .sidebar-left {
        left: 0;
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

.button-hover-tooltip {
    position: relative;
}

    .button-hover-tooltip i,
    .button-hover-tooltip span:not(over) {
        z-index: 2;
        position: relative;
    }

    .button-hover-tooltip span[class^="over-"] {
        position: absolute;
        width: 100%;
        height: 26% !important;
        padding: 0 !important;
        margin: 0 !important;
        left: 0;
        z-index: 1;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .button-hover-tooltip .over-1 {
        top: 0;
        -webkit-transition-delay: .1s !important;
        -moz-transition-delay: .1s !important;
        -o-transition-delay: .1s !important;
        transition-delay: .1s !important;
    }

    .button-hover-tooltip .over-2 {
        top: 25%;
        -webkit-transition-delay: .2s !important;
        -moz-transition-delay: .2s !important;
        -o-transition-delay: .2s !important;
        transition-delay: .2s !important;
    }

    .button-hover-tooltip .over-3 {
        top: 50%;
        -webkit-transition-delay: .3s !important;
        -moz-transition-delay: .3s !important;
        -o-transition-delay: .3s !important;
        transition-delay: .3s !important;
    }

    .button-hover-tooltip .over-4 {
        top: 75%;
        -webkit-transition-delay: .4s !important;
        -moz-transition-delay: .4s !important;
        -o-transition-delay: .4s !important;
        transition-delay: .4s !important;
    }

img.fr-fir {
    z-index: 1;
    position: relative;
    margin: auto;
    overflow: auto;
    padding: 10px 3px 10px 10px;
    float: right !important;
}

img.fr-fil {
    z-index: 1;
    position: relative;
    margin: auto;
    overflow: auto;
    padding: 10px 10px 10px 3px;
    float: left !important;
}

.camera_wrap a,
.camera_wrap img,
.camera_wrap ol,
.camera_wrap ul,
.camera_wrap li,
.camera_wrap table,
.camera_wrap tbody,
.camera_wrap tfoot,
.camera_wrap thead,
.camera_wrap tr,
.camera_wrap th,
.camera_wrap td .camera_thumbs_wrap a,
.camera_thumbs_wrap img,
.camera_thumbs_wrap ol,
.camera_thumbs_wrap ul,
.camera_thumbs_wrap li,
.camera_thumbs_wrap table,
.camera_thumbs_wrap tbody,
.camera_thumbs_wrap tfoot,
.camera_thumbs_wrap thead,
.camera_thumbs_wrap tr,
.camera_thumbs_wrap th,
.camera_thumbs_wrap td {
    background: none;
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    list-style: none;
}

.camera_wrap {
    direction: ltr;
    display: none;
    float: left;
    position: relative;
    z-index: 0;
}

    .camera_wrap img {
        max-width: none !important;
    }

.camera_fakehover {
    height: 100%;
    min-height: 60px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.camera_wrap {
    width: 100%;
}

.camera_src {
    display: none;
}

.cameraCont,
.cameraContents {
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
}

.cameraSlide {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.cameraContent {
    bottom: 0;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.camera_target {
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: left;
    top: 0;
    width: 100%;
    z-index: 0;
}

.camera_overlayer {
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}

.camera_target_content {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

    .camera_target_content .camera_link {
        background: url(../images/blank.gif);
        display: block;
        height: 100%;
        text-decoration: none;
    }

.camera_loader {
    background: #fff url(images/camera-loader.gif) no-repeat center;
    background: rgba(255, 255, 255, .9) url(images/camera-loader.gif) no-repeat center;
    border: 1px solid #fff;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    height: 36px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    margin: -18px 0 0 -18px;
    top: 50%;
    width: 36px;
    z-index: 3;
}

.camera_bar {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}

.camera_thumbs_wrap.camera_left .camera_bar,
.camera_thumbs_wrap.camera_right .camera_bar {
    height: 100%;
    position: absolute;
    width: auto;
}

.camera_thumbs_wrap.camera_bottom .camera_bar,
.camera_thumbs_wrap.camera_top .camera_bar {
    height: auto;
    position: absolute;
    width: 100%;
}

.camera_nav_cont {
    height: 65px;
    overflow: hidden;
    position: absolute;
    right: 9px;
    top: 15px;
    width: 120px;
    z-index: 4;
}

.camera_caption {
    bottom: 0;
    display: block;
    position: absolute;
    width: 100%;
}

    .camera_caption > div {
        padding: 10px 20px;
    }

.camerarelative {
    overflow: hidden;
    position: relative;
}

.imgFake {
    cursor: pointer;
}

.camera_prevThumbs {
    bottom: 4px;
    cursor: pointer;
    left: 0;
    position: absolute;
    top: 4px;
    visibility: hidden;
    width: 30px;
    z-index: 10;
}

    .camera_prevThumbs div {
        background: url(../images/camera_skins.png) no-repeat -160px 0;
        display: block;
        height: 40px;
        margin-top: -20px;
        position: absolute;
        top: 50%;
        width: 30px;
    }

.camera_nextThumbs {
    bottom: 4px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 4px;
    visibility: hidden;
    width: 30px;
    z-index: 10;
}

    .camera_nextThumbs div {
        background: url(../images/camera_skins.png) no-repeat -190px 0;
        display: block;
        height: 40px;
        margin-top: -20px;
        position: absolute;
        top: 50%;
        width: 30px;
    }

.camera_command_wrap .hideNav {
    display: none;
}

.camera_command_wrap {
    left: 0;
    position: relative;
    right: 0;
    z-index: 4;
}

.camera_wrap .camera_pag .camera_pag_ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

    .camera_wrap .camera_pag .camera_pag_ul li {
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
        cursor: pointer;
        display: inline-block;
        height: 16px;
        margin: 20px 5px;
        position: relative;
        text-align: left;
        text-indent: 9999px;
        width: 16px;
    }

.camera_commands_emboss .camera_pag .camera_pag_ul li {
    -moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
    box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
}

.camera_wrap .camera_pag .camera_pag_ul li > span {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: 8px;
    left: 4px;
    overflow: hidden;
    position: absolute;
    top: 4px;
    width: 8px;
}

.camera_commands_emboss .camera_pag .camera_pag_ul li:hover > span {
    -moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
    box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
}

.camera_wrap .camera_pag .camera_pag_ul li.cameracurrent > span {
    -moz-box-shadow: 0;
    -webkit-box-shadow: 0;
    box-shadow: 0;
}

.camera_pag_ul li img {
    display: none;
    position: absolute;
}

.camera_pag_ul .thumb_arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid;
    top: 0;
    left: 50%;
    margin-left: -4px;
    position: absolute;
}

.camera_prev,
.camera_next,
.camera_commands {
    cursor: pointer;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 2;
}

.camera_prev {
    left: 0;
}

    .camera_prev > span {
        background: url(Images/left-right.png) no-repeat left top;
        display: block;
        height: 40px;
        width: 40px;
    }

.camera_next {
    right: 0;
}

    .camera_next > span {
        background: url(../images/camera_skins.png) no-repeat -40px 0;
        display: block;
        height: 40px;
        width: 40px;
    }

.camera_commands {
    right: 41px;
}

    .camera_commands > .camera_play {
        background: url(../images/camera_skins.png) no-repeat -80px 0;
        height: 40px;
        width: 40px;
    }

    .camera_commands > .camera_stop {
        background: url(../images/camera_skins.png) no-repeat -120px 0;
        display: block;
        height: 40px;
        width: 40px;
    }

.camera_wrap .camera_pag .camera_pag_ul li {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    margin: 20px 5px;
    position: relative;
    text-indent: 9999px;
    width: 16px;
}

.camera_thumbs_cont {
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.camera_commands_emboss .camera_thumbs_cont {
    -moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
    box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, .2);
}

.camera_thumbs_cont > div {
    float: left;
    width: 100%;
}

.camera_thumbs_cont ul {
    overflow: hidden;
    padding: 3px 4px 8px;
    position: relative;
    text-align: center;
}

    .camera_thumbs_cont ul li {
        display: inline;
        padding: 0 4px;
    }

        .camera_thumbs_cont ul li > img {
            border: 1px solid;
            cursor: pointer;
            margin-top: 5px;
            vertical-align: bottom;
        }

.camera_clear {
    display: block;
    clear: both;
}

.showIt {
    display: none;
}

.camera_clear {
    clear: both;
    display: block;
    height: 1px;
    margin: -1px 0 25px;
    position: relative;
}

.camera_caption {
    color: #fff;
}

    .camera_caption > div {
        background: #000;
        background: rgba(0, 0, 0, .8);
    }

.camera_wrap .camera_pag .camera_pag_ul li {
    background: #b7b7b7;
}

    .camera_wrap .camera_pag .camera_pag_ul li:hover > span {
        background: #b7b7b7;
    }

    .camera_wrap .camera_pag .camera_pag_ul li.cameracurrent > span {
        background: #434648;
    }

.camera_pag_ul li img {
    border: 4px solid #e6e6e6;
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .5);
}

.camera_pag_ul .thumb_arrow {
    border-top-color: #e6e6e6;
}

.camera_prevThumbs,
.camera_nextThumbs,
.camera_prev,
.camera_next,
.camera_commands,
.camera_thumbs_cont {
    background: #d8d8d8;
    background: rgba(216, 216, 216, .85);
}

.camera_wrap .camera_pag .camera_pag_ul li {
    background: #b7b7b7;
}

.camera_thumbs_cont ul li > img {
    border-color: 1px solid #000;
}

.camera_amber_skin .camera_prevThumbs div {
    background-position: -160px -160px;
}

.camera_amber_skin .camera_nextThumbs div {
    background-position: -190px -160px;
}

.camera_amber_skin .camera_prev > span {
    background-position: 0 -160px;
}

.camera_amber_skin .camera_next > span {
    background-position: -40px -160px;
}

.camera_amber_skin .camera_commands > .camera_play {
    background-position: -80px -160px;
}

.camera_amber_skin .camera_commands > .camera_stop {
    background-position: -120px -160px;
}

.camera_ash_skin .camera_prevThumbs div {
    background-position: -160px -200px;
}

.camera_ash_skin .camera_nextThumbs div {
    background-position: -190px -200px;
}

.camera_ash_skin .camera_prev > span {
    background-position: 0 -200px;
}

.camera_ash_skin .camera_next > span {
    background-position: -40px -200px;
}

.camera_ash_skin .camera_commands > .camera_play {
    background-position: -80px -200px;
}

.camera_ash_skin .camera_commands > .camera_stop {
    background-position: -120px -200px;
}

.camera_azure_skin .camera_prevThumbs div {
    background-position: -160px -240px;
}

.camera_azure_skin .camera_nextThumbs div {
    background-position: -190px -240px;
}

.camera_azure_skin .camera_prev > span {
    background-position: 0 -240px;
}

.camera_azure_skin .camera_next > span {
    background-position: -40px -240px;
}

.camera_azure_skin .camera_commands > .camera_play {
    background-position: -80px -240px;
}

.camera_azure_skin .camera_commands > .camera_stop {
    background-position: -120px -240px;
}

.camera_beige_skin .camera_prevThumbs div {
    background-position: -160px -120px;
}

.camera_beige_skin .camera_nextThumbs div {
    background-position: -190px -120px;
}

.camera_beige_skin .camera_prev > span {
    background-position: 0 -120px;
}

.camera_beige_skin .camera_next > span {
    background-position: -40px -120px;
}

.camera_beige_skin .camera_commands > .camera_play {
    background-position: -80px -120px;
}

.camera_beige_skin .camera_commands > .camera_stop {
    background-position: -120px -120px;
}

.camera_black_skin .camera_prevThumbs div {
    background-position: -160px -40px;
}

.camera_black_skin .camera_nextThumbs div {
    background-position: -190px -40px;
}

.camera_black_skin .camera_prev > span {
    background-position: 0 -40px;
}

.camera_black_skin .camera_next > span {
    background-position: -40px -40px;
}

.camera_black_skin .camera_commands > .camera_play {
    background-position: -80px -40px;
}

.camera_black_skin .camera_commands > .camera_stop {
    background-position: -120px -40px;
}

.camera_blue_skin .camera_prevThumbs div {
    background-position: -160px -280px;
}

.camera_blue_skin .camera_nextThumbs div {
    background-position: -190px -280px;
}

.camera_blue_skin .camera_prev > span {
    background-position: 0 -280px;
}

.camera_blue_skin .camera_next > span {
    background-position: -40px -280px;
}

.camera_blue_skin .camera_commands > .camera_play {
    background-position: -80px -280px;
}

.camera_blue_skin .camera_commands > .camera_stop {
    background-position: -120px -280px;
}

.camera_brown_skin .camera_prevThumbs div {
    background-position: -160px -320px;
}

.camera_brown_skin .camera_nextThumbs div {
    background-position: -190px -320px;
}

.camera_brown_skin .camera_prev > span {
    background-position: 0 -320px;
}

.camera_brown_skin .camera_next > span {
    background-position: -40px -320px;
}

.camera_brown_skin .camera_commands > .camera_play {
    background-position: -80px -320px;
}

.camera_brown_skin .camera_commands > .camera_stop {
    background-position: -120px -320px;
}

.camera_burgundy_skin .camera_prevThumbs div {
    background-position: -160px -360px;
}

.camera_burgundy_skin .camera_nextThumbs div {
    background-position: -190px -360px;
}

.camera_burgundy_skin .camera_prev > span {
    background-position: 0 -360px;
}

.camera_burgundy_skin .camera_next > span {
    background-position: -40px -360px;
}

.camera_burgundy_skin .camera_commands > .camera_play {
    background-position: -80px -360px;
}

.camera_burgundy_skin .camera_commands > .camera_stop {
    background-position: -120px -360px;
}

.camera_charcoal_skin .camera_prevThumbs div {
    background-position: -160px -400px;
}

.camera_charcoal_skin .camera_nextThumbs div {
    background-position: -190px -400px;
}

.camera_charcoal_skin .camera_prev > span {
    background-position: 0 -400px;
}

.camera_charcoal_skin .camera_next > span {
    background-position: -40px -400px;
}

.camera_charcoal_skin .camera_commands > .camera_play {
    background-position: -80px -400px;
}

.camera_charcoal_skin .camera_commands > .camera_stop {
    background-position: -120px -400px;
}

.camera_chocolate_skin .camera_prevThumbs div {
    background-position: -160px -440px;
}

.camera_chocolate_skin .camera_nextThumbs div {
    background-position: -190px -440px;
}

.camera_chocolate_skin .camera_prev > span {
    background-position: 0 -440px;
}

.camera_chocolate_skin .camera_next > span {
    background-position: -40px -440px;
}

.camera_chocolate_skin .camera_commands > .camera_play {
    background-position: -80px -440px;
}

.camera_chocolate_skin .camera_commands > .camera_stop {
    background-position: -120px -440px;
}

.camera_coffee_skin .camera_prevThumbs div {
    background-position: -160px -480px;
}

.camera_coffee_skin .camera_nextThumbs div {
    background-position: -190px -480px;
}

.camera_coffee_skin .camera_prev > span {
    background-position: 0 -480px;
}

.camera_coffee_skin .camera_next > span {
    background-position: -40px -480px;
}

.camera_coffee_skin .camera_commands > .camera_play {
    background-position: -80px -480px;
}

.camera_coffee_skin .camera_commands > .camera_stop {
    background-position: -120px -480px;
}

.camera_cyan_skin .camera_prevThumbs div {
    background-position: -160px -520px;
}

.camera_cyan_skin .camera_nextThumbs div {
    background-position: -190px -520px;
}

.camera_cyan_skin .camera_prev > span {
    background-position: 0 -520px;
}

.camera_cyan_skin .camera_next > span {
    background-position: -40px -520px;
}

.camera_cyan_skin .camera_commands > .camera_play {
    background-position: -80px -520px;
}

.camera_cyan_skin .camera_commands > .camera_stop {
    background-position: -120px -520px;
}

.camera_fuchsia_skin .camera_prevThumbs div {
    background-position: -160px -560px;
}

.camera_fuchsia_skin .camera_nextThumbs div {
    background-position: -190px -560px;
}

.camera_fuchsia_skin .camera_prev > span {
    background-position: 0 -560px;
}

.camera_fuchsia_skin .camera_next > span {
    background-position: -40px -560px;
}

.camera_fuchsia_skin .camera_commands > .camera_play {
    background-position: -80px -560px;
}

.camera_fuchsia_skin .camera_commands > .camera_stop {
    background-position: -120px -560px;
}

.camera_gold_skin .camera_prevThumbs div {
    background-position: -160px -600px;
}

.camera_gold_skin .camera_nextThumbs div {
    background-position: -190px -600px;
}

.camera_gold_skin .camera_prev > span {
    background-position: 0 -600px;
}

.camera_gold_skin .camera_next > span {
    background-position: -40px -600px;
}

.camera_gold_skin .camera_commands > .camera_play {
    background-position: -80px -600px;
}

.camera_gold_skin .camera_commands > .camera_stop {
    background-position: -120px -600px;
}

.camera_green_skin .camera_prevThumbs div {
    background-position: -160px -640px;
}

.camera_green_skin .camera_nextThumbs div {
    background-position: -190px -640px;
}

.camera_green_skin .camera_prev > span {
    background-position: 0 -640px;
}

.camera_green_skin .camera_next > span {
    background-position: -40px -640px;
}

.camera_green_skin .camera_commands > .camera_play {
    background-position: -80px -640px;
}

.camera_green_skin .camera_commands > .camera_stop {
    background-position: -120px -640px;
}

.camera_grey_skin .camera_prevThumbs div {
    background-position: -160px -680px;
}

.camera_grey_skin .camera_nextThumbs div {
    background-position: -190px -680px;
}

.camera_grey_skin .camera_prev > span {
    background-position: 0 -680px;
}

.camera_grey_skin .camera_next > span {
    background-position: -40px -680px;
}

.camera_grey_skin .camera_commands > .camera_play {
    background-position: -80px -680px;
}

.camera_grey_skin .camera_commands > .camera_stop {
    background-position: -120px -680px;
}

.camera_indigo_skin .camera_prevThumbs div {
    background-position: -160px -720px;
}

.camera_indigo_skin .camera_nextThumbs div {
    background-position: -190px -720px;
}

.camera_indigo_skin .camera_prev > span {
    background-position: 0 -720px;
}

.camera_indigo_skin .camera_next > span {
    background-position: -40px -720px;
}

.camera_indigo_skin .camera_commands > .camera_play {
    background-position: -80px -720px;
}

.camera_indigo_skin .camera_commands > .camera_stop {
    background-position: -120px -720px;
}

.camera_khaki_skin .camera_prevThumbs div {
    background-position: -160px -760px;
}

.camera_khaki_skin .camera_nextThumbs div {
    background-position: -190px -760px;
}

.camera_khaki_skin .camera_prev > span {
    background-position: 0 -760px;
}

.camera_khaki_skin .camera_next > span {
    background-position: -40px -760px;
}

.camera_khaki_skin .camera_commands > .camera_play {
    background-position: -80px -760px;
}

.camera_khaki_skin .camera_commands > .camera_stop {
    background-position: -120px -760px;
}

.camera_lime_skin .camera_prevThumbs div {
    background-position: -160px -800px;
}

.camera_lime_skin .camera_nextThumbs div {
    background-position: -190px -800px;
}

.camera_lime_skin .camera_prev > span {
    background-position: 0 -800px;
}

.camera_lime_skin .camera_next > span {
    background-position: -40px -800px;
}

.camera_lime_skin .camera_commands > .camera_play {
    background-position: -80px -800px;
}

.camera_lime_skin .camera_commands > .camera_stop {
    background-position: -120px -800px;
}

.camera_magenta_skin .camera_prevThumbs div {
    background-position: -160px -840px;
}

.camera_magenta_skin .camera_nextThumbs div {
    background-position: -190px -840px;
}

.camera_magenta_skin .camera_prev > span {
    background-position: 0 -840px;
}

.camera_magenta_skin .camera_next > span {
    background-position: -40px -840px;
}

.camera_magenta_skin .camera_commands > .camera_play {
    background-position: -80px -840px;
}

.camera_magenta_skin .camera_commands > .camera_stop {
    background-position: -120px -840px;
}

.camera_maroon_skin .camera_prevThumbs div {
    background-position: -160px -880px;
}

.camera_maroon_skin .camera_nextThumbs div {
    background-position: -190px -880px;
}

.camera_maroon_skin .camera_prev > span {
    background-position: 0 -880px;
}

.camera_maroon_skin .camera_next > span {
    background-position: -40px -880px;
}

.camera_maroon_skin .camera_commands > .camera_play {
    background-position: -80px -880px;
}

.camera_maroon_skin .camera_commands > .camera_stop {
    background-position: -120px -880px;
}

.camera_orange_skin .camera_prevThumbs div {
    background-position: -160px -920px;
}

.camera_orange_skin .camera_nextThumbs div {
    background-position: -190px -920px;
}

.camera_orange_skin .camera_prev > span {
    background-position: 0 -920px;
}

.camera_orange_skin .camera_next > span {
    background-position: -40px -920px;
}

.camera_orange_skin .camera_commands > .camera_play {
    background-position: -80px -920px;
}

.camera_orange_skin .camera_commands > .camera_stop {
    background-position: -120px -920px;
}

.camera_olive_skin .camera_prevThumbs div {
    background-position: -160px -1080px;
}

.camera_olive_skin .camera_nextThumbs div {
    background-position: -190px -1080px;
}

.camera_olive_skin .camera_prev > span {
    background-position: 0 -1080px;
}

.camera_olive_skin .camera_next > span {
    background-position: -40px -1080px;
}

.camera_olive_skin .camera_commands > .camera_play {
    background-position: -80px -1080px;
}

.camera_olive_skin .camera_commands > .camera_stop {
    background-position: -120px -1080px;
}

.camera_pink_skin .camera_prevThumbs div {
    background-position: -160px -960px;
}

.camera_pink_skin .camera_nextThumbs div {
    background-position: -190px -960px;
}

.camera_pink_skin .camera_prev > span {
    background-position: 0 -960px;
}

.camera_pink_skin .camera_next > span {
    background-position: -40px -960px;
}

.camera_pink_skin .camera_commands > .camera_play {
    background-position: -80px -960px;
}

.camera_pink_skin .camera_commands > .camera_stop {
    background-position: -120px -960px;
}

.camera_pistachio_skin .camera_prevThumbs div {
    background-position: -160px -1040px;
}

.camera_pistachio_skin .camera_nextThumbs div {
    background-position: -190px -1040px;
}

.camera_pistachio_skin .camera_prev > span {
    background-position: 0 -1040px;
}

.camera_pistachio_skin .camera_next > span {
    background-position: -40px -1040px;
}

.camera_pistachio_skin .camera_commands > .camera_play {
    background-position: -80px -1040px;
}

.camera_pistachio_skin .camera_commands > .camera_stop {
    background-position: -120px -1040px;
}

.camera_pink_skin .camera_prevThumbs div {
    background-position: -160px -80px;
}

.camera_pink_skin .camera_nextThumbs div {
    background-position: -190px -80px;
}

.camera_pink_skin .camera_prev > span {
    background-position: 0 -80px;
}

.camera_pink_skin .camera_next > span {
    background-position: -40px -80px;
}

.camera_pink_skin .camera_commands > .camera_play {
    background-position: -80px -80px;
}

.camera_pink_skin .camera_commands > .camera_stop {
    background-position: -120px -80px;
}

.camera_red_skin .camera_prevThumbs div {
    background-position: -160px -1000px;
}

.camera_red_skin .camera_nextThumbs div {
    background-position: -190px -1000px;
}

.camera_red_skin .camera_prev > span {
    background-position: 0 -1000px;
}

.camera_red_skin .camera_next > span {
    background-position: -40px -1000px;
}

.camera_red_skin .camera_commands > .camera_play {
    background-position: -80px -1000px;
}

.camera_red_skin .camera_commands > .camera_stop {
    background-position: -120px -1000px;
}

.camera_tangerine_skin .camera_prevThumbs div {
    background-position: -160px -1120px;
}

.camera_tangerine_skin .camera_nextThumbs div {
    background-position: -190px -1120px;
}

.camera_tangerine_skin .camera_prev > span {
    background-position: 0 -1120px;
}

.camera_tangerine_skin .camera_next > span {
    background-position: -40px -1120px;
}

.camera_tangerine_skin .camera_commands > .camera_play {
    background-position: -80px -1120px;
}

.camera_tangerine_skin .camera_commands > .camera_stop {
    background-position: -120px -1120px;
}

.camera_turquoise_skin .camera_prevThumbs div {
    background-position: -160px -1160px;
}

.camera_turquoise_skin .camera_nextThumbs div {
    background-position: -190px -1160px;
}

.camera_turquoise_skin .camera_prev > span {
    background-position: 0 -1160px;
}

.camera_turquoise_skin .camera_next > span {
    background-position: -40px -1160px;
}

.camera_turquoise_skin .camera_commands > .camera_play {
    background-position: -80px -1160px;
}

.camera_turquoise_skin .camera_commands > .camera_stop {
    background-position: -120px -1160px;
}

.camera_violet_skin .camera_prevThumbs div {
    background-position: -160px -1200px;
}

.camera_violet_skin .camera_nextThumbs div {
    background-position: -190px -1200px;
}

.camera_violet_skin .camera_prev > span {
    background-position: 0 -1200px;
}

.camera_violet_skin .camera_next > span {
    background-position: -40px -1200px;
}

.camera_violet_skin .camera_commands > .camera_play {
    background-position: -80px -1200px;
}

.camera_violet_skin .camera_commands > .camera_stop {
    background-position: -120px -1200px;
}

.camera_white_skin .camera_prevThumbs div {
    background-position: -160px -80px;
}

.camera_white_skin .camera_nextThumbs div {
    background-position: -190px -80px;
}

.camera_white_skin .camera_prev > span {
    background-position: 0 -80px;
}

.camera_white_skin .camera_next > span {
    background-position: -40px -80px;
}

.camera_white_skin .camera_commands > .camera_play {
    background-position: -80px -80px;
}

.camera_white_skin .camera_commands > .camera_stop {
    background-position: -120px -80px;
}

.camera_yellow_skin .camera_prevThumbs div {
    background-position: -160px -1240px;
}

.camera_yellow_skin .camera_nextThumbs div {
    background-position: -190px -1240px;
}

.camera_yellow_skin .camera_prev > span {
    background-position: 0 -1240px;
}

.camera_yellow_skin .camera_next > span {
    background-position: -40px -1240px;
}

.camera_yellow_skin .camera_commands > .camera_play {
    background-position: -80px -1240px;
}

.camera_yellow_skin .camera_commands > .camera_stop {
    background-position: -120px -1240px;
}

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.fancybox-opened {
    z-index: 8030;
}

    .fancybox-opened .fancybox-skin {
        -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
        -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
        box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
    }

.fancybox-outer,
.fancybox-inner {
    position: relative;
}

.fancybox-inner {
    overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch;
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
    background-image: url('images/fancybox_sprite.png');
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: .8;
    cursor: pointer;
    z-index: 8060;
}

    #fancybox-loading div {
        width: 44px;
        height: 44px;
        background: url('images/fancybox_loading.gif') center center no-repeat;
    }

.fancybox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040;
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url('images/blank.gif');
    -webkit-tap-highlight-color: transparent;
    z-index: 8040;
}

.fancybox-prev {
    left: 0;
}

.fancybox-next {
    right: 0;
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden;
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px;
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px;
}

.fancybox-nav:hover span {
    visibility: visible;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

    .fancybox-lock body {
        overflow: hidden !important;
    }

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url('images/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050;
}

.fancybox-opened .fancybox-title {
    visibility: visible;
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center;
}

    .fancybox-title-float-wrap .child {
        display: inline-block;
        margin-right: -100%;
        padding: 2px 20px;
        background: transparent;
        background: rgba(0, 0, 0, .8);
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        text-shadow: 0 1px 2px #222;
        color: #fff;
        font-weight: bold;
        line-height: 24px;
        white-space: nowrap;
    }

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff;
}

.fancybox-title-inside-wrap {
    padding-top: 10px;
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, .8);
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    #fancybox-loading,
    .fancybox-close,
    .fancybox-prev span,
    .fancybox-next span {
        background-image: url('images/fancybox_sprite@2x.png');
        background-size: 44px 152px;
    }

        #fancybox-loading div {
            background-image: url('images/fancybox_loading@2x.gif');
            background-size: 24px 24px;
        }
}

@font-face {
    font-family: 'FontAwesome';
    src: url('fonts/fontawesome-webfont-v=4.2.0.eot');
    src: url('fonts/fontawesome-webfont-.eot') format('embedded-opentype'), url('fonts/fontawesome-webfont-v=4.2.0.woff') format('woff'), url('fonts/fontawesome-webfont-v=4.2.0.ttf') format('truetype'), url('fonts/fontawesome-webfont-v=4.2.0.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

    .fa-ul > li {
        position: relative;
    }

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center;
}

    .fa-li.fa-lg {
        left: -1.85714286em;
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-glass:before {
    content: "ï€€";
}

.fa-music:before {
    content: "ï€";
}

.fa-search:before {
    content: "ï€‚";
}

.fa-envelope-o:before {
    content: "ï€ƒ";
}

.fa-heart:before {
    content: "ï€„";
}

.fa-star:before {
    content: "ï€…";
}

.fa-star-o:before {
    content: "ï€†";
}

.fa-user:before {
    content: "ï€‡";
}

.fa-film:before {
    content: "ï€ˆ";
}

.fa-th-large:before {
    content: "ï€‰";
}

.fa-th:before {
    content: "ï€Š";
}

.fa-th-list:before {
    content: "ï€‹";
}

.fa-check:before {
    content: "ï€Œ";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "ï€";
}

.fa-search-plus:before {
    content: "ï€Ž";
}

.fa-search-minus:before {
    content: "ï€";
}

.fa-power-off:before {
    content: "ï€‘";
}

.fa-signal:before {
    content: "ï€’";
}

.fa-gear:before,
.fa-cog:before {
    content: "ï€“";
}

.fa-trash-o:before {
    content: "ï€”";
}

.fa-home:before {
    content: "ï€•";
}

.fa-file-o:before {
    content: "ï€–";
}

.fa-clock-o:before {
    content: "ï€—";
}

.fa-road:before {
    content: "ï€˜";
}

.fa-download:before {
    content: "ï€™";
}

.fa-arrow-circle-o-down:before {
    content: "ï€š";
}

.fa-arrow-circle-o-up:before {
    content: "ï€›";
}

.fa-inbox:before {
    content: "ï€œ";
}

.fa-play-circle-o:before {
    content: "ï€";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "ï€ž";
}

.fa-refresh:before {
    content: "ï€¡";
}

.fa-list-alt:before {
    content: "ï€¢";
}

.fa-lock:before {
    content: "ï€£";
}

.fa-flag:before {
    content: "ï€¤";
}

.fa-headphones:before {
    content: "ï€¥";
}

.fa-volume-off:before {
    content: "ï€¦";
}

.fa-volume-down:before {
    content: "ï€§";
}

.fa-volume-up:before {
    content: "ï€¨";
}

.fa-qrcode:before {
    content: "ï€©";
}

.fa-barcode:before {
    content: "ï€ª";
}

.fa-tag:before {
    content: "ï€«";
}

.fa-tags:before {
    content: "ï€¬";
}

.fa-book:before {
    content: "ï€­";
}

.fa-bookmark:before {
    content: "ï€®";
}

.fa-print:before {
    content: "ï€¯";
}

.fa-camera:before {
    content: "ï€°";
}

.fa-font:before {
    content: "ï€±";
}

.fa-bold:before {
    content: "ï€²";
}

.fa-italic:before {
    content: "ï€³";
}

.fa-text-height:before {
    content: "ï€´";
}

.fa-text-width:before {
    content: "ï€µ";
}

.fa-align-left:before {
    content: "ï€¶";
}

.fa-align-center:before {
    content: "ï€·";
}

.fa-align-right:before {
    content: "ï€¸";
}

.fa-align-justify:before {
    content: "ï€¹";
}

.fa-list:before {
    content: "ï€º";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "ï€»";
}

.fa-indent:before {
    content: "ï€¼";
}

.fa-video-camera:before {
    content: "ï€½";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "ï€¾";
}

.fa-pencil:before {
    content: "ï€";
}

.fa-map-marker:before {
    content: "ï";
}

.fa-adjust:before {
    content: "ï‚";
}

.fa-tint:before {
    content: "ïƒ";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "ï„";
}

.fa-share-square-o:before {
    content: "ï…";
}

.fa-check-square-o:before {
    content: "ï†";
}

.fa-arrows:before {
    content: "ï‡";
}

.fa-step-backward:before {
    content: "ïˆ";
}

.fa-fast-backward:before {
    content: "ï‰";
}

.fa-backward:before {
    content: "ïŠ";
}

.fa-play:before {
    content: "ï‹";
}

.fa-pause:before {
    content: "ïŒ";
}

.fa-stop:before {
    content: "ï";
}

.fa-forward:before {
    content: "ïŽ";
}

.fa-fast-forward:before {
    content: "ï";
}

.fa-step-forward:before {
    content: "ï‘";
}

.fa-eject:before {
    content: "ï’";
}

.fa-chevron-left:before {
    content: "ï“";
}

.fa-chevron-right:before {
    content: "ï”";
}

.fa-plus-circle:before {
    content: "ï•";
}

.fa-minus-circle:before {
    content: "ï–";
}

.fa-times-circle:before {
    content: "ï—";
}

.fa-check-circle:before {
    content: "ï˜";
}

.fa-question-circle:before {
    content: "ï™";
}

.fa-info-circle:before {
    content: "ïš";
}

.fa-crosshairs:before {
    content: "ï›";
}

.fa-times-circle-o:before {
    content: "ïœ";
}

.fa-check-circle-o:before {
    content: "ï";
}

.fa-ban:before {
    content: "ïž";
}

.fa-arrow-left:before {
    content: "ï ";
}

.fa-arrow-right:before {
    content: "ï¡";
}

.fa-arrow-up:before {
    content: "ï¢";
}

.fa-arrow-down:before {
    content: "ï£";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "ï¤";
}

.fa-expand:before {
    content: "ï¥";
}

.fa-compress:before {
    content: "ï¦";
}

.fa-plus:before {
    content: "ï§";
}

.fa-minus:before {
    content: "ï¨";
}

.fa-asterisk:before {
    content: "ï©";
}

.fa-exclamation-circle:before {
    content: "ïª";
}

.fa-gift:before {
    content: "ï«";
}

.fa-leaf:before {
    content: "ï¬";
}

.fa-fire:before {
    content: "ï­";
}

.fa-eye:before {
    content: "ï®";
}

.fa-eye-slash:before {
    content: "ï°";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "ï±";
}

.fa-plane:before {
    content: "ï²";
}

.fa-calendar:before {
    content: "ï³";
}

.fa-random:before {
    content: "ï´";
}

.fa-comment:before {
    content: "ïµ";
}

.fa-magnet:before {
    content: "ï¶";
}

.fa-chevron-up:before {
    content: "ï·";
}

.fa-chevron-down:before {
    content: "ï¸";
}

.fa-retweet:before {
    content: "ï¹";
}

.fa-shopping-cart:before {
    content: "ïº";
}

.fa-folder:before {
    content: "ï»";
}

.fa-folder-open:before {
    content: "ï¼";
}

.fa-arrows-v:before {
    content: "ï½";
}

.fa-arrows-h:before {
    content: "ï¾";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "ï‚€";
}

.fa-twitter-square:before {
    content: "ï‚";
}

.fa-facebook-square:before {
    content: "ï‚‚";
}

.fa-camera-retro:before {
    content: "ï‚ƒ";
}

.fa-key:before {
    content: "ï‚„";
}

.fa-gears:before,
.fa-cogs:before {
    content: "ï‚…";
}

.fa-comments:before {
    content: "ï‚†";
}

.fa-thumbs-o-up:before {
    content: "ï‚‡";
}

.fa-thumbs-o-down:before {
    content: "ï‚ˆ";
}

.fa-star-half:before {
    content: "ï‚‰";
}

.fa-heart-o:before {
    content: "ï‚Š";
}

.fa-sign-out:before {
    content: "ï‚‹";
}

.fa-linkedin-square:before {
    content: "ï‚Œ";
}

.fa-thumb-tack:before {
    content: "ï‚";
}

.fa-external-link:before {
    content: "ï‚Ž";
}

.fa-sign-in:before {
    content: "ï‚";
}

.fa-trophy:before {
    content: "ï‚‘";
}

.fa-github-square:before {
    content: "ï‚’";
}

.fa-upload:before {
    content: "ï‚“";
}

.fa-lemon-o:before {
    content: "ï‚”";
}

.fa-phone:before {
    content: "ï‚•";
}

.fa-square-o:before {
    content: "ï‚–";
}

.fa-bookmark-o:before {
    content: "ï‚—";
}

.fa-phone-square:before {
    content: "ï‚˜";
}

.fa-twitter:before {
    content: "ï‚™";
}

.fa-facebook:before {
    content: "ï‚š";
}

.fa-github:before {
    content: "ï‚›";
}

.fa-unlock:before {
    content: "ï‚œ";
}

.fa-credit-card:before {
    content: "ï‚";
}

.fa-rss:before {
    content: "ï‚ž";
}

.fa-hdd-o:before {
    content: "ï‚ ";
}

.fa-bullhorn:before {
    content: "ï‚¡";
}

.fa-bell:before {
    content: "ïƒ³";
}

.fa-certificate:before {
    content: "ï‚£";
}

.fa-hand-o-right:before {
    content: "ï‚¤";
}

.fa-hand-o-left:before {
    content: "ï‚¥";
}

.fa-hand-o-up:before {
    content: "ï‚¦";
}

.fa-hand-o-down:before {
    content: "ï‚§";
}

.fa-arrow-circle-left:before {
    content: "ï‚¨";
}

.fa-arrow-circle-right:before {
    content: "ï‚©";
}

.fa-arrow-circle-up:before {
    content: "ï‚ª";
}

.fa-arrow-circle-down:before {
    content: "ï‚«";
}

.fa-globe:before {
    content: "ï‚¬";
}

.fa-wrench:before {
    content: "ï‚­";
}

.fa-tasks:before {
    content: "ï‚®";
}

.fa-filter:before {
    content: "ï‚°";
}

.fa-briefcase:before {
    content: "ï‚±";
}

.fa-arrows-alt:before {
    content: "ï‚²";
}

.fa-group:before,
.fa-users:before {
    content: "ïƒ€";
}

.fa-chain:before,
.fa-link:before {
    content: "ïƒ";
}

.fa-cloud:before {
    content: "ïƒ‚";
}

.fa-flask:before {
    content: "ïƒƒ";
}

.fa-cut:before,
.fa-scissors:before {
    content: "ïƒ„";
}

.fa-copy:before,
.fa-files-o:before {
    content: "ïƒ…";
}

.fa-paperclip:before {
    content: "ïƒ†";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "ïƒ‡";
}

.fa-square:before {
    content: "ïƒˆ";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "ïƒ‰";
}

.fa-list-ul:before {
    content: "ïƒŠ";
}

.fa-list-ol:before {
    content: "ïƒ‹";
}

.fa-strikethrough:before {
    content: "ïƒŒ";
}

.fa-underline:before {
    content: "ïƒ";
}

.fa-table:before {
    content: "ïƒŽ";
}

.fa-magic:before {
    content: "ïƒ";
}

.fa-truck:before {
    content: "ïƒ‘";
}

.fa-pinterest:before {
    content: "ïƒ’";
}

.fa-pinterest-square:before {
    content: "ïƒ“";
}

.fa-google-plus-square:before {
    content: "ïƒ”";
}

.fa-google-plus:before {
    content: "ïƒ•";
}

.fa-money:before {
    content: "ïƒ–";
}

.fa-caret-down:before {
    content: "ïƒ—";
}

.fa-caret-up:before {
    content: "ïƒ˜";
}

.fa-caret-left:before {
    content: "ïƒ™";
}

.fa-caret-right:before {
    content: "ïƒš";
}

.fa-columns:before {
    content: "ïƒ›";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "ïƒœ";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "ïƒ";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "ïƒž";
}

.fa-envelope:before {
    content: "ïƒ ";
}

.fa-linkedin:before {
    content: "ïƒ¡";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "ïƒ¢";
}

.fa-legal:before,
.fa-gavel:before {
    content: "ïƒ£";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "ïƒ¤";
}

.fa-comment-o:before {
    content: "ïƒ¥";
}

.fa-comments-o:before {
    content: "ïƒ¦";
}

.fa-flash:before,
.fa-bolt:before {
    content: "ïƒ§";
}

.fa-sitemap:before {
    content: "ïƒ¨";
}

.fa-umbrella:before {
    content: "ïƒ©";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "ïƒª";
}

.fa-lightbulb-o:before {
    content: "ïƒ«";
}

.fa-exchange:before {
    content: "ïƒ¬";
}

.fa-cloud-download:before {
    content: "ïƒ­";
}

.fa-cloud-upload:before {
    content: "ïƒ®";
}

.fa-user-md:before {
    content: "ïƒ°";
}

.fa-stethoscope:before {
    content: "ïƒ±";
}

.fa-suitcase:before {
    content: "ïƒ²";
}

.fa-bell-o:before {
    content: "ï‚¢";
}

.fa-coffee:before {
    content: "ïƒ´";
}

.fa-cutlery:before {
    content: "ïƒµ";
}

.fa-file-text-o:before {
    content: "ïƒ¶";
}

.fa-building-o:before {
    content: "ïƒ·";
}

.fa-hospital-o:before {
    content: "ïƒ¸";
}

.fa-ambulance:before {
    content: "ïƒ¹";
}

.fa-medkit:before {
    content: "ïƒº";
}

.fa-fighter-jet:before {
    content: "ïƒ»";
}

.fa-beer:before {
    content: "ïƒ¼";
}

.fa-h-square:before {
    content: "ïƒ½";
}

.fa-plus-square:before {
    content: "ïƒ¾";
}

.fa-angle-double-left:before {
    content: "ï„€";
}

.fa-angle-double-right:before {
    content: "ï„";
}

.fa-angle-double-up:before {
    content: "ï„‚";
}

.fa-angle-double-down:before {
    content: "ï„ƒ";
}

.fa-angle-left:before {
    content: "ï„„";
}

.fa-angle-right:before {
    content: "ï„…";
}

.fa-angle-up:before {
    content: "ï„†";
}

.fa-angle-down:before {
    content: "ï„‡";
}

.fa-desktop:before {
    content: "ï„ˆ";
}

.fa-laptop:before {
    content: "ï„‰";
}

.fa-tablet:before {
    content: "ï„Š";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "ï„‹";
}

.fa-circle-o:before {
    content: "ï„Œ";
}

.fa-quote-left:before {
    content: "ï„";
}

.fa-quote-right:before {
    content: "ï„Ž";
}

.fa-spinner:before {
    content: "ï„";
}

.fa-circle:before {
    content: "ï„‘";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "ï„’";
}

.fa-github-alt:before {
    content: "ï„“";
}

.fa-folder-o:before {
    content: "ï„”";
}

.fa-folder-open-o:before {
    content: "ï„•";
}

.fa-smile-o:before {
    content: "ï„˜";
}

.fa-frown-o:before {
    content: "ï„™";
}

.fa-meh-o:before {
    content: "ï„š";
}

.fa-gamepad:before {
    content: "ï„›";
}

.fa-keyboard-o:before {
    content: "ï„œ";
}

.fa-flag-o:before {
    content: "ï„";
}

.fa-flag-checkered:before {
    content: "ï„ž";
}

.fa-terminal:before {
    content: "ï„ ";
}

.fa-code:before {
    content: "ï„¡";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "ï„¢";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "ï„£";
}

.fa-location-arrow:before {
    content: "ï„¤";
}

.fa-crop:before {
    content: "ï„¥";
}

.fa-code-fork:before {
    content: "ï„¦";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "ï„§";
}

.fa-question:before {
    content: "ï„¨";
}

.fa-info:before {
    content: "ï„©";
}

.fa-exclamation:before {
    content: "ï„ª";
}

.fa-superscript:before {
    content: "ï„«";
}

.fa-subscript:before {
    content: "ï„¬";
}

.fa-eraser:before {
    content: "ï„­";
}

.fa-puzzle-piece:before {
    content: "ï„®";
}

.fa-microphone:before {
    content: "ï„°";
}

.fa-microphone-slash:before {
    content: "ï„±";
}

.fa-shield:before {
    content: "ï„²";
}

.fa-calendar-o:before {
    content: "ï„³";
}

.fa-fire-extinguisher:before {
    content: "ï„´";
}

.fa-rocket:before {
    content: "ï„µ";
}

.fa-maxcdn:before {
    content: "ï„¶";
}

.fa-chevron-circle-left:before {
    content: "ï„·";
}

.fa-chevron-circle-right:before {
    content: "ï„¸";
}

.fa-chevron-circle-up:before {
    content: "ï„¹";
}

.fa-chevron-circle-down:before {
    content: "ï„º";
}

.fa-html5:before {
    content: "ï„»";
}

.fa-css3:before {
    content: "ï„¼";
}

.fa-anchor:before {
    content: "ï„½";
}

.fa-unlock-alt:before {
    content: "ï„¾";
}

.fa-bullseye:before {
    content: "ï…€";
}

.fa-ellipsis-h:before {
    content: "ï…";
}

.fa-ellipsis-v:before {
    content: "ï…‚";
}

.fa-rss-square:before {
    content: "ï…ƒ";
}

.fa-play-circle:before {
    content: "ï…„";
}

.fa-ticket:before {
    content: "ï……";
}

.fa-minus-square:before {
    content: "ï…†";
}

.fa-minus-square-o:before {
    content: "ï…‡";
}

.fa-level-up:before {
    content: "ï…ˆ";
}

.fa-level-down:before {
    content: "ï…‰";
}

.fa-check-square:before {
    content: "ï…Š";
}

.fa-pencil-square:before {
    content: "ï…‹";
}

.fa-external-link-square:before {
    content: "ï…Œ";
}

.fa-share-square:before {
    content: "ï…";
}

.fa-compass:before {
    content: "ï…Ž";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "ï…";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "ï…‘";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "ï…’";
}

.fa-euro:before,
.fa-eur:before {
    content: "ï…“";
}

.fa-gbp:before {
    content: "ï…”";
}

.fa-dollar:before,
.fa-usd:before {
    content: "ï…•";
}

.fa-rupee:before,
.fa-inr:before {
    content: "ï…–";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "ï…—";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "ï…˜";
}

.fa-won:before,
.fa-krw:before {
    content: "ï…™";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "ï…š";
}

.fa-file:before {
    content: "ï…›";
}

.fa-file-text:before {
    content: "ï…œ";
}

.fa-sort-alpha-asc:before {
    content: "ï…";
}

.fa-sort-alpha-desc:before {
    content: "ï…ž";
}

.fa-sort-amount-asc:before {
    content: "ï… ";
}

.fa-sort-amount-desc:before {
    content: "ï…¡";
}

.fa-sort-numeric-asc:before {
    content: "ï…¢";
}

.fa-sort-numeric-desc:before {
    content: "ï…£";
}

.fa-thumbs-up:before {
    content: "ï…¤";
}

.fa-thumbs-down:before {
    content: "ï…¥";
}

.fa-youtube-square:before {
    content: "ï…¦";
}

.fa-youtube:before {
    content: "ï…§";
}

.fa-xing:before {
    content: "ï…¨";
}

.fa-xing-square:before {
    content: "ï…©";
}

.fa-youtube-play:before {
    content: "ï…ª";
}

.fa-dropbox:before {
    content: "ï…«";
}

.fa-stack-overflow:before {
    content: "ï…¬";
}

.fa-instagram:before {
    content: "ï…­";
}

.fa-flickr:before {
    content: "ï…®";
}

.fa-adn:before {
    content: "ï…°";
}

.fa-bitbucket:before {
    content: "ï…±";
}

.fa-bitbucket-square:before {
    content: "ï…²";
}

.fa-tumblr:before {
    content: "ï…³";
}

.fa-tumblr-square:before {
    content: "ï…´";
}

.fa-long-arrow-down:before {
    content: "ï…µ";
}

.fa-long-arrow-up:before {
    content: "ï…¶";
}

.fa-long-arrow-left:before {
    content: "ï…·";
}

.fa-long-arrow-right:before {
    content: "ï…¸";
}

.fa-apple:before {
    content: "ï…¹";
}

.fa-windows:before {
    content: "ï…º";
}

.fa-android:before {
    content: "ï…»";
}

.fa-linux:before {
    content: "ï…¼";
}

.fa-dribbble:before {
    content: "ï…½";
}

.fa-skype:before {
    content: "ï…¾";
}

.fa-foursquare:before {
    content: "ï†€";
}

.fa-trello:before {
    content: "ï†";
}

.fa-female:before {
    content: "ï†‚";
}

.fa-male:before {
    content: "ï†ƒ";
}

.fa-gittip:before {
    content: "ï†„";
}

.fa-sun-o:before {
    content: "ï†…";
}

.fa-moon-o:before {
    content: "ï††";
}

.fa-archive:before {
    content: "ï†‡";
}

.fa-bug:before {
    content: "ï†ˆ";
}

.fa-vk:before {
    content: "ï†‰";
}

.fa-weibo:before {
    content: "ï†Š";
}

.fa-renren:before {
    content: "ï†‹";
}

.fa-pagelines:before {
    content: "ï†Œ";
}

.fa-stack-exchange:before {
    content: "ï†";
}

.fa-arrow-circle-o-right:before {
    content: "ï†Ž";
}

.fa-arrow-circle-o-left:before {
    content: "ï†";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "ï†‘";
}

.fa-dot-circle-o:before {
    content: "ï†’";
}

.fa-wheelchair:before {
    content: "ï†“";
}

.fa-vimeo-square:before {
    content: "ï†”";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "ï†•";
}

.fa-plus-square-o:before {
    content: "ï†–";
}

.fa-space-shuttle:before {
    content: "ï†—";
}

.fa-slack:before {
    content: "ï†˜";
}

.fa-envelope-square:before {
    content: "ï†™";
}

.fa-wordpress:before {
    content: "ï†š";
}

.fa-openid:before {
    content: "ï†›";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "ï†œ";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "ï†";
}

.fa-yahoo:before {
    content: "ï†ž";
}

.fa-google:before {
    content: "ï† ";
}

.fa-reddit:before {
    content: "ï†¡";
}

.fa-reddit-square:before {
    content: "ï†¢";
}

.fa-stumbleupon-circle:before {
    content: "ï†£";
}

.fa-stumbleupon:before {
    content: "ï†¤";
}

.fa-delicious:before {
    content: "ï†¥";
}

.fa-digg:before {
    content: "ï†¦";
}

.fa-pied-piper:before {
    content: "ï†§";
}

.fa-pied-piper-alt:before {
    content: "ï†¨";
}

.fa-drupal:before {
    content: "ï†©";
}

.fa-joomla:before {
    content: "ï†ª";
}

.fa-language:before {
    content: "ï†«";
}

.fa-fax:before {
    content: "ï†¬";
}

.fa-building:before {
    content: "ï†­";
}

.fa-child:before {
    content: "ï†®";
}

.fa-paw:before {
    content: "ï†°";
}

.fa-spoon:before {
    content: "ï†±";
}

.fa-cube:before {
    content: "ï†²";
}

.fa-cubes:before {
    content: "ï†³";
}

.fa-behance:before {
    content: "ï†´";
}

.fa-behance-square:before {
    content: "ï†µ";
}

.fa-steam:before {
    content: "ï†¶";
}

.fa-steam-square:before {
    content: "ï†·";
}

.fa-recycle:before {
    content: "ï†¸";
}

.fa-automobile:before,
.fa-car:before {
    content: "ï†¹";
}

.fa-cab:before,
.fa-taxi:before {
    content: "ï†º";
}

.fa-tree:before {
    content: "ï†»";
}

.fa-spotify:before {
    content: "ï†¼";
}

.fa-deviantart:before {
    content: "ï†½";
}

.fa-soundcloud:before {
    content: "ï†¾";
}

.fa-database:before {
    content: "ï‡€";
}

.fa-file-pdf-o:before {
    content: "ï‡";
}

.fa-file-word-o:before {
    content: "ï‡‚";
}

.fa-file-excel-o:before {
    content: "ï‡ƒ";
}

.fa-file-powerpoint-o:before {
    content: "ï‡„";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "ï‡…";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "ï‡†";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "ï‡‡";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "ï‡ˆ";
}

.fa-file-code-o:before {
    content: "ï‡‰";
}

.fa-vine:before {
    content: "ï‡Š";
}

.fa-codepen:before {
    content: "ï‡‹";
}

.fa-jsfiddle:before {
    content: "ï‡Œ";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "ï‡";
}

.fa-circle-o-notch:before {
    content: "ï‡Ž";
}

.fa-ra:before,
.fa-rebel:before {
    content: "ï‡";
}

.fa-ge:before,
.fa-empire:before {
    content: "ï‡‘";
}

.fa-git-square:before {
    content: "ï‡’";
}

.fa-git:before {
    content: "ï‡“";
}

.fa-hacker-news:before {
    content: "ï‡”";
}

.fa-tencent-weibo:before {
    content: "ï‡•";
}

.fa-qq:before {
    content: "ï‡–";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "ï‡—";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "ï‡˜";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "ï‡™";
}

.fa-history:before {
    content: "ï‡š";
}

.fa-circle-thin:before {
    content: "ï‡›";
}

.fa-header:before {
    content: "ï‡œ";
}

.fa-paragraph:before {
    content: "ï‡";
}

.fa-sliders:before {
    content: "ï‡ž";
}

.fa-share-alt:before {
    content: "ï‡ ";
}

.fa-share-alt-square:before {
    content: "ï‡¡";
}

.fa-bomb:before {
    content: "ï‡¢";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "ï‡£";
}

.fa-tty:before {
    content: "ï‡¤";
}

.fa-binoculars:before {
    content: "ï‡¥";
}

.fa-plug:before {
    content: "ï‡¦";
}

.fa-slideshare:before {
    content: "ï‡§";
}

.fa-twitch:before {
    content: "ï‡¨";
}

.fa-yelp:before {
    content: "ï‡©";
}

.fa-newspaper-o:before {
    content: "ï‡ª";
}

.fa-wifi:before {
    content: "ï‡«";
}

.fa-calculator:before {
    content: "ï‡¬";
}

.fa-paypal:before {
    content: "ï‡­";
}

.fa-google-wallet:before {
    content: "ï‡®";
}

.fa-cc-visa:before {
    content: "ï‡°";
}

.fa-cc-mastercard:before {
    content: "ï‡±";
}

.fa-cc-discover:before {
    content: "ï‡²";
}

.fa-cc-amex:before {
    content: "ï‡³";
}

.fa-cc-paypal:before {
    content: "ï‡´";
}

.fa-cc-stripe:before {
    content: "ï‡µ";
}

.fa-bell-slash:before {
    content: "ï‡¶";
}

.fa-bell-slash-o:before {
    content: "ï‡·";
}

.fa-trash:before {
    content: "ï‡¸";
}

.fa-copyright:before {
    content: "ï‡¹";
}

.fa-at:before {
    content: "ï‡º";
}

.fa-eyedropper:before {
    content: "ï‡»";
}

.fa-paint-brush:before {
    content: "ï‡¼";
}

.fa-birthday-cake:before {
    content: "ï‡½";
}

.fa-area-chart:before {
    content: "ï‡¾";
}

.fa-pie-chart:before {
    content: "ïˆ€";
}

.fa-line-chart:before {
    content: "ïˆ";
}

.fa-lastfm:before {
    content: "ïˆ‚";
}

.fa-lastfm-square:before {
    content: "ïˆƒ";
}

.fa-toggle-off:before {
    content: "ïˆ„";
}

.fa-toggle-on:before {
    content: "ïˆ…";
}

.fa-bicycle:before {
    content: "ïˆ†";
}

.fa-bus:before {
    content: "ïˆ‡";
}

.fa-ioxhost:before {
    content: "ïˆˆ";
}

.fa-angellist:before {
    content: "ïˆ‰";
}

.fa-cc:before {
    content: "ïˆŠ";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "ïˆ‹";
}

.fa-meanpath:before {
    content: "ïˆŒ";
}

@font-face {
    font-family: 'UTMDinhTran';
    src: url('fonts/utmdinhtran.eot');
    src: url('fonts/utmdinhtran.eot') format('embedded-opentype'), url('fonts/utmdinhtran.woff') format('woff'), url('fonts/utmdinhtran.ttf') format('truetype'), url('fonts/utmdinhtran.svg') format('svg');
}

@font-face {
    font-family: 'UTMAmericanSans';
    src: url('fonts/utmamericansans.eot');
    src: url('fonts/utmamericansans.eot') format('embedded-opentype'), url('fonts/utmamericansans.woff') format('woff'), url('fonts/utmamericansans.ttf') format('truetype'), url('fonts/utmamericansans.svg') format('svg');
}

@font-face {
    font-family: 'UTMEremitage';
    src: url('fonts/utmeremitage.eot');
    src: url('fonts/utmeremitage.eot') format('embedded-opentype'), url('fonts/utmeremitage.woff') format('woff'), url('fonts/utmeremitage.ttf') format('truetype'), url('fonts/utmeremitage.svg') format('svg');
}

.font-DinhTran {
    font-family: 'UTMDinhTran', Arial, Helvetica, sans-serif;
}

.font-AmericanSans {
    font-family: 'UTMAmericanSans', Arial, Helvetica, sans-serif;
}

.font-Eremitage {
    font-family: 'UTMEremitage', Arial, Helvetica, sans-serif;
}

@charset "UTF-8";

@font-face {
    font-family: "icons-vn";
    src: url("fonts/icons-vn.eot");
    src: url("fonts/icons-vn-.eot") format("embedded-opentype"), url("fonts/icons-vn.woff") format("woff"), url("fonts/icons-vn.ttf") format("truetype"), url("fonts/icons-vn.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

[data-icon]:before {
    font-family: "icons-vn" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-vn-"]:before,
[class*=" icon-vn-"]:before {
    font-family: "icons-vn" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-vn-brush-paint-streamline:before {
    content: "b";
}

.icon-vn-bubble-love-streamline-talk:before {
    content: "d";
}

.icon-vn-caddie-shopping-streamline:before {
    content: "e";
}

.icon-vn-chaplin-hat-movie-streamline:before {
    content: "h";
}

.icon-vn-chef-food-restaurant-streamline:before {
    content: "o";
}

.icon-vn-cocktail-mojito-streamline:before {
    content: "v";
}

.icon-vn-coffee-streamline:before {
    content: "w";
}

.icon-vn-computer-imac:before {
    content: "x";
}

.icon-vn-computer-macintosh-vintage:before {
    content: "z";
}

.icon-vn-computer-streamline:before {
    content: "A";
}

.icon-vn-cook-pan-pot-streamline:before {
    content: "D";
}

.icon-vn-crown-king-streamline:before {
    content: "G";
}

.icon-vn-danger-death-delete-destroy-skull-stream:before {
    content: "H";
}

.icon-vn-dashboard-speed-streamline:before {
    content: "I";
}

.icon-vn-database-streamline:before {
    content: "J";
}

.icon-vn-delete-garbage-streamline:before {
    content: "K";
}

.icon-vn-drug-medecine-streamline-syringue:before {
    content: "P";
}

.icon-vn-earth-globe-streamline:before {
    content: "Q";
}

.icon-vn-eat-food-fork-knife-streamline:before {
    content: "R";
}

.icon-vn-eat-food-hotdog-streamline:before {
    content: "T";
}

.icon-vn-envellope-mail-streamline:before {
    content: "U";
}

.icon-vn-eye-dropper-streamline:before {
    content: "V";
}

.icon-vn-factory-lift-streamline-warehouse:before {
    content: "W";
}

.icon-vn-first-aid-medecine-shield-streamline:before {
    content: "Y";
}

.icon-vn-food-ice-cream-streamline:before {
    content: "0";
}

.icon-vn-grid-lines-streamline:before {
    content: "1";
}

.icon-vn-handle-streamline-vector:before {
    content: "2";
}

.icon-vn-happy-smiley-streamline:before {
    content: "3";
}

.icon-vn-headset-sound-streamline:before {
    content: "4";
}

.icon-vn-home-house-streamline:before {
    content: "5";
}

.icon-vn-iphone-streamline:before {
    content: "6";
}

.icon-vn-japan-streamline-tea:before {
    content: "8";
}

.icon-vn-laptop-macbook-streamline:before {
    content: "9";
}

.icon-vn-lock-locker-streamline:before {
    content: "!";
}

.icon-vn-magic-magic-wand-streamline:before {
    content: "#";
}

.icon-vn-magnet-streamline:before {
    content: "%";
}

.icon-vn-man-people-streamline-user:before {
    content: "&";
}

.icon-vn-map-streamline-user:before {
    content: "/";
}

.icon-vn-micro-record-streamline:before {
    content: "?";
}

.icon-vn-monocle-mustache-streamline:before {
    content: "î„±";
}

.icon-vn-music-note-streamline:before {
    content: "î„²";
}

.icon-vn-music-speaker-streamline:before {
    content: "î„³";
}

.icon-vn-paint-bucket-streamline:before {
    content: "î„´";
}

.icon-vn-painting-roll-streamline:before {
    content: "î„µ";
}

.icon-vn-pen-streamline-1:before {
    content: "î„¶";
}

.icon-vn-pen-streamline-3:before {
    content: "î„·";
}

.icon-vn-receipt-shopping-streamline:before {
    content: "î„¸";
}

.icon-vn-remote-control-streamline:before {
    content: "î„¹";
}

.icon-vn-settings-streamline:before {
    content: "î„º";
}

.icon-vn-shoes-snickers-streamline:before {
    content: "î„»";
}

.icon-vn-stamp-streamline:before {
    content: "î„¼";
}

.icon-vn-streamline-suitcase-travel:before {
    content: "î„½";
}

.icon-vn-streamline-sync:before {
    content: "î„¾";
}

.icon-vn-armchair-chair-streamline:before {
    content: "î„¿";
}

.icon-vn-arrow-streamline-target:before {
    content: "î…€";
}

.icon-vn-backpack-streamline-trekking:before {
    content: "î…";
}

.icon-vn-bag-shopping-streamline:before {
    content: "î…‚";
}

.icon-vn-barbecue-eat-food-streamline:before {
    content: "î…ƒ";
}

.icon-vn-barista-coffee-espresso-streamline:before {
    content: "î…„";
}

.icon-vn-bomb-bug:before {
    content: "î……";
}

.icon-vn-book-dowload-streamline:before {
    content: "î…†";
}

.icon-vn-book-read-streamline:before {
    content: "î…‡";
}

.icon-vn-browser-streamline-window:before {
    content: "î…ˆ";
}

.icon-vn-bubble-comment-streamline-talk:before {
    content: "î…‰";
}

.icon-vn-computer-imac-2:before {
    content: "î…Š";
}

.icon-vn-clock-streamline-time:before {
    content: "î…‹";
}

.icon-vn-camera-streamline-video:before {
    content: "î…Œ";
}

.icon-vn-camera-photo-streamline:before {
    content: "î…";
}

.icon-vn-camera-photo-polaroid-streamline:before {
    content: "î…Ž";
}

.icon-vn-caddie-shop-shopping-streamline:before {
    content: "î…";
}

.icon-vn-computer-network-streamline:before {
    content: "î…";
}

.icon-vn-crop-streamline:before {
    content: "î…‘";
}

.icon-vn-design-graphic-tablet-streamline-tablet:before {
    content: "î…’";
}

.icon-vn-design-pencil-rule-streamline:before {
    content: "î…“";
}

.icon-vn-diving-leisure-sea-sport-streamline:before {
    content: "î…”";
}

.icon-vn-edit-modify-streamline:before {
    content: "î…•";
}

.icon-vn-email-mail-streamline:before {
    content: "î…–";
}

.icon-vn-frame-picture-streamline:before {
    content: "î…—";
}

.icon-vn-like-love-streamline:before {
    content: "î…˜";
}

.icon-vn-ipod-streamline:before {
    content: "î…™";
}

.icon-vn-ipod-music-streamline:before {
    content: "î…š";
}

.icon-vn-ipod-mini-music-streamline:before {
    content: "î…›";
}

.icon-vn-ipad-streamline:before {
    content: "î…œ";
}

.icon-vn-ink-pen-streamline:before {
    content: "î…";
}

.icon-vn-ibook-laptop:before {
    content: "î…ž";
}

.icon-vn-link-streamline:before {
    content: "î…Ÿ";
}

.icon-vn-locker-streamline-unlock:before {
    content: "î… ";
}

.icon-vn-macintosh:before {
    content: "î…¡";
}

.icon-vn-map-pin-streamline:before {
    content: "î…¢";
}

.icon-vn-photo-pictures-streamline:before {
    content: "î…£";
}

.icon-vn-picture-streamline:before {
    content: "î…¤";
}

.icon-vn-picture-streamline-1:before {
    content: "î…¥";
}

.icon-vn-pen-streamline-2:before {
    content: "î…¦";
}

.icon-vn-pen-streamline:before {
    content: "î…§";
}

.icon-vn-painting-pallet-streamline:before {
    content: "î…¨";
}

.icon-vn-notebook-streamline:before {
    content: "î…©";
}

.icon-vn-settings-streamline-1:before {
    content: "î…ª";
}

.icon-vn-settings-streamline-2:before {
    content: "î…«";
}

.icon-vn-speech-streamline-talk-user:before {
    content: "î…¬";
}

.icon-vn-streamline-umbrella-weather:before {
    content: "î…­";
}

.icon-vn-fontawesome-webfont:before {
    content: "î§";
}

@font-face {
    font-family: 'linecons';
    src: url('fonts/linecons-17392200.eot');
    src: url('fonts/linecons-17392200.eot') format('embedded-opentype'), url('fonts/linecons-17392200.woff') format('woff'), url('fonts/linecons-17392200.ttf') format('truetype'), url('fonts/linecons-17392200.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "linecons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
}

.icon-music:before {
    content: 'î€¢';
}

.icon-search:before {
    content: '';
}

.icon-mail:before {
    content: 'î€™';
}

.icon-heart:before {
    content: 'î€€';
}

.icon-star:before {
    content: 'î€‚';
}

.icon-user:before {
    content: 'î€‡';
}

.icon-videocam:before {
    content: 'î€…';
}

.icon-camera:before {
    content: 'î€‹';
}

.icon-photo:before {
    content: 'î€›';
}

.icon-attach:before {
    content: 'î€©';
}

.icon-lock:before {
    content: 'î€';
}

.icon-eye:before {
    content: 'î€“';
}

.icon-tag:before {
    content: 'î€Œ';
}

.icon-thumbs-up:before {
    content: 'î€š';
}

.icon-pencil:before {
    content: 'î€';
}

.icon-comment:before {
    content: 'î€”';
}

.icon-location:before {
    content: 'î€’';
}

.icon-cup:before {
    content: 'î€–';
}

.icon-trash:before {
    content: 'î€†';
}

.icon-doc:before {
    content: 'î€˜';
}

.icon-note:before {
    content: 'î€œ';
}

.icon-cog:before {
    content: '';
}

.icon-params:before {
    content: 'î€Ÿ';
}

.icon-calendar:before {
    content: 'î€«';
}

.icon-sound:before {
    content: 'î€„';
}

.icon-clock:before {
    content: 'î€';
}

.icon-lightbulb:before {
    content: 'î€Ž';
}

.icon-tv:before {
    content: 'î€ƒ';
}

.icon-desktop:before {
    content: 'î€‘';
}

.icon-mobile:before {
    content: 'î€—';
}

.icon-cd:before {
    content: 'î€­';
}

.icon-inbox:before {
    content: 'î€•';
}

.icon-globe:before {
    content: 'î€¯';
}

.icon-cloud:before {
    content: 'î€';
}

.icon-paper-plane:before {
    content: 'î€ž';
}

.icon-fire:before {
    content: 'î€¨';
}

.icon-graduation-cap:before {
    content: 'î€¤';
}

.icon-megaphone:before {
    content: 'î€£';
}

.icon-database:before {
    content: 'î€¡';
}

.icon-key:before {
    content: 'î€ˆ';
}

.icon-beaker:before {
    content: 'î€¥';
}

.icon-truck:before {
    content: 'î€®';
}

.icon-money:before {
    content: 'î€ ';
}

.icon-food:before {
    content: 'î€¦';
}

.icon-shop:before {
    content: 'î€ª';
}

.icon-diamond:before {
    content: 'î€';
}

.icon-t-shirt:before {
    content: 'î€§';
}

.icon-wallet:before {
    content: 'î€¬';
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .mfp-container:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

    .mfp-preloader a {
        color: #ccc;
    }

        .mfp-preloader a:hover {
            color: #fff;
        }

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

    .mfp-close:hover,
    .mfp-close:focus {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .mfp-close:active {
        top: 1px;
    }

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

    .mfp-arrow:active {
        margin-top: -54px;
    }

    .mfp-arrow:hover,
    .mfp-arrow:focus {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .mfp-arrow:before,
    .mfp-arrow:after,
    .mfp-arrow .mfp-b,
    .mfp-arrow .mfp-a {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 35px;
        margin-left: 35px;
        border: medium inset transparent;
    }

    .mfp-arrow:after,
    .mfp-arrow .mfp-a {
        border-top-width: 13px;
        border-bottom-width: 13px;
        top: 8px;
    }

    .mfp-arrow:before,
    .mfp-arrow .mfp-b {
        border-top-width: 21px;
        border-bottom-width: 21px;
        opacity: .7;
    }

.mfp-arrow-left {
    left: 0;
}

    .mfp-arrow-left:after,
    .mfp-arrow-left .mfp-a {
        border-right: 17px solid #fff;
        margin-left: 31px;
    }

    .mfp-arrow-left:before,
    .mfp-arrow-left .mfp-b {
        margin-left: 25px;
        border-right: 27px solid #3f3f3f;
    }

.mfp-arrow-right {
    right: 0;
}

    .mfp-arrow-right:after,
    .mfp-arrow-right .mfp-a {
        border-left: 17px solid #fff;
        margin-left: 39px;
    }

    .mfp-arrow-right:before,
    .mfp-arrow-right .mfp-b {
        border-left: 27px solid #3f3f3f;
    }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

    .mfp-iframe-holder .mfp-content {
        line-height: 0;
        width: 100%;
        max-width: 900px;
    }

    .mfp-iframe-holder .mfp-close {
        top: -40px;
    }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, .6);
        background: #000;
    }

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

.mfp-figure {
    line-height: 0;
}

    .mfp-figure:after {
        content: '';
        position: absolute;
        left: 0;
        top: 40px;
        bottom: 40px;
        display: block;
        right: 0;
        width: auto;
        height: auto;
        z-index: -1;
        box-shadow: 0 0 8px rgba(0, 0, 0, .6);
        background: #444;
    }

    .mfp-figure small {
        color: #bdbdbd;
        display: block;
        font-size: 12px;
        line-height: 14px;
    }

    .mfp-figure figure {
        margin: 0;
    }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px)and (orientation: landscape), screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .mfp-img-mobile .mfp-bottom-bar:empty {
            padding: 0;
        }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(.75);
        transform: scale(.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

    .owl-carousel .owl-wrapper {
        display: none;
        position: relative;
        -webkit-transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-wrapper-outer {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

        .owl-carousel .owl-wrapper-outer.autoHeight {
            -webkit-transition: height 500ms ease-in-out;
            -moz-transition: height 500ms ease-in-out;
            -ms-transition: height 500ms ease-in-out;
            -o-transition: height 500ms ease-in-out;
            transition: height 500ms ease-in-out;
        }

    .owl-carousel .owl-item {
        float: left;
    }

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.grabbing {
    cursor: url(images/grabbing.png) 8 8, move;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center;
}

    .owl-theme .owl-controls .owl-buttons div {
        color: #fff;
        display: inline-block;
        zoom: 1;
        *display: inline;
        margin: 5px;
        padding: 3px 10px;
        font-size: 12px;
        background: #869791;
        filter: alpha(opacity=50);
        opacity: .5;
        font-size: 0;
    }

    .owl-theme .owl-controls.clickable .owl-buttons div:hover {
        filter: alpha(opacity=100);
        opacity: 1;
        text-decoration: none;
    }

    .owl-theme .owl-controls .owl-page {
        display: inline-block;
        zoom: 1;
        *display: inline;
    }

        .owl-theme .owl-controls .owl-page span {
            display: block;
            width: 12px;
            height: 12px;
            margin: 5px 7px;
            filter: alpha(opacity=50);
            opacity: .5;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            background: #869791;
        }

        .owl-theme .owl-controls .owl-page.active span,
        .owl-theme .owl-controls.clickable .owl-page:hover span {
            filter: alpha(opacity=100);
            opacity: 1;
        }

        .owl-theme .owl-controls .owl-page span.owl-numbers {
            height: auto;
            width: auto;
            color: #fff;
            padding: 2px 10px;
            font-size: 12px;
            -webkit-border-radius: 30px;
            -moz-border-radius: 30px;
            border-radius: 30px;
        }

.owl-item.loading {
    min-height: 150px;
    background: url(images/AjaxLoader.gif) no-repeat center center;
}

.owl-origin {
    -webkit-perspective: 1200px;
    -webkit-perspective-origin-x: 50%;
    -webkit-perspective-origin-y: 50%;
    -moz-perspective: 1200px;
    -moz-perspective-origin-x: 50%;
    -moz-perspective-origin-y: 50%;
    perspective: 1200px;
}

.owl-fade-out {
    z-index: 10;
    -webkit-animation: fadeOut .7s both ease;
    -moz-animation: fadeOut .7s both ease;
    animation: fadeOut .7s both ease;
}

.owl-fade-in {
    -webkit-animation: fadeIn .7s both ease;
    -moz-animation: fadeIn .7s both ease;
    animation: fadeIn .7s both ease;
}

.owl-backSlide-out {
    -webkit-animation: backSlideOut 1s both ease;
    -moz-animation: backSlideOut 1s both ease;
    animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
    -webkit-animation: backSlideIn 1s both ease;
    -moz-animation: backSlideIn 1s both ease;
    animation: backSlideIn 1s both ease;
}

.owl-goDown-out {
    -webkit-animation: scaleToFade .7s ease both;
    -moz-animation: scaleToFade .7s ease both;
    animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
    -webkit-animation: goDown .6s ease both;
    -moz-animation: goDown .6s ease both;
    animation: goDown .6s ease both;
}

.owl-fadeUp-in {
    -webkit-animation: scaleUpFrom .5s ease both;
    -moz-animation: scaleUpFrom .5s ease both;
    animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
    -webkit-animation: scaleUpTo .5s ease both;
    -moz-animation: scaleUpTo .5s ease both;
    animation: scaleUpTo .5s ease both;
}

@-webkit-keyframes empty {
    0% {
        opacity: 1;
    }
}

@-moz-keyframes empty {
    0% {
        opacity: 1;
    }
}

@keyframes empty {
    0% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes backSlideOut {
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
}

@-moz-keyframes backSlideOut {
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
}

@keyframes backSlideOut {
    25% {
        opacity: .5;
        transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
}

@-webkit-keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0) translateX(0);
    }
}

@-moz-keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(0) translateX(0);
    }
}

@keyframes backSlideIn {
    0%, 25% {
        opacity: .5;
        transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0);
    }
}

@-webkit-keyframes scaleToFade {
    to {
        opacity: 0;
        -webkit-transform: scale(.8);
    }
}

@-moz-keyframes scaleToFade {
    to {
        opacity: 0;
        -moz-transform: scale(.8);
    }
}

@keyframes scaleToFade {
    to {
        opacity: 0;
        transform: scale(.8);
    }
}

@-webkit-keyframes goDown {
    from {
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes goDown {
    from {
        -moz-transform: translateY(-100%);
    }
}

@keyframes goDown {
    from {
        transform: translateY(-100%);
    }
}

@-webkit-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpFrom {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
}

@-webkit-keyframes scaleUpTo {
    to {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpTo {
    to {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpTo {
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}

html {
    overflow-x: hidden;
}

#partner {
    margin-top: 25px;
}

.box-block figure {
    margin-bottom: 10px !important;
    /*height: 200px;*/
}

.f-nav {
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
    margin-top: 0 !important;
}

button,
input,
textarea,
select {
    padding: 5px;
}

.img-rela a {
    margin-bottom: 20px;
    border: solid 1px #ccc;
    padding: 3px;
    float: left;
    width: 100%;
    height: 62px;
}

    .img-rela a:hover,
    .img-rela a.active {
        border: solid 1px #308345 !important;
    }

.img-rela img {
    width: 75px;
    height: 55px;
}

.box-product-hot h3 a {
    font-weight: 300 !important;
    text-transform: none !important;
    color: #000 !important;
}

.f-keyword .content {
    color: #fff;
    margin-bottom: 30px;
    float: left;
}

    .f-keyword .content a {
        color: #fff;
        line-height: 25px;
        font-size: 13px;
        float: left;
        border: solid 1px #fff;
        margin-right: 5px;
        margin-bottom: 5px;
        padding: 0 5px;
    }

.f-support .item .phone {
    margin: 5px 0;
}

.f-support .item .name {
    background: url(Images/icon-support-name.png) no-repeat 0 5px;
    padding-left: 15px;
}

.f-support .item img {
    vertical-align: top !important;
}

.f-keyword .content a:hover {
    color: #ff0;
}

.f-support .c-247 {
    margin-bottom: 10px;
}

    .f-support .c-247 span {
        color: #ffe744;
    }

.f-support ul li.item {
    float: left;
    width: 47%;
    margin: 0 5px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 14px;
}

#promotion {
    margin-bottom: 20px;
}

.product-hot .meta {
    text-align: left !important;
    padding: 0 10px;
}

.product-home .lbl {
    color: #ccc;
}

#page {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
}

.header-left {
    float: left;
}

    .header-left .logo,
    .header-left .header-title {
        float: left;
    }

        .header-left .header-title span {
            display: block;
        }

            .header-left .header-title span:first-child {
                color: #308345;
                font-size: 29px;
                text-transform: uppercase;
                letter-spacing: .6px;
            }

            .header-left .header-title span:last-child {
                color: #e60000;
                font-size: 44px;
                line-height: 39px;
                padding-left: 17px;
                letter-spacing: .86px;
                text-shadow: 0 0 #ececec;
            }

.logo {
    margin-left: 13px;
    margin-top: 5px;
}

.header-title {
    margin-left: 19px;
    margin-top: 32px;
}

.header-right {
    float: right;
}

.hot-line {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #fff;
    background: url(Images/hot-line-bg.png) no-repeat left top;
    background-color: #308345;
    float: right;
    padding: 11px 42px 17px 112px;
    text-transform: uppercase;
}

    .hot-line span {
        font-size: 18px;
    }

        .hot-line span:first-child {
            letter-spacing: .6px;
            padding-right: 1px;
        }

        .hot-line span:last-child {
            font-size: 24px;
            letter-spacing: .4px;
        }

    .hot-line a {
        color: #fff;
    }

.header-right-bottom {
    overflow: hidden;
    margin-top: 22px;
    margin-right: 1px;
}

.add-link {
    float: right;
    margin-right: 14px;
}

    .add-link a {
        width: 32px;
        height: 31px;
        float: left;
        margin-left: 3px;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

a.fb {
    background: url(Images/add-link.png) no-repeat left top;
}

    a.fb:hover {
        background: url(Images/add-link-hover.png) no-repeat left top;
    }

a.tw {
    margin-left: 4px;
    background: url(Images/add-link.png) no-repeat left -36px top;
}

    a.tw:hover {
        background: url(Images/add-link-hover.png) no-repeat left -36px top;
    }

a.gg {
    background: url(Images/add-link.png) no-repeat right top;
}

    a.gg:hover {
        background: url(Images/add-link-hover.png) no-repeat right top;
    }

#menu {
    margin-top: 13px;
}

@media only screen and (max-width: 1199px) {
    .hot-line {
        background-size: contain;
        padding: 7px 18px 7px 65px;
    }

        .hot-line span {
            font-size: 17px;
        }

            .hot-line span:last-child {
                font-size: 21px;
            }

    .logo {
        width: 110px;
    }

    .header-title {
        margin-top: 28px;
        max-width: 490px;
    }

    .header-left .header-title span:first-child {
        font-size: 25px;
    }

    .header-left .header-title span:last-child {
        font-size: 38px;
        line-height: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .hot-line {
        background: no-repeat;
        padding: 10px 15px;
    }

        .hot-line * {
            color: #000 !important;
        }

        .hot-line span {
            font-size: 13px;
        }

        .hot-line a {
            font-size: 15px;
            color: #fff;
        }

    .show-mobile > div.hotline {
        position: inherit;
    }

        .show-mobile > div.hotline .inner {
            right: 15px;
        }

    #header {
        margin-top: 33px;
    }

    #vns-mainnav {
        border: none;
        z-index: 99;
        float: left;
    }

    #menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        margin-top: 0;
        z-index: 99;
        border-bottom: 1px solid #ededed;
        background: #fff;
    }
}

@media only screen and (max-width: 767px) {
    .f-support ul li.item {
        width: 100%;
    }

    #footer .box {
        text-align: center;
    }

    .product-hot {
        background: none !important;
    }

    .header-left {
        float: none;
    }

    .logo {
        width: 100%;
        margin-left: 0;
        text-align: center;
        float: none;
    }

        .logo img {
            max-width: 100px;
        }
}

#show-mobile {
    background: #fff;
    z-index: 9;
}

    #show-mobile .container {
        position: relative;
    }

.language-mobile .inner {
    padding: 0;
}

.language-mobile .language {
    float: none;
    width: 120px;
    margin: 0;
}

    .language-mobile .language a {
        background: none;
        display: block;
        float: none;
        width: auto;
        margin: 0;
        padding: 10px;
        height: auto;
    }

        .language-mobile .language a img {
            position: relative;
            top: -2px;
        }

.language-mobile .icon {
    width: auto !important;
    font-size: 12px;
    padding: 0 15px;
}

    .language-mobile .icon img {
        position: relative;
        top: -1px;
    }

.camera_prev,
.camera_next {
    top: 38%;
    width: 40px;
    height: 121px;
    background: none;
}

    .camera_prev > span,
    .camera_next > span {
        width: 100%;
        height: 100%;
        opacity: 1;
        filter: alpha(opacity=100);
    }

.camera_prev {
    left: -9px;
}

    .camera_prev > span {
        background: url(Images/left-right.png) no-repeat left top;
    }

    .camera_prev:hover > span {
        opacity: 1;
        filter: alpha(opacity=100);
        background: url(Images/left-right-hover.png) no-repeat left top;
    }

.camera_next {
    right: -9px;
}

    .camera_next > span {
        background: url(Images/left-right.png) no-repeat right top;
    }

    .camera_next:hover > span {
        opacity: 1;
        filter: alpha(opacity=100);
        background: url(Images/left-right-hover.png) no-repeat right top;
    }

#category-product .cate-item-1 {
    top: -66px !important;
}

#category-product .cate-item {
    float: left;
    position: relative;
    top: -64px;
    max-width: 374px;
    margin: 0 30px;
}

    #category-product .cate-item h4 {
        font-family: 'UTMEremitage', Arial, Helvetica, sans-serif;
        font-size: 25px;
        text-align: center;
        text-transform: capitalize;
        max-width:215px;
        position: relative;
        top: 25px;
        -webkit-transition: all .4s ease 0s;
        -moz-transition: all .4s ease 0s;
        -ms-transition: all .4s ease 0s;
        -o-transition: all .4s ease 0s;
        transition: all .4s ease 0s;
    }

        #category-product .cate-item h4 a {
            color: #d9534f;
        }

    #category-product .cate-item:hover h4 a {
        color: #308345;
    }

@media only screen and (min-width: 992px) {
    #category-product .cate-item img {
        -webkit-transition: all .4s ease 0s;
        -moz-transition: all .4s ease 0s;
        -ms-transition: all .4s ease 0s;
        -o-transition: all .4s ease 0s;
        transition: all .4s ease 0s;
        -webkit-transform: scale(.812);
        -ms-transform: scale(.812);
        -o-transform: scale(.812);
        transform: scale(.812);
    }

    #category-product .cate-item:hover img {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    #category-product .cate-item.item-1 {
        margin-left: 129px;
    }

        #category-product .cate-item.item-1:hover img {
            -webkit-transform: translate(0, 3px);
            -ms-transform: translate(0, 3px);
            -o-transform: translate(0, 3px);
            transform: translate(0, 3px);
        }

    #category-product .cate-item.item-2, #category-product .cate-item.item-1, #category-product .cate-item.item-3 {
        margin-left: 140px;
        top: -126px !important;
    }

        #category-product .cate-item.item-2 img {
            top: 2px;
            position: relative;
        }

        #category-product .cate-item.item-2:hover img {
            top: 0;
        }

    #category-product .cate-item.item-3 {
        margin-left: 132px;
    }

        #category-product .cate-item.item-3:hover img {
            -webkit-transform: translate(0, 3px);
            -ms-transform: translate(0, 3px);
            -o-transform: translate(0, 3px);
            transform: translate(0, 3px);
        }

    #category-product .cate-item:hover h4 {
        -webkit-transform: translate(0, 20px);
        -ms-transform: translate(0, 20px);
        -o-transform: translate(0, 20px);
        transform: translate(0, 20px);
    }

    /*#category-product .item-1 h4 {
        padding-right: 13px;
        top: -3px;
    }*/

    #category-product .item-2 h4 {
        padding-right: 6px;
    }

    #category-product .cate-item.item-2 {
        max-height: 263px;
    }
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    #category-product .cate-item {
        margin-left: 50px !important;
    }

        #category-product .cate-item.item-1 {
            margin-left: 108px !important;
        }
}

@media only screen and (max-width: 991px) {
    #category-product .cate-item {
        max-width: 150px;
        margin-left: 60px;
        top: -55px
    }
    #category-product .cate-item.item-1 {
        margin-left: 72px
    }
    #category-product .cate-item.item-2 {
        top: -87px
    }
    #category-product .cate-item h4 {
        top: 0;
        margin-top: 10px;
        font-size: 24px
    }
}

@media only screen and (max-width: 767px) {
     #category-product .cate-item {
        width: 100%;
        max-width: 174px;
        margin: auto auto!important;
        margin-bottom: 25px!important;
        float: none;
        display: block
    }
}

#columns h2.heading {
    font-size: 20px;
    background: url(Images/bg.png) no-repeat left 6px;
    text-transform: uppercase;
    color: #4a4a4a;
    font-weight: 700;
    padding-top: 14px;
    padding-left: 27px;
}

    #columns h2.heading span {
        display: block;
        border-bottom: 1px solid #d5d3d3;
        padding-bottom: 4px;
        padding-left: 24px;
        text-shadow: 0 0 1px #cbcbcb;
        position: relative;
    }

        #columns h2.heading span:after {
            position: absolute;
            content: '';
            bottom: -1px;
            left: 1px;
            background: #f68633;
            height: 1px;
            width: 227px;
        }

#columns h2.heading-sidebar span:after {
    width: 114px;
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    #columns h2.heading {
        font-size: 16px;
        padding-top: 19px;
    }
}

#product-mostview {
    margin-bottom: 30px;
}

    #product-mostview h2.heading {
        margin-left: -4px;
        margin-bottom: 36px;
    }

        #product-mostview h2.heading span {
            letter-spacing: -.1px;
        }

    #product-mostview .row {
        margin: 0 -17px 0 -16px;
    }

    #product-mostview .col-xs-12 {
        padding: 0 17px 0 16px;
    }

    #product-mostview .owl-carousel {
        margin-left: -1px;
    }

.product-home {
    border: 1px solid #ebebeb;
    background: #fafafa;
    padding: 0 0 19px;
    position: relative;
    overflow: hidden;
}

    .product-home .icon-new-product {
        position: absolute;
        top: -6px;
        left: -6px;
        z-index: 10;
    }

    .product-home .meta {
        text-align: center;
    }

    .product-home h3 {
        font-size: 17px;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 10px;
        min-height: 18px;
        text-align: center;
    }

        .product-home h3 a {
            color: #308345;
            font-size: 17px;
        }

    .product-home .id {
        font-size: 14px;
        text-shadow: 0 0;
        height: 20px;
        overflow: hidden;
    }

    .product-home:hover h3 a {
        color: #323232;
    }

    .product-home:hover .hover-mark {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .product-home .hover-mark a {
        position: absolute;
        width: 28px;
        height: 28px;
        background: url(Images/icon-zoom.png) no-repeat left top;
        top: 41%;
        left: 44.5%;
    }

.owl-theme .owl-controls .owl-buttons div {
    position: absolute;
    opacity: 1;
    filter: alpha(opacity=100);
    margin: 0;
    padding: 0;
    background: none;
}

#product-mostview .owl-theme .owl-controls .owl-buttons div {
    width: 38px;
    height: 39px;
    top: 41.5%;
    -webkit-transition: background .2s ease 0s;
    -moz-transition: background .2s ease 0s;
    -ms-transition: background .2s ease 0s;
    -o-transition: background .2s ease 0s;
    transition: background .2s ease 0s;
}

#product-mostview .owl-theme .owl-controls .owl-buttons .owl-prev {
    background: url(Images/left-right-2.png) no-repeat left top;
    left: -4px;
}

    #product-mostview .owl-theme .owl-controls .owl-buttons .owl-prev:hover {
        background: url(Images/left-right-2-hover.png) no-repeat left top;
    }

#product-mostview .owl-theme .owl-controls .owl-buttons .owl-next {
    background: url(Images/left-right-2.png) no-repeat right top;
    right: -1px;
}

    #product-mostview .owl-theme .owl-controls .owl-buttons .owl-next:hover {
        background: url(Images/left-right-2-hover.png) no-repeat right top;
    }

@media only screen and (min-width: 1200px) {
    .product-home .id {
        padding-left: 2px;
    }
}

@media only screen and (max-width: 991px) {
    #product-mostview {
        margin-top: -55px;
    }

    .company .content {
        margin-bottom: 20px;
    }

    #product-mostview h2.heading {
        margin-left: 0;
    }

    .product-home .hover-mark {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    #product-mostview {
        margin-top: 30px;
    }

    .product-home {
        margin-bottom: 15px;
    }

        .product-home .description {
            margin-bottom: 0;
            height: 72px;
            font-size: 12px;
            color: #888;
        }

        .product-home h3 {
            font-size: 14px;
        }

        .product-home .id {
            font-size: 12px;
        }
}

@media only screen and (min-width: 480px)and (max-width: 767px) {
    .product-home {
        padding-bottom: 0;
        border: none;
        border-bottom: 1px solid #ebebeb;
    }

        .product-home:last-child {
            border: 0;
            margin-bottom: 0;
        }

        .product-home .meta {
            text-align: left;
        }

    .product-hot {
        border-bottom: 1px solid #ebebeb !important;
    }

        .product-hot.no-border {
            border: none !important;
        }
}

.widget.category-home {
    margin-left: 1px;
    margin-right: -1px;
    margin-bottom: 13px;
}

    .widget.category-home h2.heading {
        margin-bottom: 25px;
        padding-left: 2px;
    }

ul.categorys {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.widget.fancepage h2.heading {
    margin-bottom: 20px;
    margin-left: -6px;
    margin-right: -2px;
}

    .widget.fancepage h2.heading span {
        padding-left: 22px;
    }

.widget.fancepage .content {
    width: 270px;
    border: 1px solid #eaeaea;
    margin-left: 1px;
    padding: 0 17px 14px 14px;
}

.fb-like-box iframe,
.fb-like-box span,
.fb-like-box {
    width: 100% !important;
    max-width: 270px;
    height: auto;
}

@media only screen and (max-width: 1199px) {
    .widget.fancepage h2.heading {
        font-size: 16px !important;
        padding-top: 19px !important;
    }
}

@media only screen and (max-width: 1199px) {
    .widget.fancepage .content {
        width: 100%;
    }
}

#product-hot h2.heading {
    margin-left: -2px;
    margin-bottom: 34px;
    position: relative;
}

#product-hot .view-all {
    position: absolute;
    top: 24px;
    right: 4px;
    font-size: 13px;
    font-weight: normal;
    color: #308345;
}

    #product-hot .view-all:hover {
        color: #4a4a4a;
    }

#product-hot .row {
    margin: 0 -19px 0 -15px;
}

#product-hot .col-xs-12 {
    padding: 0 17px 0 16.5px;
}

.product-hot {
    margin-bottom: 32px !important;
    padding: 0 0 21px;
}

#footer {
    background: #0071bb;
    margin-top: 25px;
    padding-bottom: 30px;
}

    #footer .container {
        position: relative;
    }

#partner .owl-carousel {
    padding: 0 25px;
    background: #fff;
    margin-top: 30px;
}

#partner .owl-item {
    text-align: center;
    padding: 5px;
    border: solid 1px #fff;
}

    #partner .owl-item:hover {
        border: solid 1px #dbdbdb;
    }

#partner .owl-theme .owl-controls {
    margin: 0;
}

    #partner .owl-theme .owl-controls .owl-buttons div {
        width: 30px;
        height: 30px;
        top: -67%;
    }

        #partner .owl-theme .owl-controls .owl-buttons div.owl-prev {
            background: url(Images/left-right-3.png) no-repeat left top;
            right: 35px;
        }

            #partner .owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
                background: url(Images/left-right-3-hover.png) no-repeat left top;
            }

        #partner .owl-theme .owl-controls .owl-buttons div.owl-next {
            background: url(Images/left-right-3.png) no-repeat right top;
            right: 0;
        }

            #partner .owl-theme .owl-controls .owl-buttons div.owl-next:hover {
                background: url(Images/left-right-3-hover.png) no-repeat right top;
            }

#footer .container {
    padding-top: 50px;
}

#footer h2.heading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    margin-left: 3px;
    letter-spacing: .5px;
    margin-bottom: 23px;
    color: #fff;
}

    #footer h2.heading:after {
        position: absolute;
        content: '';
    }

.company {
    font-size: 14px;
    color: #4a4a4a;
    text-shadow: 0 0;
}

    .company .content {
        padding-left: 2px;
        color: #fff;
        border-top: dashed 1px #fff;
        border-bottom: dashed 1px #fff;
        padding: 15px 0;
    }

    .company .name {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 12px;
        display: block;
    }

.box-helpful {
    width: 203px;
    margin-right: 63px;
}

    .box-helpful ul li {
        background: url(Images/footer-li.png) no-repeat left 6px top 7px;
        font-size: 14px;
    }

        .box-helpful ul li a {
            font-weight: 400;
            padding: 1px 0 9px 24px;
            display: block;
            -webkit-transition: all .2s ease;
            -moz-transition: all .2s ease;
            -ms-transition: all .2s ease;
            -o-transition: all .2s ease;
            transition: all .2s ease;
        }

        .box-helpful ul li:hover a {
            color: #f3802a;
            font-weight: 700;
        }

.link-footer {
    width: 203px;
    margin-right: 50px;
}

    .link-footer h2.heading {
        margin-bottom: 26px !important;
    }

    .link-footer .item {
        text-align: center;
        width: 69px;
        float: left;
        font-size: 13px;
        margin-bottom: 16px;
        margin-right: 31px;
        height: 61px;
    }

        .link-footer .item a {
            text-shadow: 0 0;
        }

        .link-footer .item figure {
            margin-bottom: 3px;
        }

        .link-footer .item:nth-child(2n+2) {
            margin-right: 0;
        }

.statistical {
    font-size: 14px;
    width: 194px;
}

    .statistical h2.heading {
        margin-left: 2px !important;
        margin-bottom: 20px !important;
    }

    .statistical .ctn {
        font-weight: 700;
        text-align: right;
        display: inline-block;
        width: 55px;
        text-shadow: 0 0 #000;
    }

    .statistical .lbl {
        text-shadow: 0 0;
        display: inline-block;
        width: 128px;
    }

    .statistical .item {
        padding-left: 6px;
        margin-bottom: 10px;
        color: #595959;
    }

        .statistical .item:last-child {
            margin-top: 1px;
        }

            .statistical .item:last-child .lbl {
                letter-spacing: .5px;
            }

            .statistical .item:last-child .ctn {
                font-size: 15px;
                color: #ff8931;
                text-shadow: 0 0;
                letter-spacing: -.1px;
                position: relative;
                right: -4px;
            }

@media only screen and (min-width: 1200px) {
    .link-footer .item.item-2 {
        margin-top: 1px;
    }

        .link-footer .item.item-2 figure {
            margin-bottom: 1px;
            margin-left: 1px;
        }

    .link-footer .item.item-3 {
        margin-left: -1px;
        margin-right: 33px;
    }

        .link-footer .item.item-3 figure {
            margin-left: 3px;
            margin-bottom: 1px;
        }

    .link-footer .item.item-4 figure {
        margin-left: -2px;
        margin-bottom: 1px;
    }
}

@media only screen and (max-width: 1199px) {
    #partner {
        width: 940px;
    }

    .company {
        font-size: 13px;
        width: 280px;
        margin-right: 30px;
    }

        .company .name {
            font-size: 14px;
        }

    .box-helpful ul li {
        font-size: 13px;
    }

        .box-helpful ul li a {
            padding: 1px 0 6px 24px;
        }

    #footer h2.heading {
        font-size: 16px;
        padding-bottom: 6px;
    }

    .box-helpful {
        margin-right: 30px;
    }

    .link-footer {
        width: 170px;
        margin-right: 30px;
    }

        .link-footer .item {
            margin-right: 25px;
        }
}

@media only screen and (max-width: 991px) {
    #partner {
        width: 720px;
    }

    .link-footer {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    #footer {
        margin-top: 20px;
    }

        #footer .container {
            padding-top: 30px;
        }

    #partner {
        display: none;
    }

    #footer .box {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

#bottom {
    background: #0165a7;
    padding: 2px 0 0 0;
}

.copyright {
    color: #fff;
    font-size: 14px;
    float: left;
    padding: 20px 0;
    letter-spacing: .15px;
    width: 100%;
    text-align: center;
}

    .copyright a {
        text-transform: uppercase;
        color: #fff;
    }

        .copyright a.website {
            font-weight: 700;
        }

.logo-bottom {
    position: relative;
    top: -4px;
    margin-right: 4px;
}

.menu-bottom {
    float: right;
    margin-top: 17px;
    margin-right: 12px;
}

    .menu-bottom li {
        float: left;
        margin-left: 32px;
        letter-spacing: .2px;
    }

        .menu-bottom li a {
            color: #fff;
        }

        .menu-bottom li:hover a {
            text-decoration: underline;
        }

@media only screen and (max-width: 1199px) {
    .menu-bottom {
        margin-right: 0;
    }

        .menu-bottom li {
            margin-left: 15px;
        }
}

@media only screen and (max-width: 991px) {
    #bottom {
        padding: 10px 0;
    }

    .copyright,
    .menu-bottom {
        float: none;
        width: 100%;
        text-align: center;
    }

        .menu-bottom li {
            float: none;
            display: inline-block;
        }

    .logo-bottom {
        display: block;
        margin-bottom: 10px;
    }
}

h1.title {
    font-size: 21px;
}

#breadcrumb {
    margin: 15px 0 20px;
    padding: 10px 0 10px 50px;
    border: 1px solid #ebebeb;
    border-left: 0;
    border-right: 0;
    font-size: 11px;
    position: relative;
}

    #breadcrumb a:hover {
        color: #308345;
    }

    #breadcrumb i.bre-icon {
        font-size: 32px;
        position: absolute;
        left: 9px;
        top: 17px;
    }

.advertising.product {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: -5px;
    margin-right: -5px;
}

    .advertising.product .col-xs-12 {
        padding: 0 5px;
    }

@media only screen and (max-width: 992px) {
    #sidebar .sidebar-fix {
        width: 100%;
    }
}

.advertising a {
    display: block;
    position: relative;
    overflow: hidden;
}

    .advertising a:before {
        position: absolute;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -ms-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        transition: all .5s cubic-bezier(.455, .03, .515, .955);
        border: 0 solid rgba(255, 255, 255, 0);
        z-index: 1;
    }

    .advertising a:hover:before {
        opacity: 1;
        filter: alpha(opacity=100);
        border: 10px solid rgba(255, 255, 255, .3);
    }

    .advertising a img {
        width: 100%;
        -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -ms-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        transition: all .5s cubic-bezier(.455, .03, .515, .955);
    }

    .advertising a:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
        opacity: .8;
        filter: alpha(opacity=80);
    }

@media only screen and (min-width: 992px) {
    #breadcrumb {
        border-top-color: transparent;
    }
}

.product-insite .col-xs-6 {
    padding-top: 15px;
    overflow: hidden;
}

.product-insite .line-bottom,
.product-insite .line-top {
    border-top: 1px solid #ebebeb;
    margin: 0 15px;
}

.product-insite .line-top {
    margin-bottom: -1px;
}

.product-insite .line-bottom {
    margin-top: -1px;
}

.product-insite.product-list .owl-theme .owl-controls {
    margin-top: 0;
}

.product-insite.product-list .owl-carousel {
    border: 1px solid #ebebeb;
    border-top: 0;
}

.product-insite.product-list .box-product {
    border-bottom: 0;
}

.product-insite.product-list .owl-theme .owl-controls .owl-buttons div {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -31px;
    right: 0;
    color: #515151;
    margin: 0;
    padding: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    background: #ebebeb;
    border-radius: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

    .product-insite.product-list .owl-theme .owl-controls .owl-buttons div:hover {
        background: #308345;
        color: #fff;
    }

    .product-insite.product-list .owl-theme .owl-controls .owl-buttons div.owl-prev {
        right: 31px;
    }

.product-insite.product-list .col-xs-6 {
    width: 100% !important;
}

.box-product {
    border-bottom: 1px solid #ebebeb;
    padding: 0 0 20px;
    position: relative;
    margin-bottom: 25px;
}

    .box-product h3 {
        height: 18px;
        text-transform: capitalize;
    }

    .box-product figure {
        margin-bottom: 15px;
        height: 159px;
        position: relative;
    }

    .box-product .meta {
        text-align: center;
    }

    .box-product .id {
        color: #515151;
        height: 20px;
        overflow: hidden;
    }

    .box-product .description {
        height: 36px;
        color: #515151;
        font-size: 11px;
        font-family: Tahoma;
    }

    .box-product .link {
        text-align: center;
        text-transform: capitalize;
        margin: 10px 0;
        font-size: 12px;
    }

        .box-product .link a {
            color: #fff;
            background: #0077bd;
            display: inline-block;
            height: 30px;
            padding: 0 0 0 30px;
        }

        .box-product .link i {
            background: #515151;
            color: #fff;
            width: 32px;
            height: 30px;
            line-height: 30px;
            font-size: 17px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .box-product .link span {
            height: 30px;
            line-height: 30px;
            padding: 0 10px;
        }

    .box-product .icon-new-product {
        position: absolute;
        left: -5px;
        top: -5px;
        z-index: 10;
    }

    .box-product .price {
        display: block;
        margin: 8px 0;
        color: #515151;
        font-weight: 700;
        font-size: 13px;
    }

    .box-product:hover h3 a {
        color: #308345;
    }

    .box-product .button-hover-tooltip span[class^="over-"] {
        background: #515151;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .box-product:hover .button-hover-tooltip span[class^="over-"] {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .box-product .zoom,
    .box-product .overlay,
    .box-product .detail {
        position: absolute;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }

    .box-product .zoom,
    .box-product .detail {
        -webkit-transform: translate(0, -200px);
        -ms-transform: translate(0, -200px);
        -o-transform: translate(0, -200px);
        transform: translate(0, -200px);
        -webkit-transition: all .6s ease;
        -moz-transition: all .6s ease;
        -ms-transition: all .6s ease;
        -o-transition: all .6s ease;
        transition: all .6s ease;
        -webkit-transition-timing-function: cubic-bezier(.6, -.28, .735, .045);
        transition-timing-function: cubic-bezier(.6, -.28, .735, .045);
        opacity: 0;
        filter: alpha(opacity=0);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        background: #515151;
        color: #fff;
    }

        .box-product .zoom:hover,
        .box-product .detail:hover {
            background: #308345;
        }

    .box-product .zoom {
        right: 30%;
        -webkit-transition-delay: .15s;
        -moz-transition-delay: .15s;
        -o-transition-delay: .15s;
        transition-delay: .15s;
    }

    .box-product .detail {
        left: 30%;
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    .box-product .overlay {
        background: rgba(0, 0, 0, .31);
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .box-product:hover .overlay {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .box-product:hover .zoom,
    .box-product:hover .detail {
        -webkit-transform: translate(0, -100px);
        -ms-transform: translate(0, -100px);
        -o-transform: translate(0, -100px);
        transform: translate(0, -100px);
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
        transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    }

@media only screen and (min-width: 1200px) {
    .product-insite .col-md-3 {
        width: 20%;
    }

    .noboder-lg {
        border-color: transparent !important;
    }
}

.box-product {
    overflow: visible;
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .noboder-md {
        border-color: transparent !important;
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .noboder-sm {
        border-color: transparent !important;
    }
}

@media only screen and (max-width: 1199px) {
    .box-product figure {
        height: 161px;
    }
}

@media only screen and (max-width: 991px) {
    .box-product figure {
        height: 166px;
    }
}

@media only screen and (max-width: 767px) {
    .box-product figure {
        float: none !important;
        margin-right: 0 !important;
        width: 100%;
        height: 152px;
    }

        .box-product figure img {
            width: auto;
        }
}

@media only screen and (max-width: 479px) {
    .col-xs-6 {
        width: 100%;
        border: none;
    }

    .product-insite .line-bottom,
    .product-insite .line-top {
        display: none;
    }

    .box-product {
        border: 1px solid #ebebeb;
        padding: 10px;
    }
}

.categorys.product {
    background: #5398c5;
    margin-bottom: 20px;
}

.categorys h2.heading {
    padding: 15px 0 15px 17px !important;
    color: #fff !important;
    font-size: 17px !important;
    background: #286c9f !important;
}

.category-insite li {
    border-top: 1px solid #ccc;
    text-transform: capitalize;
    font-size: 13px;
    position: relative;
}

    .category-insite li a {
        padding: 10px 20px 10px 20px;
        display: block;
        color: #fff;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .category-insite li:hover > a {
        color: #fff;
        background: #f26b3a;
    }

    .category-insite li .subcart {
        position: absolute;
        top: 10px;
        right: 0;
        font-size: 10px;
        width: 20px;
        height: 20px;
        padding: 0;
    }

        .category-insite li .subcart:before {
            position: absolute;
            content: 'ï¨';
            font-family: 'FontAwesome';
            top: 1px;
            left: 6px;
        }

        .category-insite li .subcart.collapsed:before {
            content: 'ï§';
        }

@media only screen and (min-width: 992px) {
    .slimScrollDiv,
    .category-product {
        height: 232px !important;
    }
}

@media only screen and (min-width: 1200px) {
    .category-product,
    .slimScrollDiv {
        height: 339px !important;
    }
}

@media only screen and (max-width: 991px) {
    .categorys.product {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .columns-insite {
        margin-bottom: 50px;
    }
}

.box-category h2.heading a {
    display: block;
}

    .box-category h2.heading a:hover {
        color: #308345;
    }

@media only screen and (min-width: 992px) {
    .zoomContainer {
        z-index: 999;
    }
}

.image-article {
    overflow: hidden;
    position: relative;
    text-align: center;
}

h2.name {
    margin-bottom: 20px;
}

.bt-cart i {
    margin-right: 5px;
}

.bt-cart span[class^="over-"] {
    background: #308345;
    opacity: 0;
    filter: alpha(opacity=0);
}

.bt-cart:hover span[class^="over-"] {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    filter: alpha(opacity=100);
}

.more-image {
    margin-top: 10px;
}

    .more-image .owl-carousel .owl-item {
        height: 113px;
    }

        .more-image .owl-carousel .owl-item a {
            display: block;
            padding: 10px;
        }

            .more-image .owl-carousel .owl-item a:before {
                position: absolute;
                content: '';
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, .31);
                -webkit-transform: scale(0);
                -ms-transform: scale(0);
                -o-transform: scale(0);
                transform: scale(0);
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -ms-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
            }

            .more-image .owl-carousel .owl-item a:hover:before {
                -webkit-transform: scale(1);
                -ms-transform: scale(1);
                -o-transform: scale(1);
                transform: scale(1);
            }

    .more-image .owl-theme .owl-controls .owl-buttons div {
        font-size: 16px;
        color: #515151;
        top: 34%;
        padding: 5px;
        border: 1px solid #ebebeb;
        border-radius: 0;
    }

        .more-image .owl-theme .owl-controls .owl-buttons div.owl-prev {
            left: -10px;
        }

        .more-image .owl-theme .owl-controls .owl-buttons div.owl-next {
            right: -10px;
        }

@media only screen and (max-width: 1199px) {
    .more-image .owl-carousel .owl-item {
        height: 91px;
    }
}

@media only screen and (max-width: 991px) {
    .more-image .owl-carousel .owl-item {
        height: 91px;
    }
}

@media only screen and (max-width: 767px) {
    .image-article {
        height: auto;
        margin-bottom: 25px;
    }
}

.product-other {
    margin-bottom: 30px;
}

    .product-other .col-xs-6 {
        padding-top: 15px;
        border-right: 1px solid #ebebeb;
    }

        .product-other .col-xs-6 a {
            display: block;
            border-bottom: 1px solid #ebebeb;
            position: relative;
            overflow: hidden;
            height: 205px;
            text-align: center;
        }

            .product-other .col-xs-6 a img {
                -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
                -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
                -ms-transition: all .5s cubic-bezier(.455, .03, .515, .955);
                -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
                transition: all .5s cubic-bezier(.455, .03, .515, .955);
                -webkit-transform: scale(1);
                -ms-transform: scale(1);
                -o-transform: scale(1);
                transform: scale(1);
            }

            .product-other .col-xs-6 a:hover img {
                -webkit-transform: scale(1.1);
                -ms-transform: scale(1.1);
                -o-transform: scale(1.1);
                transform: scale(1.1);
            }

@media only screen and (max-width: 1199px) {
    .product-other .col-xs-6 a {
        height: 161px;
    }
}

@media only screen and (max-width: 991px) {
    .product-other .col-xs-6 a {
        height: 167px;
    }
}

@media only screen and (max-width: 767px) {
    .product-other .col-xs-6 a {
        height: 153px;
    }

        .product-other .col-xs-6 a img.width-full {
            width: auto;
        }
}

@media only screen and (max-width: 479px) {
    .product-other .col-xs-6 {
        width: 100%;
    }

        .product-other .col-xs-6 a {
            height: auto;
        }

            .product-other .col-xs-6 a img.width-full {
                max-width: 100%;
            }
}

.box-product-hot {
    margin-top: 15px;
    border-bottom: 1px dashed #ebebeb;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

    .box-product-hot:last-child {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .box-product-hot figure {
        float: left !important;
        margin-right: 10px !important;
        width: 120px !important;
        z-index: 9;
        height: 91px !important;
    }

    .box-product-hot h3 {
        max-height: 36px;
    }

    .box-product-hot .price {
        font-weight: 700;
        font-size: 13px;
    }

    .box-product-hot .id {
        color: #515151;
        font-size: 11px;
    }

ul.news-list {
    margin-top: 20px;
}

    ul.news-list li {
        position: relative;
    }

        ul.news-list li a {
            display: block;
            padding: 5px 0 5px 25px;
            background: url(Images/bg-li.png) no-repeat left 10px top 11px;
            font-size: 13px;
        }

@media only screen and (min-width: 1200px) {
    .product-related .col-xs-6 {
        width: 25%;
    }
}

.box-product.related figure {
    height: 147px;
}

@media only screen and (max-width: 1199px) {
    .box-product.related figure {
        height: 115px;
    }
}

@media only screen and (max-width: 991px) {
    .box-product.related figure {
        height: 166px;
    }
}

@media only screen and (max-width: 767px) {
    .box-product.related figure {
        height: 152px;
    }
}

.box-news {
    margin-bottom: 15px;
}

    .box-news figure {
        float: left;
        width: 175px;
        z-index: 9;
        margin-right: 15px;
        position: relative;
        overflow: hidden;
    }

        .box-news figure a {
            display: block;
            position: relative;
        }

            .box-news figure a:before {
                position: absolute;
                content: '';
                display: block;
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
                -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
                -ms-transition: all .5s cubic-bezier(.455, .03, .515, .955);
                -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
                transition: all .5s cubic-bezier(.455, .03, .515, .955);
                border: 0 solid rgba(255, 255, 255, 0);
                z-index: 1;
            }

        .box-news figure img {
            -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
            -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
            -ms-transition: all .5s cubic-bezier(.455, .03, .515, .955);
            -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
            transition: all .5s cubic-bezier(.455, .03, .515, .955);
        }

    .box-news h3 {
        font-size: 15px;
        max-height: 36px;
    }

    .box-news .date {
        font-size: 11px;
    }

    .box-news .description {
        font-size: 12px;
        max-height: 54px;
    }

    .box-news:hover figure img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    .box-news:hover figure a:before {
        opacity: 1;
        filter: alpha(opacity=100);
        border: 10px solid rgba(255, 255, 255, .3);
    }

    .box-news:hover h3 a {
        color: #308345;
    }

@media only screen and (max-width: 479px) {
    .box-news figure {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 1200px) {
    .product-insite.sidebars .col-md-3 {
        width: 25%;
    }
}

.box-product.sidebar figure {
    height: 147px;
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .box-product.sidebar figure {
        height: 115px;
    }
}

@media only screen and (max-width: 479px) {
    .col-xs-6 {
        width: 100%;
    }
}

.box-video {
    margin-bottom: 21px !important;
    height: 265px;
    border-bottom: 1px solid #ebebeb;
}

    .box-video:last-child {
        margin-bottom: 0;
    }

    .box-video figure {
        margin-bottom: 10px;
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }

    .box-video h3 {
        font-size: 20px;
        line-height: 25px;
    }

    .box-video iframe {
        width: 100%;
    }

        .box-video iframe.vimeo {
            height: 490px;
        }

        .box-video iframe.youtube {
            height: 420px;
        }

    .box-video .meta {
        position: relative;
        padding-left: 90px;
    }

    .box-video .date {
        position: absolute;
        background: #308345;
        color: #fff;
        padding: 5px;
        text-align: center;
        left: 0;
        top: 0;
        font-size: 10px;
    }

        .box-video .date .day {
            display: block;
            font-size: 20px;
            border-bottom: 1px solid #fff;
            margin-bottom: 5px;
        }

    .box-video .views {
        margin-bottom: 10px;
        display: block;
        color: #7b7a7a;
    }

    .box-video .description {
        display: block;
    }

    .box-video:hover h3 a {
        color: #308345;
    }

@media only screen and (max-width: 1199px) {
    .box-video iframe.vimeo {
        height: 380px;
    }

    .box-video iframe.youtube {
        height: 350px;
    }
}

@media only screen and (max-width: 991px) {
    .box-video iframe.vimeo {
        height: 391px;
    }

    .box-video iframe.youtube {
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .box-video figure {
        position: relative;
        padding-bottom: 56.25% !important;
        display: block;
        height: 0;
        padding: 0;
        overflow: hidden;
    }

        .box-video figure iframe {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100% !important;
            border: 0;
        }

    .box-video h3 {
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
    }

    .box-video .meta {
        padding-left: 62px;
    }

    .box-video .date {
        left: 0;
        font-size: 10px;
    }

        .box-video .date .day {
            font-size: 16px;
            padding-bottom: 2px;
        }
}

.gallery-list {
    margin: 0 -3px;
}

    .gallery-list .col-xs-6 {
        padding: 0 3px;
    }

.thumb {
    display: block;
    position: relative;
    width: 213px;
    height: 213px;
    margin-bottom: 6px;
}

    .thumb i {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        background-repeat: no-repeat;
        border: 1px solid #ebebeb;
    }

    .thumb .thumbimg {
        background-position: 50% 25%;
        background-size: cover;
    }

    .thumb:before {
        position: absolute;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -ms-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        transition: all .5s cubic-bezier(.455, .03, .515, .955);
        border: 0 solid rgba(255, 255, 255, 0);
        z-index: 1;
    }

    .thumb:hover:before {
        opacity: 1;
        filter: alpha(opacity=100);
        border: 10px solid rgba(255, 255, 255, .3);
    }

@media only screen and (max-width: 1199px) {
    .thumb {
        width: 229px;
        height: 229px;
    }
}

@media only screen and (max-width: 991px) {
    .thumb {
        width: 236px;
        height: 236px;
    }
}

@media only screen and (max-width: 767px) {
    .thumb {
        width: 100%;
        height: 214px;
    }
}

@media only screen and (max-width: 479px) {
    .thumb {
        height: 270px;
    }
}

.gallery-list {
    margin: 0 -7px;
}

    .gallery-list .col-xs-6 {
        padding: 0 7px;
    }

.box-gallery {
    position: relative;
    padding: 2px;
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
}

    .box-gallery figure {
        position: relative;
        overflow: hidden;
        width: 201px;
        height: 201px;
    }

        .box-gallery figure i {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-position: 50% 20%;
            background-repeat: no-repeat;
            display: block;
            background-size: cover;
            -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
            -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
            -ms-transition: all .5s cubic-bezier(.455, .03, .515, .955);
            -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
            transition: all .5s cubic-bezier(.455, .03, .515, .955);
        }

    .box-gallery .meta {
        position: absolute;
        bottom: 0;
        left: 0;
        background: rgba(50, 50, 50, .52);
        width: 100%;
        padding: 10px;
    }

    .box-gallery h3 {
        text-transform: capitalize;
        text-align: left;
        margin-bottom: 0;
        font-weight: 700;
        font-family: arial;
        font-size: 12px;
    }

        .box-gallery h3 a {
            color: #fff;
            text-shadow: 0 0 3px rgba(0, 0, 0, .75);
        }

    .box-gallery:hover figure i {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

@media only screen and (max-width: 1199px) {
    .box-gallery figure {
        width: 217px;
        height: 217px;
    }
}

@media only screen and (max-width: 991px) {
    .box-gallery figure {
        width: 225px;
        height: 225px;
    }
}

@media only screen and (max-width: 767px) {
    .box-gallery {
        margin-bottom: 15px;
    }

        .box-gallery figure {
            width: 100% !important;
            margin-right: 0 !important;
            float: none !important;
            height: 204px !important;
        }
}

.thumb-fix {
    position: relative;
}

    .thumb-fix .thumb-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 25%;
    }

.category-image {
    height: 257px;
}

.advertising-thumb.product {
    height: 112px;
}

    .advertising-thumb.product i {
        -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -ms-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
        transition: all .5s cubic-bezier(.455, .03, .515, .955);
    }

    .advertising-thumb.product:hover i {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

@media only screen and (max-width: 1199px) {
    .category-image {
        height: 182px;
    }

    .advertising-thumb.product {
        height: 79px;
    }
}

@media only screen and (max-width: 991px) {
    .category-image,
    .advertising-thumb.product {
        height: auto;
    }
}

.cart-detail {
    color: #fff;
    background: #0077bd;
    display: inline-block;
    height: 37px;
    text-align: center;
    margin-bottom: 20px;
    float: left;
    margin-right: 12px;
}

    .cart-detail i {
        background: #515151;
        color: #fff;
        width: 40px;
        height: 36px;
        line-height: 35px;
        font-size: 17px;
    }

    .cart-detail span {
        padding: 0 20px;
        color: #fff;
        font-size: 14px;
    }

        .cart-detail span[class^='over-'] {
            background: #515151;
            opacity: 0;
            filter: alpha(opacity=0);
        }

    .cart-detail:hover span[class^='over-'] {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

.news-related {
    margin-bottom: 20px;
}

    .news-related figure {
        float: left !important;
        margin-right: 10px !important;
        z-index: 9;
        width: 100px !important;
        height: 75px !important;
    }

    .news-related .date,
    .news-related .description {
        font-size: 11px;
        color: #515151;
    }

    .news-related .description {
        height: 36px;
    }

    .news-related .meta {
        height: 99px;
    }

    .news-related:hover h3 a {
        color: #308345;
    }

.box-search figure {
    width: 194px;
    height: 157px;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive.embed-responsive-16by9 {
        padding-bottom: 56.25%;
    }

    .embed-responsive .embed-responsive-item,
    .embed-responsive iframe,
    .embed-responsive embed,
    .embed-responsive object,
    .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.video-content {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
    .box-search figure {
        width: 151px;
        height: 122px;
    }
}

@media only screen and (max-width: 991px) {
    .box-search figure {
        width: 219px;
        height: 177px;
    }
}

@media only screen and (max-width: 479px) {
    .box-search figure {
        height: 251px !important;
    }
}

@-moz-document url-prefix() {
    #product-mostview {
        display: inline-block;
        width: 100%;
    }

    .statistical .lbl {
        width: 129px;
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

.slick-loading .slick-list {
    background: #fff url('images/ajax-loader.gif') center center no-repeat;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    zoom: 1;
    z-index: 1;
}

    .slick-track:before,
    .slick-track:after {
        content: "";
        display: table;
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

    .slick-slide img {
        display: block;
    }

    .slick-slide.slick-loading img {
        display: none;
    }

    .slick-slide.dragging img {
        pointer-events: none;
    }

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-prev,
.slick-next {
    position: absolute;
    display: none !important;
    height: 42px;
    width: 35px;
    right: 50px;
    line-height: 0;
    font-size: 12px;
    cursor: pointer;
    color: #000;
    top: -87px;
    padding: 0;
    border: none;
    outline: none;
    margin: 0;
    text-shadow: 0 0 .1px;
    -webkit-transition: all .5s;
    transition: all .5s;
    text-align: left;
    font-size: 0;
    z-index: 999;
}

    .slick-prev:focus,
    .slick-next:focus {
        outline: none;
    }

    .slick-prev.slick-disabled:before,
    .slick-next.slick-disabled:before {
        opacity: .25;
    }

    .slick-prev:hover,
    .slick-next:hover {
        background: #f7d736;
    }

.slick-prev {
    top: 144px;
    background: url(images/prev-next.png) no-repeat -44px -43px;
}

.slick-next {
    top: 100px;
    text-align: right;
    background: url(images/prev-next.png) no-repeat 0 0;
}

.slick-prev:hover {
    background: url(images/prev-next.png) no-repeat 0 -44px;
}

.slick-next:hover {
    background: url(images/prev-next.png) -44px 1px;
}

.slick-slider {
    overflow: hidden;
    max-height: 765px;
}

    .slick-slider .item {
        margin-bottom: 5px;
    }

.slick-dots {
    position: absolute;
    list-style: none;
    display: block;
    text-align: center;
    padding: 10px;
    width: 100%;
    z-index: 999;
    background-color: #116f9b;
    border-bottom: solid 3px #1d9cd7;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        height: 14px;
        width: 14px;
        margin: 0 3px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            border: 0;
            background: #fff;
            color: #fff;
            border: solid 2px #c1c1c1;
            display: block;
            height: 10px;
            width: 10px;
            outline: none;
            line-height: 0;
            font-size: 0;
            padding: 4px;
            cursor: pointer;
            border-radius: 50%;
        }

            .slick-dots li button:focus {
                outline: none;
            }

            .slick-dots li button:before {
                position: absolute;
                top: 0;
                left: 0;
                content: "â€¢";
                width: 20px;
                height: 20px;
                font-family: "slick";
                font-size: 6px;
                line-height: 20px;
                text-align: center;
                color: #000;
                opacity: .25;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

        .slick-dots li.slick-active button {
            background: #00aeff;
            color: #00aeff;
            border: solid 2px #00aeff;
        }
