@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.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(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 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(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 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, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 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
}

@-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
}


/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
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-color: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

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 {
    border: 0;
    padding: 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-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}


/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important
    }
    a,
    a:visited {
        text-decoration: underline
    }
    a[href]:after {
        content: " (" attr(href) ")"
    }
    abbr[title]:after {
        content: " (" attr(title) ")"
    }
    a[href^="#"]:after,
    a[href^="javascript:"]: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
    }
    .btn>.caret,
    .dropup>.btn>.caret {
        border-top-color: #000 !important
    }
    .label {
        border: 1px solid #000
    }
    .table {
        border-collapse: collapse !important
    }
    .table td,
    .table th {
        background-color: #fff !important
    }
    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../../../bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot');
    src: url('../../../bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../../../bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../../../bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../../../bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')
}

.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: "\2a"
}

.glyphicon-plus:before {
    content: "\2b"
}

.glyphicon-euro:before,
.glyphicon-eur:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

* {
    -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: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333;
    background-color: #fff
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #337ab7;
    text-decoration: none
}

a:hover,
a:focus {
    color: #23527c;
    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 {
    padding: 4px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto
}

.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;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

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: #777
}

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: 300;
    line-height: 1.4
}

@media (min-width:768px) {
    .lead {
        font-size: 21px
    }
}

small,
.small {
    font-size: 85%
}

mark,
.mark {
    background-color: #fcf8e3;
    padding: .2em
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #337ab7
}

a.text-primary:hover {
    color: #286090
}

.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: #337ab7
}

a.bg-primary:hover {
    background-color: #286090
}

.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;
    list-style: none;
    margin-left: -5px
}

.list-inline>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dt,
dd {
    line-height: 1.428571429
}

dt {
    font-weight: bold
}

dd {
    margin-left: 0
}

@media (min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }
    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.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.428571429;
    color: #777
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right
}

.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: '\00A0 \2014'
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.428571429
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    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, 0.25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.428571429;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    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 {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0
}

@media (min-width:768px) {
    .container {
        width: 720px
    }
}

@media (min-width:992px) {
    .container {
        width: 940px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1140px
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0
}

.row {
    margin-left: 0;
    margin-right: 0
}

.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-left: 0;
    padding-right: 0
}

.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.66666666666666%
}

.col-xs-10 {
    width: 83.33333333333334%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666666666666%
}

.col-xs-7 {
    width: 58.333333333333336%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666666666667%
}

.col-xs-4 {
    width: 33.33333333333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.666666666666664%
}

.col-xs-1 {
    width: 8.333333333333332%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666666666666%
}

.col-xs-pull-10 {
    right: 83.33333333333334%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666666666666%
}

.col-xs-pull-7 {
    right: 58.333333333333336%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666666666667%
}

.col-xs-pull-4 {
    right: 33.33333333333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.666666666666664%
}

.col-xs-pull-1 {
    right: 8.333333333333332%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666666666666%
}

.col-xs-push-10 {
    left: 83.33333333333334%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666666666666%
}

.col-xs-push-7 {
    left: 58.333333333333336%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666666666667%
}

.col-xs-push-4 {
    left: 33.33333333333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.666666666666664%
}

.col-xs-push-1 {
    left: 8.333333333333332%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666666666666%
}

.col-xs-offset-10 {
    margin-left: 83.33333333333334%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666666666666%
}

.col-xs-offset-7 {
    margin-left: 58.333333333333336%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666666666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.666666666666664%
}

.col-xs-offset-1 {
    margin-left: 8.333333333333332%
}

.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.66666666666666%
    }
    .col-sm-10 {
        width: 83.33333333333334%
    }
    .col-sm-9 {
        width: 75%
    }
    .col-sm-8 {
        width: 66.66666666666666%
    }
    .col-sm-7 {
        width: 58.333333333333336%
    }
    .col-sm-6 {
        width: 50%
    }
    .col-sm-5 {
        width: 41.66666666666667%
    }
    .col-sm-4 {
        width: 33.33333333333333%
    }
    .col-sm-3 {
        width: 25%
    }
    .col-sm-2 {
        width: 16.666666666666664%
    }
    .col-sm-1 {
        width: 8.333333333333332%
    }
    .col-sm-pull-12 {
        right: 100%
    }
    .col-sm-pull-11 {
        right: 91.66666666666666%
    }
    .col-sm-pull-10 {
        right: 83.33333333333334%
    }
    .col-sm-pull-9 {
        right: 75%
    }
    .col-sm-pull-8 {
        right: 66.66666666666666%
    }
    .col-sm-pull-7 {
        right: 58.333333333333336%
    }
    .col-sm-pull-6 {
        right: 50%
    }
    .col-sm-pull-5 {
        right: 41.66666666666667%
    }
    .col-sm-pull-4 {
        right: 33.33333333333333%
    }
    .col-sm-pull-3 {
        right: 25%
    }
    .col-sm-pull-2 {
        right: 16.666666666666664%
    }
    .col-sm-pull-1 {
        right: 8.333333333333332%
    }
    .col-sm-pull-0 {
        right: auto
    }
    .col-sm-push-12 {
        left: 100%
    }
    .col-sm-push-11 {
        left: 91.66666666666666%
    }
    .col-sm-push-10 {
        left: 83.33333333333334%
    }
    .col-sm-push-9 {
        left: 75%
    }
    .col-sm-push-8 {
        left: 66.66666666666666%
    }
    .col-sm-push-7 {
        left: 58.333333333333336%
    }
    .col-sm-push-6 {
        left: 50%
    }
    .col-sm-push-5 {
        left: 41.66666666666667%
    }
    .col-sm-push-4 {
        left: 33.33333333333333%
    }
    .col-sm-push-3 {
        left: 25%
    }
    .col-sm-push-2 {
        left: 16.666666666666664%
    }
    .col-sm-push-1 {
        left: 8.333333333333332%
    }
    .col-sm-push-0 {
        left: auto
    }
    .col-sm-offset-12 {
        margin-left: 100%
    }
    .col-sm-offset-11 {
        margin-left: 91.66666666666666%
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333333334%
    }
    .col-sm-offset-9 {
        margin-left: 75%
    }
    .col-sm-offset-8 {
        margin-left: 66.66666666666666%
    }
    .col-sm-offset-7 {
        margin-left: 58.333333333333336%
    }
    .col-sm-offset-6 {
        margin-left: 50%
    }
    .col-sm-offset-5 {
        margin-left: 41.66666666666667%
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333333333%
    }
    .col-sm-offset-3 {
        margin-left: 25%
    }
    .col-sm-offset-2 {
        margin-left: 16.666666666666664%
    }
    .col-sm-offset-1 {
        margin-left: 8.333333333333332%
    }
    .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.66666666666666%
    }
    .col-md-10 {
        width: 83.33333333333334%
    }
    .col-md-9 {
        width: 75%
    }
    .col-md-8 {
        width: 66.66666666666666%
    }
    .col-md-7 {
        width: 58.333333333333336%
    }
    .col-md-6 {
        width: 50%
    }
    .col-md-5 {
        width: 41.66666666666667%
    }
    .col-md-4 {
        width: 33.33333333333333%
    }
    .col-md-3 {
        width: 25%
    }
    .col-md-2 {
        width: 16.666666666666664%
    }
    .col-md-1 {
        width: 8.333333333333332%
    }
    .col-md-pull-12 {
        right: 100%
    }
    .col-md-pull-11 {
        right: 91.66666666666666%
    }
    .col-md-pull-10 {
        right: 83.33333333333334%
    }
    .col-md-pull-9 {
        right: 75%
    }
    .col-md-pull-8 {
        right: 66.66666666666666%
    }
    .col-md-pull-7 {
        right: 58.333333333333336%
    }
    .col-md-pull-6 {
        right: 50%
    }
    .col-md-pull-5 {
        right: 41.66666666666667%
    }
    .col-md-pull-4 {
        right: 33.33333333333333%
    }
    .col-md-pull-3 {
        right: 25%
    }
    .col-md-pull-2 {
        right: 16.666666666666664%
    }
    .col-md-pull-1 {
        right: 8.333333333333332%
    }
    .col-md-pull-0 {
        right: auto
    }
    .col-md-push-12 {
        left: 100%
    }
    .col-md-push-11 {
        left: 91.66666666666666%
    }
    .col-md-push-10 {
        left: 83.33333333333334%
    }
    .col-md-push-9 {
        left: 75%
    }
    .col-md-push-8 {
        left: 66.66666666666666%
    }
    .col-md-push-7 {
        left: 58.333333333333336%
    }
    .col-md-push-6 {
        left: 50%
    }
    .col-md-push-5 {
        left: 41.66666666666667%
    }
    .col-md-push-4 {
        left: 33.33333333333333%
    }
    .col-md-push-3 {
        left: 25%
    }
    .col-md-push-2 {
        left: 16.666666666666664%
    }
    .col-md-push-1 {
        left: 8.333333333333332%
    }
    .col-md-push-0 {
        left: auto
    }
    .col-md-offset-12 {
        margin-left: 100%
    }
    .col-md-offset-11 {
        margin-left: 91.66666666666666%
    }
    .col-md-offset-10 {
        margin-left: 83.33333333333334%
    }
    .col-md-offset-9 {
        margin-left: 75%
    }
    .col-md-offset-8 {
        margin-left: 66.66666666666666%
    }
    .col-md-offset-7 {
        margin-left: 58.333333333333336%
    }
    .col-md-offset-6 {
        margin-left: 50%
    }
    .col-md-offset-5 {
        margin-left: 41.66666666666667%
    }
    .col-md-offset-4 {
        margin-left: 33.33333333333333%
    }
    .col-md-offset-3 {
        margin-left: 25%
    }
    .col-md-offset-2 {
        margin-left: 16.666666666666664%
    }
    .col-md-offset-1 {
        margin-left: 8.333333333333332%
    }
    .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.66666666666666%
    }
    .col-lg-10 {
        width: 83.33333333333334%
    }
    .col-lg-9 {
        width: 75%
    }
    .col-lg-8 {
        width: 66.66666666666666%
    }
    .col-lg-7 {
        width: 58.333333333333336%
    }
    .col-lg-6 {
        width: 50%
    }
    .col-lg-5 {
        width: 41.66666666666667%
    }
    .col-lg-4 {
        width: 33.33333333333333%
    }
    .col-lg-3 {
        width: 25%
    }
    .col-lg-2 {
        width: 16.666666666666664%
    }
    .col-lg-1 {
        width: 8.333333333333332%
    }
    .col-lg-pull-12 {
        right: 100%
    }
    .col-lg-pull-11 {
        right: 91.66666666666666%
    }
    .col-lg-pull-10 {
        right: 83.33333333333334%
    }
    .col-lg-pull-9 {
        right: 75%
    }
    .col-lg-pull-8 {
        right: 66.66666666666666%
    }
    .col-lg-pull-7 {
        right: 58.333333333333336%
    }
    .col-lg-pull-6 {
        right: 50%
    }
    .col-lg-pull-5 {
        right: 41.66666666666667%
    }
    .col-lg-pull-4 {
        right: 33.33333333333333%
    }
    .col-lg-pull-3 {
        right: 25%
    }
    .col-lg-pull-2 {
        right: 16.666666666666664%
    }
    .col-lg-pull-1 {
        right: 8.333333333333332%
    }
    .col-lg-pull-0 {
        right: auto
    }
    .col-lg-push-12 {
        left: 100%
    }
    .col-lg-push-11 {
        left: 91.66666666666666%
    }
    .col-lg-push-10 {
        left: 83.33333333333334%
    }
    .col-lg-push-9 {
        left: 75%
    }
    .col-lg-push-8 {
        left: 66.66666666666666%
    }
    .col-lg-push-7 {
        left: 58.333333333333336%
    }
    .col-lg-push-6 {
        left: 50%
    }
    .col-lg-push-5 {
        left: 41.66666666666667%
    }
    .col-lg-push-4 {
        left: 33.33333333333333%
    }
    .col-lg-push-3 {
        left: 25%
    }
    .col-lg-push-2 {
        left: 16.666666666666664%
    }
    .col-lg-push-1 {
        left: 8.333333333333332%
    }
    .col-lg-push-0 {
        left: auto
    }
    .col-lg-offset-12 {
        margin-left: 100%
    }
    .col-lg-offset-11 {
        margin-left: 91.66666666666666%
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333333334%
    }
    .col-lg-offset-9 {
        margin-left: 75%
    }
    .col-lg-offset-8 {
        margin-left: 66.66666666666666%
    }
    .col-lg-offset-7 {
        margin-left: 58.333333333333336%
    }
    .col-lg-offset-6 {
        margin-left: 50%
    }
    .col-lg-offset-5 {
        margin-left: 41.66666666666667%
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333333333%
    }
    .col-lg-offset-3 {
        margin-left: 25%
    }
    .col-lg-offset-2 {
        margin-left: 16.666666666666664%
    }
    .col-lg-offset-1 {
        margin-left: 8.333333333333332%
    }
    .col-lg-offset-0 {
        margin-left: 0
    }
}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-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.428571429;
    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) {
    background-color: #f9f9f9
}

.table-hover>tbody>tr:hover {
    background-color: #f5f5f5
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell
}

.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:hover>.active,
.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:hover>.success,
.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:hover>.info,
.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:hover>.warning,
.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:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
    background-color: #ebcccc
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -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 {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 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;
    max-width: 100%;
    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.428571429;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    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, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-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, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.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
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"],
    input[type="month"] {
        line-height: 34px
    }
    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm {
        line-height: 30px
    }
    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg {
        line-height: 46px
    }
}

.form-group {
    margin-bottom: 15px
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.radio label,
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9
}

.radio+.radio,
.checkbox+.checkbox {
    margin-top: -5px
}

.radio-inline,
.checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer
}

.radio-inline+.radio-inline,
.checkbox-inline+.checkbox-inline {
    margin-top: 0;
    margin-left: 10px
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0
}

.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0
}

.input-sm,
.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm,
select.form-group-sm .form-control {
    height: 30px;
    line-height: 30px
}

textarea.input-sm,
textarea.form-group-sm .form-control,
select[multiple].input-sm,
select[multiple].form-group-sm .form-control {
    height: auto
}

.input-lg,
.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px
}

select.input-lg,
select.form-group-lg .form-control {
    height: 46px;
    line-height: 46px
}

textarea.input-lg,
textarea.form-group-lg .form-control,
select[multiple].input-lg,
select[multiple].form-group-lg .form-control {
    height: auto
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.input-lg+.form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.input-sm+.form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.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,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.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,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label~.form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only~.form-control-feedback {
    top: 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 .form-control-static {
        display: inline-block
    }
    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
        width: auto
    }
    .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;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .form-inline .radio label,
    .form-inline .checkbox label {
        padding-left: 0
    }
    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }
    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-left: 0;
    margin-right: 0
}

@media (min-width:768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 0
}

@media (min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.3px
    }
}

@media (min-width:768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.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,
.btn.focus {
    color: #333;
    text-decoration: none
}

.btn:active,
.btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    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.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: #337ab7;
    border-color: #2e6da4
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.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.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: #337ab7;
    border-color: #2e6da4
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success.active,
.open>.dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    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.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.focus,
.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    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.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.focus,
.btn-warning:active,
.btn-warning.active,
.open>.dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    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.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: #d9534f;
    border-color: #d43f3a
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.btn-danger.active,
.open>.dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.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.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 {
    color: #337ab7;
    font-weight: normal;
    border-radius: 0
}

.btn-link,
.btn-link:active,
.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: #23527c;
    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: #777;
    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%
}

.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;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none;
    visibility: hidden
}

.collapse.in {
    display: block;
    visibility: visible
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px 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;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    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.428571429;
    color: #333;
    white-space: nowrap
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    color: #777
}

.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed
}

.open>.dropdown-menu {
    display: block
}

.open>a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right>.dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: ""
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px
}

@media (min-width:768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0
    }
    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.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+.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-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-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-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn-group:last-child>.btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group>.btn+.dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group>.btn-lg+.dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.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-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.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-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified>.btn-group .btn {
    width: 100%
}

.btn-group-justified>.btn-group .dropdown-menu {
    left: auto
}

[data-toggle="buttons"]>.btn input[type="radio"],
[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],
[data-toggle="buttons"]>.btn input[type="checkbox"],
[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 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-bottom-right-radius: 0;
    border-top-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-bottom-left-radius: 0;
    border-top-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 {
    margin-bottom: 0;
    padding-left: 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;
    background-color: #eee
}

.nav>li.disabled>a {
    color: #777
}

.nav>li.disabled>a:hover,
.nav>li.disabled>a:focus {
    color: #777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background-color: #eee;
    border-color: #337ab7
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav>li>a>img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.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: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.nav-tabs.nav-justified>li {
    float: none
}

.nav-tabs.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px
}

.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: #337ab7
}

.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 {
    text-align: center;
    margin-bottom: 5px
}

.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;
    visibility: hidden
}

.tab-content>.active {
    display: block;
    visibility: visible
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    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 {
    overflow-x: visible;
    padding-right: 0;
    padding-left: 0;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch
}

.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;
        visibility: visible !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-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px
}

@media (max-device-width:480px) and (orientation:landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px
    }
}

.container>.navbar-header,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container-fluid>.navbar-collapse {
    margin-right: 0;
    margin-left: 0
}

@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;
    padding: 15px 0;
    font-size: 18px;
    line-height: 20px;
    height: 50px
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none
}

.navbar-brand>img {
    display: block
}

@media (min-width:768px) {
    .navbar>.container .navbar-brand,
    .navbar>.container-fluid .navbar-brand {
        margin-left: 0
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 0;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.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 0
}

.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-form {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px
}

@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 .form-control-static {
        display: inline-block
    }
    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn,
    .navbar-form .input-group .form-control {
        width: auto
    }
    .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;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .radio label,
    .navbar-form .checkbox label {
        padding-left: 0
    }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }
    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }
    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width:768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    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-left: 0;
        margin-right: 0
    }
}

@media (min-width:768px) {
    .navbar-left {
        float: left !important;
        float: left
    }
    .navbar-right {
        float: right !important;
        float: right;
        margin-right: 0
    }
    .navbar-right~.navbar-right {
        margin-right: 0
    }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent
}

.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;
    background-color: transparent
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #555;
    background-color: #e7e7e7
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:hover,
.navbar-default .navbar-nav>.disabled>a:focus {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.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 {
    background-color: #e7e7e7;
    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;
        background-color: transparent
    }
    .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;
        background-color: #e7e7e7
    }
    .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;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
    color: #333
}

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #080808
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
    color: #fff;
    background-color: #080808
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:hover,
.navbar-inverse .navbar-nav>.disabled>a:focus {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.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 {
    background-color: #080808;
    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 .divider {
        background-color: #080808
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #9d9d9d
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #fff;
        background-color: transparent
    }
    .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;
        background-color: #080808
    }
    .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;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px
}

.breadcrumb>li {
    display: inline-block
}

.breadcrumb>li+li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #ccc
}

.breadcrumb>.active {
    color: #777
}

.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;
    line-height: 1.428571429;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: #23527c;
    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;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.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-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-bottom-right-radius: 6px;
    border-top-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-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center
}

.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: #777;
    background-color: #fff;
    cursor: not-allowed
}

.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
}

a.label:hover,
a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

.label-default {
    background-color: #777
}

.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #337ab7
}

.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #286090
}

.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;
    color: #fff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #777;
    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
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
    color: #337ab7;
    background-color: #fff
}

.list-group-item>.badge {
    float: right
}

.list-group-item>.badge+.badge {
    margin-right: 5px
}

.nav-pills>li>a>.badge {
    margin-left: 3px
}

.jumbotron {
    padding: 30px 15px;
    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
}

.jumbotron>hr {
    border-top-color: #d5d5d5
}

.container .jumbotron,
.container-fluid .jumbotron {
    border-radius: 6px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding: 48px 0
    }
    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }
    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
}

.thumbnail>img,
.thumbnail a>img {
    margin-left: auto;
    margin-right: auto
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #337ab7
}

.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,
.alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.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 {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 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: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px
}

.progress.active .progress-bar,
.progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media-right,
.media>.pull-right {
    padding-left: 10px
}

.media-left,
.media>.pull-left {
    padding-right: 10px
}

.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.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-right-radius: 4px;
    border-top-left-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

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;
    color: #555;
    background-color: #f5f5f5
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    background-color: #eee;
    color: #777;
    cursor: not-allowed
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
    color: #777
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading>small,
.list-group-item.active:hover .list-group-item-heading>small,
.list-group-item.active:focus .list-group-item-heading>small,
.list-group-item.active .list-group-item-heading>.small,
.list-group-item.active:hover .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading>.small {
    color: inherit
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
    color: #c7ddef
}

.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, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05)
}

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-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,
.panel>.panel-collapse>.list-group {
    margin-bottom: 0
}

.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.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
}

.list-group+.panel-footer {
    border-top-width: 0
}

.panel>.table,
.panel>.table-responsive>.table,
.panel>.panel-collapse>.table {
    margin-bottom: 0
}

.panel>.table caption,
.panel>.table-responsive>.table caption,
.panel>.panel-collapse>.table caption {
    padding-left: 15px;
    padding-right: 15px
}

.panel>.table:first-child,
.panel>.table-responsive:first-child>.table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel>.table:first-child>thead:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr: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,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-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,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
    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 {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    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,
.panel-group .panel-heading+.panel-collapse>.list-group {
    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: #f5f5f5;
    border-color: #ddd
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd
}

.panel-default>.panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #337ab7
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #337ab7
}

.panel-primary>.panel-heading .badge {
    color: #337ab7;
    background-color: #fff
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #337ab7
}

.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-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.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-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.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-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.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-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%
}

.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, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 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;
    opacity: .2;
    filter: alpha(opacity=20)
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50)
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.428571429px
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.428571429
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5)
    }
    .modal-sm {
        width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .9;
    filter: alpha(opacity=90)
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px
}

.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: #000
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    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;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    white-space: normal
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    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 {
    border-width: 10px;
    content: ""
}

.popover.top>.arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px
}

.popover.top>.arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff
}

.popover.right>.arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25)
}

.popover.right>.arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff
}

.popover.bottom>.arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px
}

.popover.bottom>.arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    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, 0.25)
}

.popover.left>.arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

.carousel-inner>.item {
    display: none;
    position: relative;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
    line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-inner>.item {
        transition: transform .6s ease-in-out;
        backface-visibility: hidden;
        perspective: 1000
    }
    .carousel-inner>.item.next,
    .carousel-inner>.item.active.right {
        transform: translate3d(100%, 0, 0);
        left: 0
    }
    .carousel-inner>.item.prev,
    .carousel-inner>.item.active.left {
        transform: translate3d(-100%, 0, 0);
        left: 0
    }
    .carousel-inner>.item.next.left,
    .carousel-inner>.item.prev.right,
    .carousel-inner>.item.active {
        transform: translate3d(0, 0, 0);
        left: 0
    }
}

.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;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
}

.carousel-control:hover,
.carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

.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%;
    margin-left: -10px
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0)
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 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;
        font-size: 30px
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -15px
    }
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -15px
    }
    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }
    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix,
.dl-horizontal dd,
.container,
.container-fluid,
.row,
.form-horizontal .form-group,
.btn-toolbar,
.btn-group-vertical>.btn-group,
.nav,
.navbar,
.navbar-header,
.navbar-collapse,
.pager,
.panel-body,
.modal-footer {
    overflow: auto;
    zoom: 1
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd: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 {
    content: " ";
    display: table
}

.clearfix:after,
.dl-horizontal dd: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-left: auto;
    margin-right: 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
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    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 (max-width:767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width:767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block !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:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block !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:992px) and (max-width:1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline-block {
        display: inline-block !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 (min-width:1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width:1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width:1200px) {
    .visible-lg-inline-block {
        display: inline-block !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
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}


/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
    font-family: 'FontAwesome';
    src: url('../../bower_components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
    src: url('../../bower_components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../../bower_components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../../bower_components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../../bower_components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') 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.3333333333333333em;
    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.2857142857142858em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.142857142857143em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.142857142857143em;
    width: 2.142857142857143em;
    top: .14285714285714285em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.8571428571428572em
}

.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: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.wp-caption-text {
    font-size: 12px;
    margin-top: 3px !important
}

#inner-footer {
    padding: 0;
    background-color: #333333
}

body {
    padding-left: 73px
}

@media (max-width:1219px) {
    body {
        padding-left: 0
    }
}

body.custom-background {
    background: none !important
}

.container {
    padding-left: 0;
    padding-right: 0
}

@media (max-width:1219px) {
    .container {
        padding-left: 10px;
        padding-right: 10px
    }
}

body.admin-bar .navbar-fixed-top {
    top: 28px
}

a {
    transition: color 150ms linear
}

a:hover {
    text-decoration: none
}

.navbar .brand {
    color: #000;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.125);
    font-weight: bold !important
}

.nav-container {
    padding-left: 0;
    padding-right: 0
}

.verticali {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: #333;
    width: 73px;
    z-index: 11
}

@media (max-width:1219px) {
    .verticali {
        display: none
    }
}

.verticali .widget {
    width: 73px;
    color: #fff;
    margin-top: 40px
}

.verticali-nav .ecosystem {
    display: block;
    color: #57c2f5;
    text-align: center;
    margin: 40px 0 20px 0
}

.link-verticale {
    display: block;
    width: 73px;
    margin: 10px auto;
    color: #fff;
    font-size: 11px;
    font-family: 'Lato', sans-serif;
    text-align: center;
    padding: 0 5px
}

.link-verticale .icona-verticale {
    display: block;
    margin: 0 auto;
    width: 46px;
    height: 46px;
    background-repeat: no-repeat;
    background-position: left top
}

.link-verticale .icona-verticale.verticale-smart-money {
    background-image: url("../../../images/smartmoney-unito.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .link-verticale .icona-verticale.verticale-smart-money {
        background-image: url("../../../images/smartmoney-unito.png");
        background-size: 46px 92px
    }
}

.link-verticale .icona-verticale.verticale-blog {
    background-image: url("../../../images/blog-unito.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .link-verticale .icona-verticale.verticale-blog {
        background-image: url("../../../images/blog-unito.png");
        background-size: 46px 92px
    }
}

.link-verticale .icona-verticale.verticale-ischool {
    background-image: url("../../../images/ischool-unito.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .link-verticale .icona-verticale.verticale-ischool {
        background-image: url("../../../images/ischool-unito.png");
        background-size: 46px 92px
    }
}

.link-verticale .icona-verticale.verticale-bandi {
    background-image: url("../../../images/bandi-unito.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .link-verticale .icona-verticale.verticale-bandi {
        background-image: url("../../../images/bandi-unito.png");
        background-size: 46px 92px
    }
}

.link-verticale .icona-verticale.verticale-international {
    background-image: url("../../../images/international-unito.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .link-verticale .icona-verticale.verticale-international {
        background-image: url("../../../images/international-unito.png");
        background-size: 46px 92px
    }
}

.link-verticale .icona-verticale.verticale-food {
    background-image: url("../../../images/food-unito.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .link-verticale .icona-verticale.verticale-food {
        background-image: url("../../../images/food-unito.png");
        background-size: 46px 92px
    }
}

.link-verticale .icona-verticale.verticale-tech {
    background-image: url("../../../images/tech-unito.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .link-verticale .icona-verticale.verticale-tech {
        background-image: url("../../../images/tech-unito.png");
        background-size: 46px 92px
    }
}

.link-verticale:hover {
    text-decoration: none;
    color: #fff !important
}

.link-verticale:hover .icona-verticale {
    background-position: left bottom
}

#inner-header {
    width: 100%
}

input,
textarea,
select,
.uneditable-input {
    margin-bottom: 0
}

.navbar-search {
    padding-left: 0
}

#content {
    padding: 10px 0 0
}

.more-link {
    white-space: nowrap
}

footer>.container {
    background: #333
}

.footer-banner {
    background-image: url("../../../images/background_footer.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    position: relative
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .footer-banner {
        background-image: url("../../../images/background_footer_2x.jpg");
        background-size: 1155px 115px
    }
}

.footer-banner img {
    max-width: 260px
}

.footer-banner .site-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: bold;
    font-size: 48px;
    position: absolute;
    top: 20px;
    left: 20px
}

.footer-banner .site-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 22px;
    font-style: italic;
    position: absolute;
    left: 120px;
    top: 70px
}

.footer-links {
    float: right;
    margin-bottom: 18px
}

.footer-links .menu {
    list-style-type: none;
    margin-left: 0
}

.footer-links .menu li {
    float: left;
    margin-left: 10px
}

.legal {
    padding: 20px 0 0 0;
    background: #ccc;
    margin-bottom: 40px;
    text-align: center
}

.legal p {
    margin: 0
}

.pagination {
    display: block;
    padding: 0 10px
}

.navbar-default {
    background: none;
    border: 0 none;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    margin-left: 73px
}

.navbar-default .navbar-header {
    background: #000
}

@media (min-width:1219px) {
    .navbar-default .navbar-header {
        background: transparent
    }
}

.navbar-default .navbar-brand {
    width: 209px;
    height: 33px;
    background-image: url("../../../images/startupitalia_logo.png");
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 0;
    margin-top: 13px;
    margin-left: 10px !important;
    margin-right: 20px
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .navbar-default .navbar-brand {
        background-image: url("../../../images/startupitalia_logo2x.png");
        background-size: 209px 33px
    }
}

.navbar-default .navbar-collapse {
    border: 0 none;
    box-shadow: none
}

.navbar-default .navbar-toggle {
    float: left;
    margin-left: 10px
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background: transparent;
    border-color: #57c2f5
}

.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
    background-color: #57c2f5
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px 0 10px 5px;
    line-height: 10px;
    margin-top: 18px;
    margin-left: 5px
}

.navbar-default .navbar-nav>li>a:after {
    content: '/';
    color: #fc2d2d;
    font-weight: bold;
    margin-left: 15px;
    margin-right: 5px;
    font-size: 18px;
    font-size: 1.8rem;
    vertical-align: middle
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:active,
.navbar-default .navbar-nav>li>a:focus {
    color: #fc2d2d
}

.navbar-default .navbar-nav>li>a.active {
    color: #fc2d2d;
    background: #f5f6fa;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.navbar-default .navbar-nav>li.active>a {
    background: transparent;
    color: #fc2d2d
}

.navbar-default .navbar-nav>li.trending-topic>a {
    background: transparent;
    color: #fc2d2d;
    cursor: default;
    margin-right: 10px
}

.navbar-default .navbar-nav>li.trending-topic>a:after {
    display: none
}

.navbar-default .navbar-nav>li.trending-topic>a:hover {
    background: transparent
}

.navbar-default .navbar-nav>li.vedi-tutti>a {
    background: transparent
}

.navbar-default .navbar-nav>li.vedi-tutti>a:after {
    display: none
}

.navbar-default .navbar-nav>li.vedi-tutti>a:hover {
    background: transparent
}

.navbar-default #searchform {
    position: absolute;
    right: 70px;
    top: 1px
}

.navbar-default #searchform.initial {
    transform: translate3d(2000px, 0, 0)
}

.navbar-default #searchform button {
    display: none
}

.navbar-default .to-top {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("../../../images/freccia-su-copertina.png");
    margin-top: 12px;
    margin-right: 30px
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .navbar-default .to-top {
        background-image: url("../../../images/freccia-su-copertina-2x.png");
        background-size: 30px 30px
    }
}

.navbar-default .open-search {
    display: inline-block;
    width: 29px;
    height: 29px;
    background-image: url("../../../images/search.png");
    margin-top: 12px;
    margin-right: 30px
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .navbar-default .open-search {
        background-image: url("../../../images/search-2x.png");
        background-size: 29px 29px
    }
}

.navbar-default .socials {
    display: none
}

.navbar-default .verticali-nav {
    display: none
}

.all-categories {
    position: fixed;
    left: 100px;
    top: 51px;
    background: #f5f7fa;
    border-radius: 5px;
    width: 350px;
    min-height: 0;
    max-height: 0;
    z-index: 100;
    overflow: hidden;
    transition: all 350ms ease-out
}

.all-categories.active {
    min-height: 200px;
    max-height: 500px
}

.all-categories ul {
    list-style: none;
    padding: 20px;
    margin: 0
}

.all-categories ul li {
    float: left;
    width: 48%;
    border-bottom: 1px solid #9c9d9f;
    margin-left: 1%;
    margin-right: 1%
}

@media (max-width:1219px) {
    .navbar-toggle {
        display: block
    }
    .navbar-header {
        float: none
    }
    .navbar-default {
        margin-left: 0;
        background: #000
    }
    .navbar-default .navbar-collapse.collapse {
        display: none !important
    }
    .navbar-default .navbar-collapse.collapse.in {
        display: block !important
    }
    .navbar-default .navbar-nav {
        float: none
    }
    .navbar-default .navbar-nav .menu-item {
        display: block;
        float: none;
        text-align: center
    }
    .navbar-default .navbar-nav .menu-item>a:after {
        color: #57c2f5
    }
    .navbar-default .navbar-nav .menu-item.vedi-tutti {
        display: none
    }
    .navbar-default .navbar-nav .menu-item.trending-topic {
        color: #57c2f5
    }
    .navbar-default .socials {
        display: block
    }
    .navbar-default .socials .widget {
        float: none;
        text-align: center
    }
    .navbar-default .navbar-right {
        float: none !important
    }
    .navbar-default .open-search {
        display: none
    }
    .navbar-default .to-top {
        display: none
    }
    .navbar-default #searchform.initial {
        position: static;
        display: block;
        transform: translate3d(0, 0, 0);
        border: 0 none;
        box-shadow: none;
        max-width: 220px;
        margin: 20px auto
    }
    .navbar-default #searchform.initial .form-control {
        display: inline-block;
        max-width: 150px
    }
    .navbar-default #searchform.initial button {
        display: inline-block;
        background: none;
        border: 0 none
    }
    .navbar-default .verticali-nav {
        display: block
    }
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: none
    }
}

.trending-megamenu {
    position: fixed;
    max-height: 0;
    overflow: hidden;
    z-index: 10;
    width: 100%;
    left: 0;
    top: 50px;
    transition: all 350ms ease-out
}

.trending-megamenu.active {
    max-height: 500px
}

.trending-megamenu>.container {
    background: #f5f6fa;
    margin: 0 auto 0 auto;
    padding: 20px 0;
    border-radius: 5px
}

.trending-megamenu .left-col {
    border-right: 1px solid #aeaeae
}

.trending-megamenu .left-col .post {
    padding: 0 10px
}

.trending-megamenu .left-col .post a {
    color: #333
}

.trending-megamenu .left-col .post a:hover {
    text-decoration: none
}

.trending-megamenu .left-col .post img {
    display: block
}

.trending-megamenu .left-col .post time {
    font-size: 12px;
    text-transform: uppercase
}

.trending-megamenu .left-col .post h2 {
    font-size: 20px;
    margin-top: 0
}

.trending-megamenu .right-col .post {
    padding: 0 10px
}

.trending-megamenu .right-col .post a {
    color: #333
}

.trending-megamenu .right-col .post a:hover {
    text-decoration: none
}

.trending-megamenu .right-col .post time {
    color: #333;
    font-size: 12px;
    text-transform: uppercase
}

.trending-megamenu .right-col .post h2 {
    font-size: 16px;
    margin-top: 0
}

.trending-megamenu .more {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-right: 20px
}

#main p.meta {
    font-style: italic;
    color: #808080
}

#main article {
    margin-bottom: 18px;
    padding: 0 0 9px
}

#main article footer {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    position: relative;
    min-height: 20px
}

p.tags {
    line-height: 20px
}

div[id*='attachment_'] {
    max-width: 100%;
    height: 100%
}

#main .hero-unit img {
    margin-bottom: 1em
}

#main article img {
    height: auto;
    max-width: 100%
}

img.alignleft {
    width: 100%
}

@media (min-width:768px) {
    img.alignleft {
        width: auto;
        margin-right: 10px;
        float: left
    }
}

img.alignright {
    width: 100%
}

@media (min-width:768px) {
    img.alignright {
        width: auto;
        margin-left: 10px;
        float: right
    }
}

img.aligncenter {
    display: block;
    max-width: 99%;
    margin: 0 auto
}

img.alignnone {
    display: block;
    width: 100%;
    height: auto
}

img.alignnone.avatar {
    display: inline-block
}

.wp-caption.alignnone {
    width: 100% !important
}

@media (min-width:768px) {
    .wp-caption.alignleft {
        width: auto;
        margin-right: 15px !important;
        float: left
    }
}

@media (min-width:768px) {
    .wp-caption.alignright {
        width: auto;
        margin-left: 15px !important;
        float: right
    }
}

.wp-caption img {
    display: block;
    width: 100%;
    height: auto
}

.archive #main .post h3 {
    line-height: 24px;
    margin-bottom: 10px
}

video {
    max-width: 100%;
    height: auto
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-wrapper {
    width: 630px;
    max-width: 100%;
    margin-bottom: 18px
}

.single .section-title {
    margin-top: 70px;
    margin-bottom: 20px
}

.single .section-title .sezione a {
    color: #333
}

.single h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 54px;
    font-weight: bold
}

@media (max-width:768px) {
    .single h1 {
        font-size: 30px
    }
}

@media (max-width:400px) {
    .single h1 {
        font-size: 25px
    }
}

.single .excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    margin-bottom: 20px;
    line-height: 1.2
}

@media (max-width:768px) {
    .single .excerpt {
        font-size: 20px
    }
}

@media (max-width:400px) {
    .single .excerpt {
        font-size: 15px;
        line-height: 1.3
    }
}

.single .post-meta {
    border-bottom: 1px solid #cdcdcd
}

.single .post-meta .author-avatar {
    position: relative;
    top: 5px;
    margin-right: 15px;
    width: 60px;
    height: 60px
}

.single .post-meta .author-avatar>img {
    width: 60px;
    height: 60px
}

@media (max-width:768px) {
    .single .post-meta .author-avatar {
        float: left
    }
}

.single .post-meta .author {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    vertical-align: bottom;
    margin-right: 100px
}

@media (max-width:768px) {
    .single .post-meta .author {
        display: block;
        font-size: 18px;
        padding-bottom: 5px;
        padding-top: 8px;
        margin-right: 0;
        margin-left: 80px;
        vertical-align: middle
    }
}

@media (max-width:400px) {
    .single .post-meta .author {
        font-size: 16px
    }
}

.single .post-meta time {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 200;
    vertical-align: bottom
}

@media (max-width:768px) {
    .single .post-meta time {
        display: block;
        font-size: 16px;
        padding-bottom: 20px;
        margin-left: 80px;
        margin-top: 3px;
        vertical-align: middle
    }
}

@media (max-width:400px) {
    .single .post-meta time {
        font-size: 15px
    }
}

.single .post-meta .like-buttons {
    display: inline-block;
    float: right;
    vertical-align: bottom;
    padding-top: 23px
}

.single .content {
    padding: 20px 10px;
    font-family: 'Lato', sans-serif;
    font-size: 19px;
    font-weight: normal;
    line-height: 1.8
}

@media (min-width:768px) {
    .single .content {
        padding: 50px 80px
    }
}

@media (max-width:400px) {
    .single .content {
        font-size: 18px;
        line-height: 1.4
    }
}

.single .content h2,
.single .content h3 {
    font-size: 32px;
    font-weight: bold;
    font-family: 'Roboto'
}

.single .content blockquote {
    position: relative;
    font-family: 'Lato', sans-serif;
    text-align: left;
    font-size: 26px;
    line-height: 1.2em;
    font-weight: bold;
    padding: 0;
    border: 0 none;
    color: #57c2f5;
    padding: 20px 0
}

@media (min-width:768px) {
    .single .content blockquote {
        font-size: 40px;
        padding: 20px 10px 30px 10px
    }
    .single .content blockquote:before {
        content: '"';
        display: block;
        position: absolute;
        left: -80px;
        top: 0;
        font-size: 65px;
        width: 71px;
        height: 52px;
        background-image: url("../../../images/quote-aperta.png");
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
        background-repeat: no-repeat;
        background-position: 0 0;
        margin-top: 15px
    }
    .single .content blockquote:after {
        content: '"';
        position: absolute;
        right: -80px;
        bottom: 0;
        font-size: 65px;
        width: 71px;
        height: 52px;
        background-image: url("../../../images/quote-chiusa.png");
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
        background-repeat: no-repeat;
        background-position: 0 0;
        margin-bottom: 0px
    }
    .single .content blockquote.pull-right:after,
    .single .content blockquote.pull-left:after,
    .single .content blockquote.pull-right:before,
    .single .content blockquote.pull-left:before {
        display: none
    }
    .single .content blockquote.pull-left {
        margin-right: 20px
    }
    .single .content blockquote.pull-right {
        margin-left: 20px
    }
}

@media (min-width:768px) and only screen and (-webkit-min-device-pixel-ratio:2),
(min-width:768px) and only screen and (min--moz-device-pixel-ratio:2),
(min-width:768px) and only screen and (-o-min-device-pixel-ratio:2/1),
(min-width:768px) and only screen and (min-device-pixel-ratio:2),
(min-width:768px) and only screen and (min-resolution:192dpi),
(min-width:768px) and only screen and (min-resolution:2dppx) {
    .single .content blockquote:before {
        background-image: url("../../../images/quote-aperta.png");
        background-size: 71px 52px
    }
}

@media (min-width:768px) and only screen and (-webkit-min-device-pixel-ratio:2),
(min-width:768px) and only screen and (min--moz-device-pixel-ratio:2),
(min-width:768px) and only screen and (-o-min-device-pixel-ratio:2/1),
(min-width:768px) and only screen and (min-device-pixel-ratio:2),
(min-width:768px) and only screen and (min-resolution:192dpi),
(min-width:768px) and only screen and (min-resolution:2dppx) {
    .single .content blockquote:after {
        background-image: url("../../../images/quote-chiusa.png");
        background-size: 71px 52px
    }
}

.single .content img.size-full {
    display: block
}

.single .post-tags {
    border-top: 1px dashed #cdcdcd;
    padding: 10px
}

.single .post-tags>span {
    display: inline-block;
    text-transform: uppercase;
    margin-right: 10px
}

.single .post-tags a {
    display: inline-block;
    font-style: italic;
    margin-left: 10px
}

.single .scelti {
    border-bottom: 1px solid #cdcdcd;
    overflow: hidden;
    margin-bottom: 30px
}

.single .scelti h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 10px;
    margin-bottom: 20px
}

.single .scelti .scelto {
    margin-bottom: 20px
}

.single .scelti .scelto .image .post-thumbnail-bg {
    display: inline-block;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat
}

.single .scelti .scelto .text {
    padding: 0 10px 10px 10px
}

.single .scelti .scelto .text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: bold, color: #333;
    margin-top: 0
}

.single .scelti .scelto .text h2 a {
    color: #333
}

@media (max-width:400px) {
    .single .scelti .scelto .text h2 {
        font-size: 16px
    }
}

.single .scelti .scelto .text .excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 16px
}

@media (max-width:400px) {
    .single .scelti .scelto .text .excerpt {
        font-size: 12px
    }
}

.single .altri-verticali .primo-articolo .text {
    padding: 0 10px
}

@media (max-width:1200px) {
    .single .altri-verticali .primo-articolo .text {
        margin-top: 5px;
        margin-left: 0px;
        padding-left: 0px
    }
}

.single .altri-verticali .primo-articolo .text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: bold;
    margin-top: 0;
    margin-right: 20px;
    margin-left: 5px
}

.single .altri-verticali .primo-articolo .text h2 a {
    color: #333
}

@media (max-width:768px) {
    .single .altri-verticali .primo-articolo .text h2 {
        margin-left: 0px;
        padding-left: 0px;
        font-size: 30px
    }
}

@media (max-width:1200px) {
    .single .altri-verticali .primo-articolo .text h2 {
        font-size: 30px;
        margin-left: 0px
    }
}

.single .altri-verticali .primo-articolo .text .excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    margin-left: 5px
}

@media (min-width:1200px) {
    .single .altri-verticali .primo-articolo .text .excerpt {
        font-size: 16px;
        margin-bottom: 120px
    }
}

.single .altri-verticali .altri-articoli .image {
    margin-bottom: 10px;
    padding-right: 20px
}

@media (max-width:1200px) {
    .single .altri-verticali .altri-articoli .image {
        margin-right: 10px
    }
}

.single .altri-verticali .altri-articoli .text {
    padding: 0 10px 0 0
}

.single .altri-verticali .altri-articoli .text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: bold;
    margin-top: 0
}

.single .altri-verticali .altri-articoli .text h2 a {
    color: #333
}

#featured-carousel .item {
    width: 970px;
    height: 600px
}

.carousel-caption p {
    display: none
}

.page-template-page-homepage-php #main article {
    border-bottom: none
}

.page-template-page-homepage-php .hero-unit,
.blog .hero-unit {
    padding: 1em
}

.hero-unit h1 {
    font-size: 3em
}

.socials {
    overflow: hidden
}

@media (max-width:1219px) {
    .socials {
        display: none
    }
}

.socials .widget {
    float: right
}

.socials .widget ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.socials .widget ul li {
    display: inline-block;
    font-size: 0
}

.socials .widget ul li a {
    display: block;
    width: 36px;
    height: 36px
}

.socials .widget ul li a.facebook {
    background-image: url("../../../images/facebook.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .socials .widget ul li a.facebook {
        background-image: url("../../../images/facebook-2x.png");
        background-size: 36px 36px
    }
}

.socials .widget ul li a.twitter {
    background-image: url("../../../images/twitter.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .socials .widget ul li a.twitter {
        background-image: url("../../../images/twitter-2x.png");
        background-size: 36px 36px
    }
}

.navbar-default .socials .widgettitle {
    font-family: 'Exo', sans-serif
}

.navbar-default .socials .widget ul li a {
    width: 48px;
    height: 36px
}

.navbar-default .socials .widget ul li a.facebook {
    background-image: url("../../../images/facebook-copertina.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .navbar-default .socials .widget ul li a.facebook {
        background-image: url("../../../images/facebook-copertina-2x.png");
        background-size: 48px 36px
    }
}

.navbar-default .socials .widget ul li a.twitter {
    background-image: url("../../../images/twitter-copertina.png")
}

@media only screen and (-webkit-min-device-pixel-ratio:2),
only screen and (min--moz-device-pixel-ratio:2),
only screen and (-o-min-device-pixel-ratio:2/1),
only screen and (min-device-pixel-ratio:2),
only screen and (min-resolution:192dpi),
only screen and (min-resolution:2dppx) {
    .navbar-default .socials .widget ul li a.twitter {
        background-image: url("../../../images/twitter-copertina-2x.png");
        background-size: 48px 36px
    }
}

.homepage-header {
    overflow: hidden;
    position: relative
}

.homepage-header .full-bg-image {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0
}

.homepage-header .full-bg-image-fallback {
    display: none;
    position: absolute
}

.homepage-header .homepage-header-content {
    position: relative;
    z-index: 1;
    padding-top: 60px
}

.homepage-header .homepage-header-content>.container {
    position: relative
}

.homepage-header .widget-articoli {
    float: right;
    padding: 65px 0 200px 0;
    overflow: hidden
}

@media (max-width:767px) {
    .homepage-header .widget-articoli {
        float: none;
        padding: 35px 0 35px 0
    }
}

.homepage-header .widget-articoli .widget {
    width: 460px;
    height: 235px;
    float: left;
    margin-left: 15px
}

@media (max-width:767px) {
    .homepage-header .widget-articoli .widget {
        width: auto;
        float: none;
        height: auto;
        margin-left: 0
    }
}

.homepage-header .widget-articoli .widget .widgettitle {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: italic;
    background: #333;
    padding: 3px 5px
}

.homepage-header .widget-articoli .widget .latest_news {
    margin: 0;
    padding: 0;
    list-style: none
}

.homepage-header .widget-articoli .widget .latest_news li {
    margin-bottom: 5px
}

.homepage-header .widget-articoli .widget .latest_news li a {
    display: table;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 13px;
    width: 100%;
    color: #333
}

.homepage-header .widget-articoli .widget .latest_news li a time {
    display: table-cell;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    width: 70px;
    padding: 10px 0;
    vertical-align: middle
}

.homepage-header .widget-articoli .widget .latest_news li a strong {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 10px
}

.homepage-header .widget-articoli .widget .tptn_posts_widget {
    height: 100%
}

.homepage-header .widget-articoli .widget>ul,
.homepage-header .widget-articoli .widget .tptn_posts_widget ul {
    border: 3px solid #fff;
    padding: 20px 20px 20px 60px;
    margin: 0;
    height: 100%;
    list-style: none
}

.homepage-header .widget-articoli .widget>ul li,
.homepage-header .widget-articoli .widget .tptn_posts_widget ul li {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    line-height: normal;
    height: 33%
}

.homepage-header .widget-articoli .widget>ul li a,
.homepage-header .widget-articoli .widget .tptn_posts_widget ul li a {
    position: relative;
    color: #fff;
    font-size: 14px;
    vertical-align: top
}

.homepage-header .widget-articoli .widget>ul li a:before,
.homepage-header .widget-articoli .widget .tptn_posts_widget ul li a:before {
    content: '';
    display: block;
    position: absolute;
    left: -40px;
    top: 0;
    font-size: 32px
}

.homepage-header .widget-articoli .widget>ul li:nth-child(1) a:before,
.homepage-header .widget-articoli .widget .tptn_posts_widget ul li:nth-child(1) a:before {
    content: '1'
}

.homepage-header .widget-articoli .widget>ul li:nth-child(2) a:before,
.homepage-header .widget-articoli .widget .tptn_posts_widget ul li:nth-child(2) a:before {
    content: '2'
}

.homepage-header .widget-articoli .widget>ul li:nth-child(3) a:before,
.homepage-header .widget-articoli .widget .tptn_posts_widget ul li:nth-child(3) a:before {
    content: '3'
}

.homepage-header .sponsor {
    float: right
}

@media (min-width:768px) {
    .homepage-header .sponsor {
        position: absolute;
        right: 0;
        bottom: 0;
        float: none
    }
}

.homepage-header .to-content {
    position: absolute;
    left: 50%;
    bottom: 10px;
    margin-left: -43px
}

@media (max-width:1219px) {
    .homepage-header .to-content {
        display: none
    }
}

.section-title {
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    font-style: italic;
    font-size: 44px;
    margin-bottom: 50px
}

@media (max-width:1219px) {
    .section-title {
        font-size: 25px
    }
}

.section-title .titolo-verticale img {
    max-width: 300px;
    width: 100%;
    height: auto
}

@media (max-width:1219px) {
    .section-title .titolo-verticale img {
        max-width: 100px
    }
}

.home.page .content,
.archive .content,
.search .content,
.error404 .content {
    padding-bottom: 100px
}

.home.page .section-title,
.archive .section-title,
.search .section-title,
.error404 .section-title {
    margin-top: 70px
}

.home.page .sticky_posts,
.archive .sticky_posts,
.search .sticky_posts,
.error404 .sticky_posts {
    margin-bottom: 50px;
    margin-top: 50px
}

.home.page .sticky_posts .post,
.archive .sticky_posts .post,
.search .sticky_posts .post,
.error404 .sticky_posts .post {
    position: relative;
    cursor: pointer
}

.home.page .sticky_posts .post .gradient,
.archive .sticky_posts .post .gradient,
.search .sticky_posts .post .gradient,
.error404 .sticky_posts .post .gradient {
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0, #000 100%);
    background: -o-linear-gradient(rgba(255, 255, 255, 0) 0, #000 100%);
    background: linear-gradient(rgba(255, 255, 255, 0) 0, #000 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1
}

.home.page .sticky_posts .post .post-thumbnail-bg,
.archive .sticky_posts .post .post-thumbnail-bg,
.search .sticky_posts .post .post-thumbnail-bg,
.error404 .sticky_posts .post .post-thumbnail-bg {
    display: inline-block;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0
}

.home.page .sticky_posts .post .text,
.archive .sticky_posts .post .text,
.search .sticky_posts .post .text,
.error404 .sticky_posts .post .text {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -35px;
    z-index: 2
}

.home.page .sticky_posts .post .text .meta .author,
.archive .sticky_posts .post .text .meta .author,
.search .sticky_posts .post .text .meta .author,
.error404 .sticky_posts .post .text .meta .author {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    background: rgba(255, 0, 0, 0.7);
    padding: 3px 10px;
    color: #fff
}

@media (max-width:768px) {
    .home.page .sticky_posts .post .text .meta .author,
    .archive .sticky_posts .post .text .meta .author,
    .search .sticky_posts .post .text .meta .author,
    .error404 .sticky_posts .post .text .meta .author {
        font-size: 12px;
        padding: 3px 10px
    }
}

.home.page .sticky_posts .post .text .meta .category,
.archive .sticky_posts .post .text .meta .category,
.search .sticky_posts .post .text .meta .category,
.error404 .sticky_posts .post .text .meta .category {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    background: rgba(255, 0, 0, 0.7);
    padding: 3px 10px;
    margin-right: 5px;
    color: #fff
}

@media (max-width:768px) {
    .home.page .sticky_posts .post .text .meta .category,
    .archive .sticky_posts .post .text .meta .category,
    .search .sticky_posts .post .text .meta .category,
    .error404 .sticky_posts .post .text .meta .category {
        font-size: 12px
    }
}

.home.page .sticky_posts .post .text .meta time,
.archive .sticky_posts .post .text .meta time,
.search .sticky_posts .post .text .meta time,
.error404 .sticky_posts .post .text .meta time {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.7);
    padding: 3px 10px;
    color: #fff
}

.home.page .sticky_posts .post .text h2,
.archive .sticky_posts .post .text h2,
.search .sticky_posts .post .text h2,
.error404 .sticky_posts .post .text h2 {
    background: #fff;
    min-height: 70px;
    padding: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.3em;
    color: #333
}

@media (max-width:768px) {
    .home.page .sticky_posts .post .text h2,
    .archive .sticky_posts .post .text h2,
    .search .sticky_posts .post .text h2,
    .error404 .sticky_posts .post .text h2 {
        font-size: 20px;
        line-height: 1.2
    }
}

.home.page .sticky_posts .post .text h2 a,
.archive .sticky_posts .post .text h2 a,
.search .sticky_posts .post .text h2 a,
.error404 .sticky_posts .post .text h2 a {
    color: #333
}

.home.page .posts,
.archive .posts,
.search .posts,
.error404 .posts {
    border-right: 1px solid #aeaeae
}

.home.page .posts .post,
.archive .posts .post,
.search .posts .post,
.error404 .posts .post {
    margin-bottom: 60px;
    cursor: pointer
}

.home.page .posts .post .gradient,
.archive .posts .post .gradient,
.search .posts .post .gradient,
.error404 .posts .post .gradient {
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0, #000 100%);
    background: -o-linear-gradient(rgba(255, 255, 255, 0) 0, #000 100%);
    background: linear-gradient(rgba(255, 255, 255, 0) 0, #000 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1
}

.home.page .posts .post .post-thumbnail-bg,
.archive .posts .post .post-thumbnail-bg,
.search .posts .post .post-thumbnail-bg,
.error404 .posts .post .post-thumbnail-bg {
    display: inline-block;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat
}

.home.page .posts .post .category,
.archive .posts .post .category,
.search .posts .post .category,
.error404 .posts .post .category {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    background: #d2ae2c;
    padding: 3px 10px;
    margin-right: 5px;
    color: #fff
}

@media (max-width:768px) {
    .home.page .posts .post .category,
    .archive .posts .post .category,
    .search .posts .post .category,
    .error404 .posts .post .category {
        font-size: 10px
    }
}

.home.page .posts .post .text,
.archive .posts .post .text,
.search .posts .post .text,
.error404 .posts .post .text {
    padding: 20px 10px 0 10px
}

.home.page .posts .post .text time,
.archive .posts .post .text time,
.search .posts .post .text time,
.error404 .posts .post .text time {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-transform: uppercase
}

.home.page .posts .post .text h2,
.archive .posts .post .text h2,
.search .posts .post .text h2,
.error404 .posts .post .text h2 {
    margin-top: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #333
}

@media (min-width:1200px) {
    .home.page .posts .post .text h2,
    .archive .posts .post .text h2,
    .search .posts .post .text h2,
    .error404 .posts .post .text h2 {
        font-size: 28px
    }
}

@media (max-width:768px) {
    .home.page .posts .post .text h2,
    .archive .posts .post .text h2,
    .search .posts .post .text h2,
    .error404 .posts .post .text h2 {
        font-size: 20px
    }
}

@media (max-width:640px) {
    .home.page .posts .post .text h2,
    .archive .posts .post .text h2,
    .search .posts .post .text h2,
    .error404 .posts .post .text h2 {
        font-size: 15px
    }
    #date_article_text {
	font-size: 12px !important;
    }
    #title_article_text {
	font-size: 30px !important;
    }
    .img-header-mobile {
    	zoom: 0.9;
    }
}

.home.page .posts .post .text h2 a,
.archive .posts .post .text h2 a,
.search .posts .post .text h2 a,
.error404 .posts .post .text h2 a {
    color: #333
}

.home.page .posts .post .text .excerpt,
.archive .posts .post .text .excerpt,
.search .posts .post .text .excerpt,
.error404 .posts .post .text .excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 17px
}

@media (max-width:640px) {
    .home.page .posts .post .text .excerpt,
    .archive .posts .post .text .excerpt,
    .search .posts .post .text .excerpt,
    .error404 .posts .post .text .excerpt {
        font-size: 12px
    }
}

@media (min-width:1024px) {
    .home.page .posts .post .text .excerpt,
    .archive .posts .post .text .excerpt,
    .search .posts .post .text .excerpt,
    .error404 .posts .post .text .excerpt {
        font-size: 14px
    }
}

.home.page .posts .post .text .by,
.archive .posts .post .text .by,
.search .posts .post .text .by,
.error404 .posts .post .text .by {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-style: italic
}

@media (max-width:768px) {
    .home.page .posts .post .text .by,
    .archive .posts .post .text .by,
    .search .posts .post .text .by,
    .error404 .posts .post .text .by {
        font-size: 12px
    }
}

.home.page .posts .post .text .author,
.archive .posts .post .text .author,
.search .posts .post .text .author,
.error404 .posts .post .text .author {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-transform: uppercase
}

@media (max-width:768px) {
    .home.page .posts .post .text .author,
    .archive .posts .post .text .author,
    .search .posts .post .text .author,
    .error404 .posts .post .text .author {
        font-size: 12px
    }
}

.home.page .posts .post hr,
.archive .posts .post hr,
.search .posts .post hr,
.error404 .posts .post hr {
    margin-bottom: 5px
}

.home.page .posts .post .related,
.archive .posts .post .related,
.search .posts .post .related,
.error404 .posts .post .related {
    margin: 0;
    padding: 0;
    list-style: none
}

.home.page .posts .post .related li,
.archive .posts .post .related li,
.search .posts .post .related li,
.error404 .posts .post .related li {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: bold
}

.home.page .posts .post .related li a,
.archive .posts .post .related li a,
.search .posts .post .related li a,
.error404 .posts .post .related li a {
    position: relative;
    display: block;
    color: #333;
    margin-left: 10px;
    margin-right: 10px
}

.home.page .posts .post .related li a:before,
.archive .posts .post .related li a:before,
.search .posts .post .related li a:before,
.error404 .posts .post .related li a:before {
    position: absolute;
    left: -14px;
    top: 50%;
    margin-top: -4px;
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border: 1px solid #57c2f5;
    background: transparent;
    border-radius: 50%
}

.home.page .sidebar,
.archive .sidebar,
.search .sidebar,
.error404 .sidebar {
    padding: 0 15px
}

.home.page .section-title {
    margin-top: 50px
}

#comments {
    line-height: 24px;
    margin-bottom: 18px
}

ol.commentlist,
ol.commentlist ul.children {
    list-style-type: none;
    padding-left: 0
}

.comment .vcard>div {
    margin-top: 8px;
    padding: 0 10px
}

ol.commentlist time {
    font-size: .8em;
    color: #eeeeee
}

ol.commentlist div.comment-author {
    position: relative
}

ol.commentlist a.comment-edit-link {
    color: #ffffff;
    text-decoration: none;
    padding-left: 5px
}

ol.commentlist span.edit-comment {
    position: absolute;
    right: 0;
    top: 8px
}

ol.commentlist li.bypostauthor {
    background-color: #dddddd
}

ol.commentlist ul.children li {
    background-color: #cccccc
}

ol.commentlist ul.children li ul.children li {
    background-color: #bbbbbb
}

ol.commentlist ul.children li ul.children li ul.children li {
    background-color: #aaaaaa
}

ol.commentlist article {
    border-bottom: none !important
}

a.comment-reply-link {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

a.comment-reply-link:focus,
a.comment-reply-link:active:focus,
a.comment-reply-link.active:focus,
a.comment-reply-link.focus,
a.comment-reply-link:active.focus,
a.comment-reply-link.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

a.comment-reply-link:hover,
a.comment-reply-link:focus,
a.comment-reply-link.focus {
    color: #333;
    text-decoration: none
}

a.comment-reply-link:active,
a.comment-reply-link.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

a.comment-reply-link.disabled,
a.comment-reply-link[disabled],
fieldset[disabled] a.comment-reply-link {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

a.comment-reply-link:hover,
a.comment-reply-link:focus,
a.comment-reply-link.focus,
a.comment-reply-link:active,
a.comment-reply-link.active,
.open>.dropdown-togglea.comment-reply-link {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

a.comment-reply-link:active,
a.comment-reply-link.active,
.open>.dropdown-togglea.comment-reply-link {
    background-image: none
}

a.comment-reply-link.disabled,
a.comment-reply-link[disabled],
fieldset[disabled] a.comment-reply-link,
a.comment-reply-link.disabled:hover,
a.comment-reply-link[disabled]:hover,
fieldset[disabled] a.comment-reply-link:hover,
a.comment-reply-link.disabled:focus,
a.comment-reply-link[disabled]:focus,
fieldset[disabled] a.comment-reply-link:focus,
a.comment-reply-link.disabled.focus,
a.comment-reply-link[disabled].focus,
fieldset[disabled] a.comment-reply-link.focus,
a.comment-reply-link.disabled:active,
a.comment-reply-link[disabled]:active,
fieldset[disabled] a.comment-reply-link:active,
a.comment-reply-link.disabled.active,
a.comment-reply-link[disabled].active,
fieldset[disabled] a.comment-reply-link.active {
    background-color: #5cb85c;
    border-color: #4cae4c
}

a.comment-reply-link .badge {
    color: #5cb85c;
    background-color: #fff
}

#cancel-comment-reply-link {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
    margin-left: 1em
}

#cancel-comment-reply-link:focus,
#cancel-comment-reply-link:active:focus,
#cancel-comment-reply-link.active:focus,
#cancel-comment-reply-link.focus,
#cancel-comment-reply-link:active.focus,
#cancel-comment-reply-link.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus,
#cancel-comment-reply-link.focus {
    color: #333;
    text-decoration: none
}

#cancel-comment-reply-link:active,
#cancel-comment-reply-link.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

#cancel-comment-reply-link.disabled,
#cancel-comment-reply-link[disabled],
fieldset[disabled] #cancel-comment-reply-link {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus,
#cancel-comment-reply-link.focus,
#cancel-comment-reply-link:active,
#cancel-comment-reply-link.active,
.open>.dropdown-toggle#cancel-comment-reply-link {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

#cancel-comment-reply-link:active,
#cancel-comment-reply-link.active,
.open>.dropdown-toggle#cancel-comment-reply-link {
    background-image: none
}

#cancel-comment-reply-link.disabled,
#cancel-comment-reply-link[disabled],
fieldset[disabled] #cancel-comment-reply-link,
#cancel-comment-reply-link.disabled:hover,
#cancel-comment-reply-link[disabled]:hover,
fieldset[disabled] #cancel-comment-reply-link:hover,
#cancel-comment-reply-link.disabled:focus,
#cancel-comment-reply-link[disabled]:focus,
fieldset[disabled] #cancel-comment-reply-link:focus,
#cancel-comment-reply-link.disabled.focus,
#cancel-comment-reply-link[disabled].focus,
fieldset[disabled] #cancel-comment-reply-link.focus,
#cancel-comment-reply-link.disabled:active,
#cancel-comment-reply-link[disabled]:active,
fieldset[disabled] #cancel-comment-reply-link:active,
#cancel-comment-reply-link.disabled.active,
#cancel-comment-reply-link[disabled].active,
fieldset[disabled] #cancel-comment-reply-link.active {
    background-color: #f0ad4e;
    border-color: #eea236
}

#cancel-comment-reply-link .badge {
    color: #f0ad4e;
    background-color: #fff
}

#comment-nav ul {
    list-style-type: none;
    margin: 0
}

#comment-form-elements {
    list-style-type: none;
    margin: 0
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 15px
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment input,
.comment-form-author textarea,
.comment-form-email textarea,
.comment-form-url textarea,
.comment-form-comment textarea {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    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, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-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
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment input:focus,
.comment-form-author textarea:focus,
.comment-form-email textarea:focus,
.comment-form-url textarea:focus,
.comment-form-comment textarea: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, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)
}

.comment-form-author input::-moz-placeholder,
.comment-form-email input::-moz-placeholder,
.comment-form-url input::-moz-placeholder,
.comment-form-comment input::-moz-placeholder,
.comment-form-author textarea::-moz-placeholder,
.comment-form-email textarea::-moz-placeholder,
.comment-form-url textarea::-moz-placeholder,
.comment-form-comment textarea::-moz-placeholder {
    color: #999;
    opacity: 1
}

.comment-form-author input:-ms-input-placeholder,
.comment-form-email input:-ms-input-placeholder,
.comment-form-url input:-ms-input-placeholder,
.comment-form-comment input:-ms-input-placeholder,
.comment-form-author textarea:-ms-input-placeholder,
.comment-form-email textarea:-ms-input-placeholder,
.comment-form-url textarea:-ms-input-placeholder,
.comment-form-comment textarea:-ms-input-placeholder {
    color: #999
}

.comment-form-author input::-webkit-input-placeholder,
.comment-form-email input::-webkit-input-placeholder,
.comment-form-url input::-webkit-input-placeholder,
.comment-form-comment input::-webkit-input-placeholder,
.comment-form-author textarea::-webkit-input-placeholder,
.comment-form-email textarea::-webkit-input-placeholder,
.comment-form-url textarea::-webkit-input-placeholder,
.comment-form-comment textarea::-webkit-input-placeholder {
    color: #999
}

.comment-form-author input[disabled],
.comment-form-email input[disabled],
.comment-form-url input[disabled],
.comment-form-comment input[disabled],
.comment-form-author textarea[disabled],
.comment-form-email textarea[disabled],
.comment-form-url textarea[disabled],
.comment-form-comment textarea[disabled],
.comment-form-author input[readonly],
.comment-form-email input[readonly],
.comment-form-url input[readonly],
.comment-form-comment input[readonly],
.comment-form-author textarea[readonly],
.comment-form-email textarea[readonly],
.comment-form-url textarea[readonly],
.comment-form-comment textarea[readonly],
fieldset[disabled] .comment-form-author input,
fieldset[disabled] .comment-form-email input,
fieldset[disabled] .comment-form-url input,
fieldset[disabled] .comment-form-comment input,
fieldset[disabled] .comment-form-author textarea,
fieldset[disabled] .comment-form-email textarea,
fieldset[disabled] .comment-form-url textarea,
fieldset[disabled] .comment-form-comment textarea {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1
}

textarea.comment-form-author input,
textarea.comment-form-email input,
textarea.comment-form-url input,
textarea.comment-form-comment input,
textarea.comment-form-author textarea,
textarea.comment-form-email textarea,
textarea.comment-form-url textarea,
textarea.comment-form-comment textarea {
    height: auto
}

.comment-form-author textarea,
.comment-form-email textarea,
.comment-form-url textarea,
.comment-form-comment textarea {
    height: auto
}

.form-allowed-tags code {
    white-space: normal
}

.form-submit input[type='submit'] {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.form-submit input[type='submit']:focus,
.form-submit input[type='submit']:active:focus,
.form-submit input[type='submit'].active:focus,
.form-submit input[type='submit'].focus,
.form-submit input[type='submit']:active.focus,
.form-submit input[type='submit'].active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.form-submit input[type='submit']:hover,
.form-submit input[type='submit']:focus,
.form-submit input[type='submit'].focus {
    color: #333;
    text-decoration: none
}

.form-submit input[type='submit']:active,
.form-submit input[type='submit'].active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.form-submit input[type='submit'].disabled,
.form-submit input[type='submit'][disabled],
fieldset[disabled] .form-submit input[type='submit'] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-submit input[type='submit']:hover,
.form-submit input[type='submit']:focus,
.form-submit input[type='submit'].focus,
.form-submit input[type='submit']:active,
.form-submit input[type='submit'].active,
.open>.dropdown-toggle.form-submit input[type='submit'] {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.form-submit input[type='submit']:active,
.form-submit input[type='submit'].active,
.open>.dropdown-toggle.form-submit input[type='submit'] {
    background-image: none
}

.form-submit input[type='submit'].disabled,
.form-submit input[type='submit'][disabled],
fieldset[disabled] .form-submit input[type='submit'],
.form-submit input[type='submit'].disabled:hover,
.form-submit input[type='submit'][disabled]:hover,
fieldset[disabled] .form-submit input[type='submit']:hover,
.form-submit input[type='submit'].disabled:focus,
.form-submit input[type='submit'][disabled]:focus,
fieldset[disabled] .form-submit input[type='submit']:focus,
.form-submit input[type='submit'].disabled.focus,
.form-submit input[type='submit'][disabled].focus,
fieldset[disabled] .form-submit input[type='submit'].focus,
.form-submit input[type='submit'].disabled:active,
.form-submit input[type='submit'][disabled]:active,
fieldset[disabled] .form-submit input[type='submit']:active,
.form-submit input[type='submit'].disabled.active,
.form-submit input[type='submit'][disabled].active,
fieldset[disabled] .form-submit input[type='submit'].active {
    background-color: #337ab7;
    border-color: #2e6da4
}

.form-submit input[type='submit'] .badge {
    color: #337ab7;
    background-color: #fff
}

.comment .vcard .avatar {
    padding-right: 0
}

.comment .vcard .comment-text {
    margin-left: 0
}

img.avatar {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #dedede;
    border-right: 1px solid #dedede;
    border-left: 1px solid #ddd
}

ol.commentlist li {
    padding-right: 10px;
    background-color: #F0F0F0
}

#pings {
    margin-bottom: 9px
}

ol.pinglist {
    list-style-type: none;
    margin: 0 0 9px 0
}

ol.commentlist #respond {
    padding: 5px 10px
}

.attachment #main .post_content img {
    max-width: 100%
}

.ie8 #main .media-grid img {
    max-height: none !important;
    max-width: none !important
}

.attachment-img {
    margin-bottom: 18px
}

.metadata p.alert-message {
    margin-right: 0;
    margin-bottom: 18px
}

#gallery-nav {
    list-style-type: none;
    margin-left: 0
}

li.next a,
li.previous a {
    position: relative
}

li.next a:hover:before {
    content: "\2190";
    position: absolute;
    display: block;
    top: 42%;
    left: 0;
    background-color: #BFBFBF;
    color: #444;
    width: 20px;
    height: 20px;
    padding-left: 5px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25)
}

li.previous a:hover:before {
    content: "\2192";
    position: absolute;
    display: block;
    top: 42%;
    right: 0;
    background-color: #BFBFBF;
    color: #444;
    width: 20px;
    height: 20px;
    padding-left: 5px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25)
}

.widget {
    margin-bottom: 18px
}

.widgettitle {
    margin-bottom: 9px
}

#tag-cloud {
    margin-bottom: 18px;
    line-height: 160%
}

.tags a {
    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;
    background-color: #777
}

a.tags a:hover,
a.tags a:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.tags a:empty {
    display: none
}

.btn .tags a {
    position: relative;
    top: -1px
}

.tags a[href]:hover,
.tags a[href]:focus {
    background-color: #5e5e5e
}

#tag-cloud a:hover,
.tags a:hover {
    color: #ffffff;
    text-decoration: none
}

#tag-cloud a {
    white-space: pre;
    text-transform: uppercase
}

.widget_search form {
    padding-left: 0
}

#calendar_wrap {
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 5px
}

#wp-calendar {
    width: 100%
}

#wp-calendar caption {
    font-weight: bold;
    padding: 8px
}

#wp-calendar tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd
}

#wp-calendar tr:last-child {
    border-bottom: none
}

#wp-calendar td {
    text-align: center;
    padding: 8px 0
}

blockquote.pull-left {
    padding-right: 15px
}

#widget-footer .widget {
    padding: 20px;
    color: #fff
}

#widget-footer .widget .widgettitle {
    color: #d2ae2c;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    text-transform: uppercase
}

#widget-footer .widget ul {
    list-style: none;
    padding: 0;
    margin: 0
}

#widget-footer .widget ul li {
    margin-bottom: 10px
}

#widget-footer .widget ul li a {
    color: #fff
}

#widget-footer .autori {
    list-style: none;
    padding: 0;
    margin: 0
}

#widget-footer .autori li {
    display: inline-block
}

#widget-footer .autori li a {
    color: #fff
}

#widget-footer .autori li:after {
    content: ', ';
    display: inline;
    margin-right: 5px
}

#widget-footer .autori li:last-child:after {
    display: none
}

.altri-verticali.in-sidebar .logo-verticale {
    margin: 20px 0;
    font-family: 'Lato', sans-serif;
    font-style: italic;
    font-size: 28px
}

.altri-verticali.in-sidebar .logo-verticale strong {
    font-family: 'Exo 2', sans-serif;
    font-style: normal;
    text-transform: uppercase
}

.altri-verticali.in-sidebar .logo-verticale span {
    font-size: 20px;
    text-transform: uppercase
}

.altri-verticali.in-sidebar .logo-verticale.smartmoney strong {
    color: #d2ae2c
}

.altri-verticali.in-sidebar .logo-verticale.ischool strong {
    color: #ca0000
}

.altri-verticali.in-sidebar .logo-verticale.blog strong {
    color: #ec6f14
}

.altri-verticali.in-sidebar .altri-articoli .post {
    padding: 20px 5px;
    border-bottom: 1px dashed #a2a2a2
}

.altri-verticali.in-sidebar .altri-articoli .image {
    float: left;
    width: 92px;
    height: 92px
}

.altri-verticali.in-sidebar .altri-articoli .image img {
    width: 92px;
    height: 92px
}

.altri-verticali.in-sidebar .altri-articoli .text {
    margin-left: 102px;
    padding: 0 10px 0 0
}

.altri-verticali.in-sidebar .altri-articoli .text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: normal;
    margin-top: 0
}

.altri-verticali.in-sidebar .altri-articoli .text h2 a {
    color: #333
}

.altri-verticali.in-sidebar .altri-articoli .text .category {
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #333
}

.widget_rss ul {
    margin: 0;
    padding: 0
}

.widget_rss ul li {
    list-style: none;
    margin-bottom: 10px
}

.widget_rss ul li a {
    color: #fff
}

.popular-posts-sidebar {
    list-style: none;
    margin: 0;
    padding: 0
}

.popular-posts-sidebar li {
    padding: 20px 5px;
    border-bottom: 1px dashed #a2a2a2
}

.popular-posts-sidebar li .category {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    color: #d2ae2c;
    margin-bottom: 5px
}

@media (max-width:768px) {
    .popular-posts-sidebar li .category {
        font-size: 10px
    }
}

.popular-posts-sidebar li .image .post-thumbnail-bg {
    display: inline-block;
    width: 100%;
    height: 85px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat
}

.popular-posts-sidebar li .text {
    padding: 0 10px
}

.popular-posts-sidebar li .text a {
    display: block;
    color: #333
}

.thumbnails {
    padding-left: 0;
    list-style-type: none
}

.gallery-item .thumbnail {
    display: inline-block;
    border-width: 0
}

body {
    padding-left: 0px !important;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: normal;
    font-size: 12px
}

.body_active {
    position: fixed
}

.clearfix,
.dl-horizontal dd,
.container,
.container-fluid,
.row,
.form-horizontal .form-group,
.btn-toolbar,
.btn-group-vertical>.btn-group,
.nav,
.navbar,
.navbar-header,
.navbar-collapse,
.pager,
.panel-body,
.modal-footer {
    overflow: auto;
    zoom: 1
}

p {
    color: #333
}

a {
    outline: none!important
}

.margin-top {
    margin-top: 50px
}

.margin-top-menu {
    margin-top: 0 !important
}

.backdrop_custom_active {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    position: static
}

@media (max-width:1025px) {
    .col-i-pad {
        width: 100%;
        margin: auto;
        overflow: hidden
    }
}

.container_generate {
    font-size: 18px;
    font-family: 'Droid Sans', sans-serif, sans-serif;
    line-height: 25px;
    margin-bottom: 20px
}

/*.container_generate img {
    margin: 15px 0
}*/

.container_generate h2 {
    font-weight: bold;
    margin: 10px 0
}

.container_generate p {
    text-align: left !important
}

.container_generate a {
    color: #c33
}

.container_generate a {
    display: inline-block;
    position: relative;
    padding-bottom: 3px
}

.topbar_nascondi {
    display: none
}

.search-mobile {
    text-align: right
}

.logo_blog_title {
    font-size: 34px;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: bold;
    color: white;
    border: 0px;
    margin: 7px
}

.div_poweredby {
    height: auto;
    width: auto;
    position: absolute;
    right: 5%;
    top: 82%
}

.logo_sponsor_title {
    height: 180px;
    width: auto;
    position: absolute;
    left: 3%;
    top: 27%
}

.logo_sponsor_title .title {
    font-size: 84px;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: bold;
    color: white;
    border: 0px
}

.logo_sponsor_title .payoff {
    font-size: 34px;
    font-family: 'Droid Sans', sans-serif, sans-serif;
    font-weight: lighter;
    color: white;
    border: 0px;
    float: right;
    margin-top: -27px;
    font-style: italic
}

.logo_partner_1 {
    height: 100px;
    width: auto;
    position: absolute;
    left: 3%;
    top: 8%
}

.logo_partner_2 {
    height: auto;
    width: auto;
    position: absolute;
    right: 4%;
    top: 8%
}

.immagine_powered {
    width: 146px
}

.logo_under {
    position: absolute;
    left: 14%;
    top: 83%;
    width: 70%;
    text-align: center
}

.div_poweredby {
    height: auto;
    width: auto;
    position: absolute;
    right: 5%;
    top: "81%"
}

@media screen and (max-width:1024px) {
    .div_poweredby {
        height: auto;
        width: auto;
        position: absolute;
        right: 5%;
        top: "81%"
    }
    .logo_partner_1 {
        display: none
    }
    .logo_partner_2 {
        display: none
    }
    .img_vert_head {
        height: 640px!Important
    }
    .col_vertical_head {
        height: 774px!Important
    }
}

@media screen and (max-width:480px) {
    .logo_sponsor_title .title {
        font-size: 38px!Important;
        font-family: 'Roboto Slab', sans-serif;
        font-weight: bold;
        color: white;
        border: 0px
    }
    .logo_sponsor_title {
        display: none
    }
    .logo_partner_1 {
        height: 48px
    }
    .logo_partner_1 img {
        height: 29px
    }
    .logo_partner_2 img {
        height: 29px
    }
    .img_vert_head {
        height: 531px!Important
    }
    .col_vertical_head {
        height: 675px!Important
    }
    .immagine_powered {
        width: 110px
    }
    .logo_sponsor_title .payoff {
        font-size: 16px!Important;
        font-family: 'Droid Sans', sans-serif, sans-serif;
        font-weight: lighter;
        color: white;
        border: 0px;
        float: right;
        margin-top: -11px !important;
        font-style: italic
    }
    .logo_sponsor_title {
        height: 112px;
        width: auto;
        position: absolute;
        left: 3%;
        top: 41%
    }
    .div_poweredby {
        height: auto;
        width: auto;
        position: absolute;
        left: 65%;
        top: "84%"
    }
}

.hide_search {
    display: none
}

#big_header {
    margin-bottom: 0px
}

#five_element {
    margin: 0 0 20px 0
}

@media (max-width:425px) {
    #five_element {
        margin: 0
    }
    #five_element .slick-dotted.slick-slider {
        margin-bottom: 5px !important
    }
}

#big_post,
#big_post_single,
#three_post_up,
#bandi,
#post_random_1,
#promo,
#agenda,
#black_block_1,
#youtube,
#news_letter,
#slider_9,
#big_post_verticali,
#head-verticali,
#col-left,
#col-right,
#big_spot,
#banner-red {
    margin: 0 0 0 0
}

.img_black:hover .filter_red,
.img_youtube:hover .filter_red,
.box_slider:hover .filter_red {
    background: rgba(204, 51, 51, 0.5);
    height: 100%;
    transition: background 0.5s
}

.row:hover .col_alternate_left .filter_red,
.row:hover .col_alternate_right .filter_red,
.col-random:hover .top_img .filter_red {
    background: rgba(204, 51, 51, 0.5);
    height: 100%;
    transition: background 0.5s
}

.row:hover .col-arrow_dx .title_category_big_post_vert,
.row:hover .col-arrow_sx .title_category_big_post_vert,
.row:hover .col-arrow_dx .vert_excerpt,
.row:hover .col-arrow_sx .vert_excerpt,
.box_slider:hover .text_slider,
.col-random:hover .cont_text_random .text_down_img {
    color: #c33;
    transition: color 0.5s
}

@media (max-width:768px) {
    #big_post_verticali {
        padding: 0px 0px !important
    }
    #col-right {
        padding: 0px 0px !important
    }
    #col-left {
        padding: 0px 0px !important
    }
    #slider_9 {
        padding: 0px !important
    }
}

.so-panel {
    margin-bottom: 0 !important
}

.slick-slide {
    height: auto !important
}

.font_Roboto {
    font-family: 'Roboto Slab', sans-serif
}

.font_lato {
    font-family: 'Lato', sans-serif
}

.font_roboto_slab {
    font-family: 'Roboto Slab', sans-serif
}

.font_droid_sans {
    font-family: 'Droid Sans', sans-serif
}

.none {
    display: none
}

.margin-none {
    margin-top: 0 !important
}

.hover_red_box:hover {
    background: #c33;
    color: #fff;
    transition: background 0.4s
}

.hover_red:hover {
    color: #c33;
    transition: color 0.4s
}

#iubenda-pp {
    margin-top: 30px
}

.fancybox-container {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto
}

li#big-post-banner-3 {
    display: none
}

.col_banner li {
    display: none
}

.cont_center_header_vert {
    position: relative;
    min-height: 63px
}

.custom_vertical_align {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px
}

.missile_header {
    display: inline-block;
    margin-top: -15px
}

.name_blog_header {
    font-size: 33px;
    font-weight: bold;
    color: #fff;
    font-family: 'Roboto Slab', sans-serif;
    display: inline-block
}

@media (max-width:500px) {
    .name_blog_header {
        font-size: 24px !important
    }
    .missile_header {
        display: none
    }
    .custom_vertical_align {
        bottom: 10px
    }
}

@media (max-width:425px) {
    .name_blog_header {
        font-size: 22px !important
    }
    .missile_header {
        margin-top: -10px;
        height: 30px
    }
    .custom_vertical_align {
        bottom: 13px
    }
}

@media (max-width:350px) {
    .name_blog_header {
        font-size: 18px !important
    }
    .missile_header {
        margin-top: -7px;
        height: 26px
    }
    .custom_vertical_align {
        bottom: 15px
    }
}

.new_sponsor {
    float: right
}

.col_scroll_sponsor {
    background: #fff;
    border-bottom: 1px solid #fff
}

@media (max-width:1024px) {
    .new_sponsor_scroll {
        float: none !important
    }
    .scroll_custom {
        overflow-x: hidden !important;
        padding-top: 8px
    }
}

@media (max-width:600px) {
    .scroll_custom {
        overflow-x: auto !important
    }
}

.new_sponsor_scroll {
    float: right
}

.title-header-white {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    width: 90px;
    margin: 7px 5px 7px 0px;
    float: left
}

@media (max-width:1024px) {
    .title-header-white {
        margin: 14px 0px 0px 5px
    }
}

#menu-menu-dx {
    padding: 0px
}

.sponsor-header {
    height: 22px;
    margin: 7px 4px 8px 4px
}

.whiteOne .topArea {
    border-bottom: none !important
}

.container-red {
    background-color: #c33
}

.container-red_nav2 {
    background-color: #c33;
    overflow: hidden
}

.btn_src {
    background-color: transparent;
    border: none;
    padding-left: 0px
}

.container_mobile {
    background-color: #fff;
    z-index: 99999;
    overflow: scroll
}

.container_mobile {
    border-right: 3px solid #c33;
    padding: 0px;
    width: 300px;
    position: fixed;
    top: 61px;
    bottom: 0
}

.container_mobile_sponsor {
    top: 93px !important
}

.backdrop-menu-active {
    background: rgba(158, 158, 158, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    overflow: hidden
}

.container-red_nav1 {
    background-color: #c33
}

.title-header {
    font-size: 17px;
    margin: 20px 0;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-style: italic
}

.vertical_red_header {
    margin: 15px 0
}

.vertical_red_header li {
    display: inline-block
}

.vertical_red_header li a {
    font-size: 18px;
    padding: 0 10px
}

#menu-menu-down-header {
    -webkit-padding-start: 0px
}

#nav-icon2 {
    background-color: #c33;
    width: 32px;
    height: 30px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin: 15px 5px 0 0 !important;
    z-index: 9999999999
}

#nav-icon2 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#nav-icon2 span:nth-child(1) {
    top: 0px
}

#nav-icon2 span:nth-child(2),
#nav-icon2 span:nth-child(3) {
    top: 10px
}

#nav-icon2 span:nth-child(4) {
    top: 20px
}

#nav-icon2.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%
}

#nav-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

#nav-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#nav-icon2.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%
}

#nav-icon3 {
    width: 32px;
    height: 32px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin: 15px 10px 10px 1px !important
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#nav-icon3 span:nth-child(1) {
    top: 0px
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 10px
}

#nav-icon3 span:nth-child(4) {
    top: 20px
}

#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%
}

.nav-icon4 {
    width: 35px;
    height: 30px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin: 17px 12px
}

.nav-icon4 span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

.nav-icon4 span:nth-child(1) {
    top: 0px
}

.nav-icon4 span:nth-child(2),
.nav-icon4 span:nth-child(3) {
    top: 11px
}

.nav-icon4 span:nth-child(4) {
    top: 22px
}

.nav-icon4.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%
}

.nav-icon4.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.nav-icon4.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%
}

#nav-icon-search {
    width: 32px;
    height: 32px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin: 10px !important
}

#nav-icon-search span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#nav-icon-search span:nth-child(1) {
    top: 0px
}

#nav-icon-search span:nth-child(2),
#nav-icon-search span:nth-child(3) {
    top: 10px
}

#nav-icon-search span:nth-child(4) {
    top: 20px
}

#nav-icon-search.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%
}

#nav-icon-search.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

#nav-icon-search.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#nav-icon-search.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%
}

.col-search {
    position: relative
}

.col-search .hamburger-search {
    position: absolute;
    top: 19px;
    right: 6%
}

.col-search .hamburger-search .search-ref {
    margin-top: 0px;
    color: #fff
}

.col-search .hamburger-search .search-pop-up-close,
.col-search .hamburger-search .search-pop-up {
    cursor: pointer
}

.search-mobile .search-pop-up-close,
.search-mobile .search-pop-up {
    cursor: pointer;
    margin: 20px;
    color: #fff
}

.search-mobile-home .search-pop-up-close,
.search-mobile-home .search-pop-up {
    cursor: pointer;
    margin: 20px 0 0 35px;
    color: #fff
}

@media (max-width:768px) {
    .search-mobile-home .search-pop-up-close,
    .search-mobile-home .search-pop-up {
        margin: 20px 0 0 20px
    }
}

@media (max-width:600px) {
    .search-mobile-home .search-pop-up-close,
    .search-mobile-home .search-pop-up {
        margin: 20px 0 0 10px !important
    }
}

@media (max-width:475px) {
    .search-mobile-home .search-pop-up-close,
    .search-mobile-home .search-pop-up {
        margin: 20px 0 0 -10px !important
    }
}

.startup-logo {
    max-width: 60%;
    margin-top: -3px
}

.navbar-toggle {
    float: none;
    position: absolute
}

.a_black:hover,
.a_black:visited {
    color: black
}

a {
    text-decoration: none !important
}

a:hover,
a:visited {
    color: #337ab7;
    text-decoration: none !important
}

.post-categories {
    padding: 0px
}

.post-categories>li>a {
    color: #fff !important;
    font-size: 21px !important;
    font-weight: 400
}

.list_agenda_bandi {
    padding: 0
}

.menu_li_custom:hover {
    color: #c33
}

.menu_li_custom {
    position: relative;
    padding-bottom: 3px;
    color: #fff;
    font-size: 21px !important;
    font-weight: 900
}

.menu_li_custom:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.menu_li_custom:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #c33 !important;
    transition: width .5s ease
}

.menu_li_custom:hover:before {
    width: 100%;
    background: #c33 !important;
    transition: width .5s ease
}

.menu_li_custom:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

.span_mobile {
    border: solid 2px #fff !important
}

.navbar-toggle .icon-bar {
    background-color: #fff;
    border: solid 3px #fff;
    width: 30px;
    border-radius: 5px
}

.logo_social_twitter {
    height: 36px;
    display: inline-block;
    width: 36px;
    margin: 12px 4px 0;
    background-repeat: no-repeat
}

.logo_social_twitter:hover {
    background-image: url('/wp-content/themes/startupitalia2017/images/jb_twitter_icon35_hover.png') !important;
    background-repeat: no-repeat !important
}

.logo_social_facebook {
    height: 36px;
    display: inline-block;
    width: 36px;
    margin: 6px 4px 0;
    background-repeat: no-repeat
}

.logo_social_facebook:hover {
    background-image: url('/wp-content/themes/startupitalia2017/images/jb_facebook_icon35_hover.png') !important;
    background-repeat: no-repeat !important
}

.logo_social_linkedin {
    height: 36px;
    display: inline-block;
    width: 36px;
    margin: 6px 4px 0;
    background-repeat: no-repeat !important
}

.logo_social_linkedin:hover {
    background-image: url('/wp-content/themes/startupitalia2017/images/jb_linkedin_icon35_hover.png') !important;
    background-repeat: no-repeat
}

.logo_social_instagram {
    height: 36px;
    display: inline-block;
    width: 36px;
    margin: 6px 13px 0 4px;
    background-repeat: no-repeat !important
}

.logo_social_instagram:hover {
    background-image: url('/wp-content/themes/startupitalia2017/images/jb_instagram_icon35_hover.png') !important;
    background-repeat: no-repeat
}


.logo_social {
    height: 38px;
    margin: 3px 5px
}

.logo_social_right {
    height: 38px;
    margin: 3px 20px 3px 5px
}

#menu-menu-dx>li {
    display: inline-block;
    font-size: 19px;
    margin: 0px 15px;
    list-style-type: none
}

#menu-menu-down-header>li {
    display: inline-block;
    font-size: 16px;
    margin: 0px 5px;
    list-style-type: none;
    margin-top: 40px;
    margin-bottom: 50px
}

.sliding_effect {
    display: inline-block;
    position: relative;
    padding-bottom: 3px
}

.sliding_effect:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.sliding_effect:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #c33;
    transition: width .5s ease
}

.sliding_effect:hover:before {
    width: 100%;
    background: #c33;
    transition: width .5s ease
}

.sliding_effect:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

@media (max-width:1219px) {
    .container_five_element {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
}

.box_category_header {
    height: 170px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    background-position: center center
}

@media (min-width:1200px) {
    .container-top {
        position: relative;
        height: 185px;
        overflow: hidden
    }
    .box_elem_1:hover .text_category,
    .box_elem_2:hover .text_category,
    .box_elem_3:hover .text_category {
        padding: 0 10px 10px 20px;
        font-size: 15px
    }
    .box_elem_1:hover .flag_category,
    .box_elem_2:hover .flag_category,
    .box_elem_3:hover .flag_category {
        margin: 10px 10px 10px 20px
    }
    .box_elem_1:hover,
    .box_elem_2:hover,
    .box_elem_3:hover {
        zoom: 1.1;
        position: absolute;
        width: 225px;
        transform: translateX(-10px);
        z-index: 999;
        -moz-transform: scale(1.1)
    }
    .box_elem_0:hover {
        zoom: 1.1;
        position: absolute;
        width: 225px;
        z-index: 999;
        -moz-transform: scale(1.1)
    }
    .box_elem_4:hover {
        zoom: 1.1;
        position: absolute;
        width: 225px;
        transform: translateX(-20px);
        z-index: 999;
        -moz-transform: scale(1.1)
    }
}

@media (max-width:1024px) {
    .container_five_element {
        width: 100% !important;
        margin: 0
    }
    .container_five_element .slick-list {
        padding: 0 50px 0 0 !important
    }
    #post_random_1 .container {
        width: 90%
    }
    .col_five_element .text_category {
        font-size: 14px
    }
}

@media (max-width:768px) {
    .container_five_element {
        width: 100% !important;
        margin: auto
    }
    #post_random_1 .container {
        width: 100%
    }
}

@media (max-width:425px) {
    .container_custom_five_element .slick-dots {
        position: sticky;
        position: -webkit-sticky;
        position: -moz-sticky;
        position: -ms-sticky;
        position: -o-sticky
    }
}

@media (max-width:767px) {
    .box_elem_4 {
        display: block
    }
}

@media (max-width:1024px) {
    .box_category_header {
        height: 220px
    }
    .text_category {
        top: 130px !important
    }
}

@media (max-width:768px) {
    .box_category_header {
        height: 250px
    }
    .text_category {
        top: 150px !important;
        font-size: 16px !important
    }
}

@media (max-width:424px) {
    .text_category {
        font-size: 19px !important
    }
}

.box_shadow {
    height: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.59), transparent);
    background: -o-linear-gradient(rgba(0, 0, 0, 0.59), transparent);
    background: -moz-linear-gradient(rgba(0, 0, 0, 0.59), transparent);
    background: linear-gradient(rgba(0, 0, 0, 0.59), transparent)
}

.plus-scroll {
    cursor: pointer
}

.square,
.square_1,
.square_2,
.square_3,
.square_4,
.square_5 {
    width: 30px;
    height: 30px;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #c33;
    float: right;
    margin-top: -5px
}

.plus,
.minus {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 32px;
    text-align: center;
    -webkit-transition: .5s all ease-out;
    transition: .5s all ease-out
}

.plus {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.square1 .plus {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.square1 .minus {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.menu-item>a {
    color: #fff !important;
    font-family: 'Droid Sans', sans-serif;
    font-size: 15px;
    font-weight: bold
}

.menu-item>a {
    display: inline-block;
    position: relative;
    padding-bottom: 3px
}

.menu-item>a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.menu-item>a:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #fff !important;
    transition: width .5s ease
}

.menu-item>a:hover:before {
    width: 100%;
    background: #fff !important;
    transition: width .5s ease
}

.menu-item>a:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

.page_item>a {
    color: #fff !important;
    font-family: 'Droid Sans', sans-serif;
    font-size: 15px;
    font-weight: bold
}

.first_block_menu_sx {
    display: inline-block
}

.first_block_menu_sx {
    position: relative;
    padding-bottom: 10px
}

.first_block_menu_sx:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.first_block_menu_sx:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #fff !important;
    transition: width .5s ease
}

.first_block_menu_sx:hover:before {
    width: 100%;
    background: #fff !important;
    transition: width .5s ease
}

.first_block_menu_sx:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

.col-sx-agenda,
.col-center-bandi {
    width: 30%;
    display: inline-block
}

.box-menu-custom-sx {
    float: left;
    height: 45px;
    width: 55px;
    margin-left: -25px
}

.first_block_menu_dx {
    display: inline-block
}

.first_block_menu_dx {
    position: relative;
    padding-bottom: 10px
}

.first_block_menu_dx:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.first_block_menu_dx:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #fff !important;
    transition: width .5s ease
}

.first_block_menu_dx:hover:before {
    width: 100%;
    background: #fff !important;
    transition: width .5s ease
}

.first_block_menu_dx:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

@media (max-width:1200px) {
    .first_block_menu_dx {
        margin-right: 0px
    }
}

.close-search {
    display: none
}

.popup-search,
.popup-search-home {
    display: none
}

.popup-search-show,
.popup-search-home-show {
    display: block !important
}

.body_custom_search {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed
}

.html_custom_search {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed
}

.backdrop_custom_none {
    display: none
}

.col-center-bandi {
    padding-left: 5px
}

.display-search {
    display: inline-block
}

.display-search .link-search {
    display: inline-block
}

.display-search .link-search:focus {
    outline: none !important
}

.display-search .icon-lente {
    height: 27px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2px
}

.display-search .icon-lente-close {
    display: none
}

.display-search .underline-search {
    border-bottom: 2px solid #fff
}

.display-search button {
    border: none;
    background-color: transparent;
    outline: none !important
}

.display-search .search-menu-custom {
    color: #fff
}

.display-search .search-menu-custom {
    position: relative;
    padding-bottom: 10px
}

.display-search .search-menu-custom:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.display-search .search-menu-custom:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #fff !important;
    transition: width .5s ease
}

.display-search .search-menu-custom:hover:before {
    width: 100%;
    background: #fff !important;
    transition: width .5s ease
}

.display-search .search-menu-custom:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

.img_menu {
    height: 25px;
    margin-bottom: 5px
}

.menu_custom_dx {
    color: #fff !important;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
    font-size: 19px;
    margin: 0px 15px
}

.menu_custom_sx {
    color: #fff !important;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
    font-size: 15px;
    margin: 0px 15px
}

@media (max-width:1200px) {
    .menu_custom_sx {
        margin: 0px 5px !important
    }
    .display-search .fa-search {
        right: 42px !important
    }
    .menu_custom_sx {
        right: 25px !important
    }
}

.menu-menu-down-header>.menu-item>a {
    font-family: 'Lato', sans-serif;
    font-weight: bold
}

@media (min-width:768px) {
    .navbar-toggle {
        display: block !important;
        margin: 17px!important;
        padding: 5px 10px !important
    }
}

#menu-menu-scrolldown {
    padding: 0
}

#menu-menu-scrolldown>li {
    padding: 5px;
    font-size: 20px
}

#menu-menu-scrolldown-1>li>p {
    cursor: pointer
}

#menu-menu-scrolldown-1>li>p:hover {
    color: #c33 !important
}

#scroll_down_desktop {
    position: absolute;
    width: 100%;
    z-index: 99999
}

.col_category {
    margin-top: 50px;
    padding: 20px 0px 20px 20px;
    text-align: left;
    min-height: 390px
}

@media (max-width:991px) {
    #menu-menu-scrolldown-1 {
        text-align: center !important
    }
    .col_category {
        text-align: center
    }
}

#menu-menu-scrolldown-1 {
    padding: 10px 0px 10px 0px;
    text-align: left
}

#menu-menu-scrolldown-1>li {
    padding: 2px;
    font-size: 20px
}

.verticali_menu_white {
    padding: 0
}

.verticali_menu_white li {
    padding: 2px;
    text-align: left
}

.verticali_menu_white a {
    color: #fff !important;
    font-size: 20px;
    padding: 10px 10px 10px 20px;
    font-family: 'Roboto Slab', sans-serif
}

.category_menu {
    color: #fff !important;
    text-align: left;
    padding: 10px 10px 10px 20px;
    font-family: 'Roboto Slab', sans-serif
}

.link_category,
.link_category1,
.link_category2 {
    color: #fff !important;
    cursor: pointer
}

.link_category,
.link_category1,
.link_category2 {
    position: relative;
    padding-bottom: 3px
}

.link_category:before,
.link_category1:before,
.link_category2:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.link_category:after,
.link_category1:after,
.link_category2:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #c33 !important;
    transition: width .5s ease
}

.link_category:hover:before,
.link_category1:hover:before,
.link_category2:hover:before {
    width: 100%;
    background: #c33 !important;
    transition: width .5s ease
}

.link_category:hover:after,
.link_category1:hover:after,
.link_category2:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

.link_category:hover,
.link_category1:hover,
.link_category2:hover,
.link_category_widget {
    color: #c33 !important
}

.link_color {
    color: #c33 !important
}

.block_category_menu1,
.block_category_menu2 {
    margin-bottom: 5px
}

.name-scroll {
    color: #fff;
    display: inline-block;
    cursor: pointer
}

@media (max-width:1080px) {
    .name-scroll {
        font-size: 20px
    }
}

.name-scroll-mobile {
    color: #363636;
    display: inline-block;
    font-weight: 800;
    font-size: 18px
}

.plus-scroll {
    color: #c33;
    display: inline-block;
    font-size: 27px
}

.row-mobile {
    padding: 15px 10px 15px 20px
}

.row-mobile-red {
    padding: 0 0 0 15px;
    background-color: #c33;
    position: static;
    width: 297px
}

.row-mobile-red-desktop {
    padding: 0 0 0 5px;
    background-color: #c33;
    position: static;
    margin-top: 5px
}

.cont_red_summit {
    height: 45px;
    position: relative
}

.cont_red_summit img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 34px
}

.cont_red_summit .text_summit {
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 40px
}

@media (max-width:1440px) {
    .cont_red_summit img {
        height: 29px;
        margin-left: 18px
    }
    .cont_red_summit .text_summit {
        font-size: 16px;
        padding-left: 57px
    }
}

.flag_category {
    text-transform: uppercase;
    padding: 2px 13px 0;
    background: #fff;
    max-width: 200px;
    text-align: center;
    border-radius: 2px;
    margin: 10px 15px;
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: sans-serif
}

.flag_category_five_news {
    text-transform: uppercase;
    padding: 0px;
    background: transparent;
    max-width: 200px;
    color: white;
    text-align: left;
    border-radius: 2px;
    margin: 10px 15px;
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: sans-serif
}

.hover_red_box_five_news:hover {
    color: #c33
}

.text_category_five_news span {
    background: #ffffff;
    padding: 1px 0px;
    box-shadow: 10px 0 0 #fff, -10px 0 0 #fff;
    box-decoration-break: clone;
    color: black;
    font-weight: 900
}

.text_category {
    position: absolute;
    top: 80px;
    padding: 3px;
    margin: 0 6px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    max-height: 90px;
    overflow: hidden
}

.navbar-toggle_custom {
    float: left;
    position: relative
}

.change_ico {
    color: #fff;
    margin-top: 20px;
    float: right;
    margin-right: 15px
}

.menu_jquery_custom {
    padding: 0px;
    display: table-row;
    height: 60px;
    float: right
}

.menu_jquery_custom li {
    display: table-cell;
    font-size: 18px;
    padding: 0 5px;
    vertical-align: middle;
    height: 60px
}

#menu_scroll {
    display: none;
    z-index: 999999999
}

#menu {
    height: 80px;
    display: none
}

#menu2 {
    display: none
}

.img-header-mobile {
    margin: 12px 15px;
    max-height: 43px
}

.img-header-scroll {
    margin-top: 15px;
    float: left;
    margin-left: 50px;
    z-index: -1
}

.block_scrolldown {
    margin-top: 60px;
    padding: 20px 20px 35px 20px
}

.form_search {
    margin-top: 10px;
    padding: 5px 10px
}

@media (max-width:768px) {
    .form_search {
        padding: 5px 0px 5px 10px
    }
    .form_none {
        margin-left: -10px
    }
}

.col_big_post:hover .filter_red {
    background: rgba(204, 51, 51, 0.5);
    height: 100%;
    transition: background 0.5s
}

.col_big_post:hover .title_category_big_post {
    color: #c33;
    transition: color 0.5s
}

.col_big_post:hover .vert_excerpt {
    color: #c33;
    transition: color 0.5s
}

.col_big_post {
    height: auto;
    padding: 0 40px 0 0
}

@media (max-width:1024px) {
    .box_big_post {
        margin: 0 0 10px !important
    }
}

@media (max-width:991px) {
    .col_big_post {
        padding: 0px 0px 15px !important;
        margin-top: 15px !important
    }
    .flag_category_big_post {
        margin: 10px !important;
        font-size: 18px !important;
        padding: 4px 20px 2px !important
    }
}

@media (max-width:425px) {
    .box_big_post {
        height: 250px !important;
        background-size: contain !important;
        margin-right: 0px !important
    }
    .flag_category_big_post_vert {
        margin: 20px !important;
        font-size: 18px !important
    }
    .title_category_big_post {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 34px !important;
        line-height: 38px !important
    }
}

@media (max-width:375px) {
    .box_big_post {
        height: 200px !important;
        background-size: contain !important
    }
    .box_big_post_video {
        height: 250px !important;
        background-size: contain !important
    }

}

@media (max-width:991px) {
    .col_banner {
        margin-top: 10px
    }
    .col_banner .banner_slick {
        width: 49%;
        display: inline-block
    }
    .col_banner .banner_slick .img_banner_1 {
        width: 100%;
        background-size: cover !important
    }
    .col_banner .banner_slick_2 {
        display: inline-block;
        float: right;
        width: 49%
    }
    .col_banner .banner_slick_2 .img_banner_1 {
        width: 100%;
        background-size: cover !important
    }
    .img_banner_1 {
        width: 49%;
        display: inline-block;
        background-size: cover !important
    }
    .img_banner_2 {
        display: inline-block;
        float: right;
        width: 49%;
        margin-top: 0 !important;
        background-size: cover !important
    }
    .col_cont_banner {
        padding: 0 10px
    }
}

@media (max-width:425px) {
    .col_banner .banner_slick {
        width: 90%;
        display: block;
        margin: 0 5% 0
    }
    .col_banner .banner_slick_2 {
        display: block;
        float: none !important;
        width: 90%;
        margin: 10px 5% 0
    }
    .img_banner_1 {
        background-size: contain !important;
        width: 100%
    }
    .img_banner_2 {
        background-size: contain !important;
        width: 100%
    }
}

@media (max-width:600px) {
    .img_banner_1 {
        height: 250px !important
    }
    .img_banner_2 {
        height: 250px !important
    }
}

.img_banner_1 {
    height: 315px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    cursor: pointer;
    background-position: center center
}

.img_banner_2 {
    height: 315px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    margin-top: 10px;
    cursor: pointer;
    background-position: center center
}

@media (max-width:1200px) {
    #menu-menu-down-header>li {
        font-size: 15px;
        margin-top: 40px;
        margin-bottom: 40px
    }
    .menu_jquery_custom li {
        font-size: 14px !important;
        padding: 0px 2px !important
    }
}

.box_big_post {
    height: 400px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center
}

@media (max-width:768px) {
    .cont_down_big_post {
        padding: 0 10px
    }
	.cont_down_big_post_video {
        padding: 0 10px;
	margin-top: 40px;
    }
	.video_iframe {
	height: 221px;
    	margin-top: 40px;
	}


}

.author_date_post {
    font-size: 21px;
    padding: 5px 5px 5px 0px;
    color: #646464;
    margin-top: 20px;
    font-family: 'Lato', sans-serif
}

.link_author .name_author:hover {
    color: #c33;
    transition: color 0.5s
}

.a_author .author_post {
    font-weight: 400 !important
}

.a_author .author_post:hover {
    color: #c33 !important;
    transition: color 0.5s
}

.a_author .author_date_post {
    font-weight: 400 !important
}

.a_author .author_date_post:hover {
    color: #c33 !important;
    transition: color 0.5s
}

@media (max-width:768px) {
    .author_date_post {
        font-size: 16px;
        padding-left: 10px
    }
}

.title_category_big_post {
    font-size: 34px;
    font-weight: 900;
    line-height: 45px
}

@media (max-width:768px) {
    .title_category_big_post {
        margin: 10px 0
    }
}

.text_bar {
    font-size: 22px;
    color: #646464
}

.category_absolute {
    position: absolute
}

.category_mobile {
    display: none
}

@media (max-width:1024px) {
    .category_absolute {
        display: none
    }
    .category_mobile {
        display: block
    }
}

.flag_category_big_post {
    font-size: 20px;
    background: #c33;
    border-radius: 5px;
    color: #fff;
    padding: 3px 25px 3px;
    margin: 30px;
    position: absolute;
    text-transform: uppercase;
    font-family: sans-serif
}

.flag_category_big_post:hover {
    color: #c33;
    background: #fff;
    transition: background 0.5s
}

@media (max-width:991px) {
    .col_three_post {
        margin-bottom: 30px
    }
}

.container_three_post {
    overflow: hidden
}

.row_three_post {
    margin-left: -18px;
    margin-right: -18px
}

.box_3_content {
    padding-left: 20px;
    padding-right: 20px
}

.box_3_post {
    background-size: cover !important;
    height: 250px;
    margin-bottom: 10px;
    -webkit-transition: transform 0.7s linear;
    background-position: center center
}

.box_3_post {
    cursor: pointer
}

.box_3_post:hover .flag_category_3_post,
.box_3_filter_red:hover .flag_category_3_post {
    transform: translateY(60px);
    -webkit-transition: transform 0.7s
}

.box_3_post:hover .box_3_filter,
.box_3_filter_red:hover .box_3_filter {
    background-color: rgba(204, 51, 51, 0.7);
    -webkit-transition: 0.7s
}

.box_3_post:hover .line_red_category,
.box_3_filter_red:hover .line_red_category {
    height: 15px;
    -webkit-transition: background-color .7s ease-out;
    background-color: rgba(204, 51, 51, 0.7) !important;
    margin-top: -15px
}

.box_3_filter_red:hover .first_arg {
    color: #c33
}

.a_black:hover .first_arg,
.a_black:hover .first_arg_exerpt {
    color: #c33;
    transition: color 0.5s
}

.line_red_category {
    background-color: rgba(204, 51, 51, 0.2)
}

.box_3_filter {
    height: 250px;
    line-height: 250px;
    text-align: center;
    background-color: rgba(204, 51, 51, 0.5)
}

.flag_category_3_post {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Roboto Slab', sans-serif;
    line-height: normal
}

.first_arg2 {
    font-size: 16px;
    font-weight: 900;
    min-height: 60px;
    max-height: 60px;
    margin-top: 15px
}

.first_arg2:hover {
    color: #c33;
    transition: color 0.5s
}

.first_arg {
    font-size: 24px;
    font-weight: 900;
    min-height: 100px;
    max-height: 100px;
    overflow: hidden;
    line-height: normal;
    font-family: 'Roboto Slab', sans-serif
}

@media (max-width:991px) {
    .first_arg {
        min-height: 50px !important;
        margin: 10px 0
    }
    .first_arg_exerpt {
        min-height: 20px !important
    }
    .first_arg2 {
        min-height: 40px !important
    }
    .end_text {
        padding: 6px !important;
        border-radius: 10px !important
    }
}

.first_arg_exerpt {
    font-weight: 500;
    overflow: hidden;
    max-height: 50px;
    min-height: 50px
}

.underline,
.underline_1 {
    border-bottom: 1px solid #656565;
    margin: 5px 0px;
    padding-bottom: 5px
}

@media (max-width:768px) {
    .underline {
        padding: 0 10px 0 5px !important
    }
    .first_arg2 {
        padding: 0 10px 0 5px !important
    }
}

.last_underline {
    border-bottom: 1px solid #656565;
    margin: 5px 0px;
    padding-bottom: 5px
}

@media (max-width:991px) {
    .last_underline {
        border-bottom: none !important
    }
}

.end_text {
    float: right;
    color: #c33;
    margin: 0px;
    font-weight: bolder;
    margin-right: 25px;
    margin-top: 10px;
    font-size: 18px;
    text-transform: lowercase
}

.img_litle_random {
    background-size: contain;
    max-height: 90px;
    width: auto;
    padding: 0px 5px 0px 0px
}

.red_flag_big {
    position: relative;
    background: #c33;
    color: #fff;
    margin-top: 0px;
    padding: 5px 25px;
    font-weight: 900;
    width: 100%;
    font-size: 33px
}

@media (min-width:768px) {
    .overflow {
        overflow: visible
    }
}

@media (max-width:768px) {
    .red_flag_big:before {
        display: none
    }
    .red_flag_big:after {
        display: none
    }
}

.red_flag_big:before {
    left: 100%;
    top: 49%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.red_flag_big:before {
    border-color: rgba(194, 225, 245, 0);
    border-left-color: #c33;
    border-width: 23px;
    margin-top: -23px
}

.red_flag_big:after {
    right: 100%;
    top: 49%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.red_flag_big:after {
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #c33;
    border-width: 23px;
    margin-top: -23px
}

.col-random {
    margin-bottom: 12px;
    padding: 0 5px
}

@media (min-width:425px) {
    #three_post_down {
        display: none
    }
}

.bandi-widget {
    background-color: #ececec;
    margin: 0px 0px 30px;
    padding-bottom: 10px
}

.bandi-widget .thumbnail-evidence {
    height: 280px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

.bandi-widget .title_cont {
    margin: 10px 5px 5px;
    text-align: left;
    font-weight: 600;
    font-size: 20px
}

.bandi-widget .cont_date .text_date {
    vertical-align: bottom
}

.bandi-widget .title_cont:hover {
    color: #c33;
    transition: color 0.3s
}

.bandi-widget .col-center-bando {
    padding: 0 25px
}

.bandi-widget .col-center-bando .single-col-bando {
    margin-bottom: 12px
}

.bandi-widget .col-center-bando .col-img-bando .img-litle {
    min-height: 75px;
    background-size: cover;
    background-position: center center;
    margin: 0 5px 5px 5px
}

.bandi-widget .col-description-bando {
    height: 75px;
    position: relative;
    padding-left: 5px
}

.bandi-widget .col-description-bando .start-date {
    color: #298dbe;
    font-weight: 900;
    font-size: 12px
}

.bandi-widget .col-description-bando .content-date {
    max-height: 40px;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Roboto Slab', sans-serif
}

.bandi-widget .col-description-bando .content-date:hover {
    color: #c33;
    transition: color 0.3s
}

.bandi-widget .col-description-bando .end-date {
    color: #c33;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    font-family: 'Roboto Slab', sans-serif;
    position: absolute;
    bottom: 0
}

@media (max-width:1199px) {
    .bandi-widget .thumbnail-evidence {
        margin: 10px 0
    }
    .bandi-widget .title_cont {
        margin: 15px 0 !important
    }
    .bandi-widget .col-center-bando {
        padding: 0
    }
    .bandi-widget .col-center-bando .col-img-bando .img-litle {
        min-height: 100px;
        margin: 0 10px 5px 0
    }
    .agenda-widget .col-center-agenda .col-post {
        margin-bottom: 15px !important
    }
    .col-description-bando {
        padding-top: 10px;
        height: 100px
    }
}

@media (max-width:768px) {
    .col-evid-widget-bando {
        padding: 0 50px !important
    }
    .col-center-bando {
        padding: 0 50px !important
    }
    .col-description-bando {
        height: 90px !important
    }
}

@media (max-width:600px) {
    .col-img-bando .img-litle {
        min-height: 85px !important;
        margin: 5px 5px 5px 0 !important
    }
    .col-description-bando .content-date {
        margin-bottom: 0px !important;
        max-height: 35px !important;
        font-size: 12px !important
    }
    .col-description-bando .end-date {
        font-size: 11px !important
    }
}

@media (max-width:500px) {
    .col-evid-widget-bando {
        padding: 0 !important
    }
    .col-center-bando {
        padding: 0 !important
    }
}

.agenda-widget {
    background-color: #ececec;
    padding-bottom: 10px
}

.agenda-widget .img_promo_sx {
    height: 250px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

.agenda-widget .title_cont {
    margin: 10px 5px 5px;
    text-align: left;
    font-weight: 600;
    font-size: 20px
}

.agenda-widget .title_cont:hover {
    color: #c33;
    transition: color 0.3s
}

.agenda-widget .col-center-agenda {
    padding: 0px 25px;
    margin-bottom: 15px
}

.agenda-widget .col-center-agenda .col-post {
    margin-bottom: 12px
}

.agenda-widget .col-center-agenda .col-post .img-litle {
    height: 75px;
    background-position: center center;
    background-size: cover;
    margin: 0 5px 5px 5px
}

.agenda-widget .col-center-agenda .col-post .col-description {
    height: 75px;
    padding-left: 5px
}

.agenda-widget .col-center-agenda .col-post .col-description .box-item {
    height: 75px;
    position: relative
}

.agenda-widget .col-center-agenda .col-post .col-description .box-item .title-event {
    font-weight: 600;
    font-size: 14px
}

.agenda-widget .col-center-agenda .col-post .col-description .box-item .title-event:hover {
    color: #c33;
    transition: color 0.3s
}

.agenda-widget .col-center-agenda .col-post .col-description .box-item .box-title {
    position: absolute;
    top: 0
}

.agenda-widget .col-center-agenda .col-post .col-description .box-item .box-date {
    position: absolute;
    bottom: 0
}

@media (max-width:1200px) {
    .agenda-widget .col-center-agenda .col-post .col-description .box-item {
        height: 85px !important;
        margin: 0 !important
    }
}

.agenda-widget .img_promo_dx {
    height: 250px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

@media (max-width:1200px) {
    .col-center-agenda {
        padding: 0 !important;
        margin: 20px 0
    }
}

@media (max-width:991px) {
    .col-center-agenda {
        height: 320px
    }
    .col-center-agenda .col-description {
        padding-left: 10px !important
    }
    .cont_date_sx .text_date {
        vertical-align: top
    }
}

#tribe-bar-form #tribe-bar-views {
    display: none
}

.img_promo {
    background-size: contain;
    height: 250px;
    width: auto
}

.red_flag {
    position: relative;
    background: #c33;
    color: #fff;
    float: left;
    margin-top: 20px;
    padding: 5px 25px;
    font-weight: 900
}

.red_flag:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.red_flag:before {
    border-color: rgba(194, 225, 245, 0);
    border-left-color: #c33;
    border-width: 17px;
    margin-top: -17px
}

@media (max-width:425px) {
    margin-bottom: 30px
}

.first_post_vertical {
    color: #fff;
    font-size: 33px;
    font-weight: bold;
    margin: 2px 30px 0px;
    position: absolute;
    width: 94%;
    height: 40px
}

@media (max-width:1024px) {
    .first_post_vertical {
        width: 91%
    }
    .no_padding {
        padding-left: 0px !important;
        padding-right: 0px !important
    }
}

@media (max-width:768px) {
    .first_post_vertical {
        width: 90%
    }
}

@media (max-width:600px) {
    .first_post_vertical {
        width: 87%
    }
}

@media (max-width:450px) {
    .first_post_vertical {
        width: 83%
    }
}

@media (max-width:350px) {
    .first_post_vertical {
        width: 80%
    }
}

.text_down_img {
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: sans-serif;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.text_down_img:hover {
    color: #c33
}

.cont_text_random {
    height: 80px;
    overflow: hidden
}

@media (max-width:425px) {
    height: 60px !important
}

.top_img {
    width: 100%;
    height: 170px;
    background-size: cover !important;
    background-position: center center
}

.hook_slick_rand .draggable {
    padding: 0px 50px 0 0 !important
}

.container_black {
    background-color: #323232
}

.img_black {
    height: 450px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    background-position: center center
}

.container_bandi {
    margin-top: 120px
}

@media (max-width:1024px) {
    .container_bandi {
        margin-top: 130px
    }
}

@media (max-width:768px) {
    .container_bandi .col-social-category {
        margin: 5px 17px
    }
    .container_bandi_yellow {
        margin: 0 22px !important;
        height: 60px
    }
    .container_bandi_yellow .cont_bandi_yellow {
        height: 60px;
        overflow: hidden
    }
    .cont_category_yellow {
        height: 60px
    }
}

.cont_date {
    float: left
}

@media (max-width:768px) {
    .title_cont {
        margin-bottom: 20px
    }
}

.clock {
    display: inline-block;
    height: 30px;
    margin-bottom: 5px
}

.text_date {
    display: inline-block;
    padding: 5px;
    font-size: 14px;
    color: #c33;
    font-weight: bold;
    vertical-align: middle
}

.text_date_long {
    display: inline-block;
    padding: 5px 0;
    font-size: 14px;
    color: #c33;
    font-weight: bold;
    vertical-align: middle
}

.row-bandi {
    margin-bottom: 15px;
    position: relative
}

.row-agenda {
    margin-bottom: 15px;
    position: relative
}

.text_near_flag {
    color: #c33;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    right: 0;
    left: 160px;
    position: absolute;
    top: 66%;
    transform: translateY(-50%)
}

.text_near_flag_bandi {
    color: #c33;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    right: 0;
    left: 140px;
    position: absolute;
    top: 66%;
    transform: translateY(-50%)
}

@media (max-width:991px) {
    .text_near_flag,
    .text_near_flag_bandi {
        font-size: 16px;
        top: 68% !important
    }
    .row-agenda .red_flag {
        padding: 5px 15px 5px 25px
    }
}

@media (max-width:600px) {
    .text_near_flag {
        font-size: 12px;
        left: 135px
    }
    .text_near_flag_bandi {
        font-size: 12px;
        left: 110px
    }
    .row-agenda .red_flag,
    .row_bandi .red_flag {
        padding: 5px 10px 5px 15px
    }
}

@media (max-width:425px) {
    .text_near_flag {
        font-size: 12px;
        left: 130px
    }
    .row-agenda .red_flag,
    .row-bandi .red_flag {
        padding: 5px 5px 5px 15px
    }
}

@media (max-width:768px) {
    .row-bandi {
        margin-left: -15px
    }
    .row-agenda {
        margin-left: -15px
    }
}

.row_youtube {
    margin-bottom: 80px
}

.title {
    margin: 30px 0;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px
}

.title_youtube {
    color: #fff;
    font-size: 55px;
    font-weight: bold;
    display: inline-block
}

.title_youtube {
    display: inline-block;
    position: relative;
    padding-bottom: 3px
}

.title_youtube:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.title_youtube:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #fff;
    transition: width .5s ease
}

.title_youtube:hover:before {
    width: 100%;
    background: #fff;
    transition: width .5s ease
}

.title_youtube:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

.arrow_dx_tv {
    float: right;
    height: 30px;
    margin-top: 25px;
    cursor: pointer
}

.arrow_sx_tv {
    float: right;
    height: 30px;
    margin-right: 20px;
    margin-top: 25px;
    cursor: pointer
}

.arrow_sx_tv:hover {
    border-radius: 100%;
    background: url('/wp-content/themes/startupitalia2017/images/arrow_red_sx.png') !important;
    transition: background 0.5s
}

.arrow_dx_tv:hover {
    border-radius: 100%;
    background: url('/wp-content/themes/startupitalia2017/images/arrow_red_dx.png') !important;
    transition: background 0.5s
}

@media (max-width:768px) {
    .title_youtube {
        font-size: 32px
    }
    .arrow_sx_tv,
    .arrow_dx_tv {
        margin-top: 12px
    }
    .flag_category_3_post {
        font-size: 36px
    }
    .share_icon_facebook {
        margin: 5px 3px 3px !important
    }
    .share_icon_twitter {
        margin: 7px 4px 3px 5px !important
    }
    .share_none {
        display: none !important
    }
}

@media (max-width:425px) {
    .title_youtube {
        font-size: 22px
    }
}

.title .fa-arrow-right {
    color: #fff !important
}

.title .fa-arrow-left {
    color: #fff !important
}

.fa-arrow-right {
    margin-top: 20px;
    float: right;
    color: #000;
    border: 3px solid #fff;
    border-radius: 100%;
    padding: 5px;
    height: 50px
}

.fa-arrow-left {
    margin-right: 20px;
    float: right;
    padding: 5px;
    height: 50px
}

.arrow_left_custom {
    height: 30px;
    width: 30px;
    float: right;
    margin: 0 10px 0 10px;
    cursor: pointer
}

.arrow_right_custom {
    height: 30px;
    width: 30px;
    float: right;
    margin: 0 10px;
    cursor: pointer
}

.arrow_left_custom:hover {
    background: url('/wp-content/themes/startupitalia2017/images/arrow_black_sx.png') !important
}

.arrow_right_custom:hover {
    background: url('/wp-content/themes/startupitalia2017/images/arrow_black_dx.png') !important
}

@media (max-width:1200px) {
    .iframe_youtube_custom {
        width: 440px;
        height: 215px;
        padding: 0px 5px
    }
}

@media (max-width:768px) {
    .iframe_youtube_custom {
        width: 340px
    }
}

@media (max-width:425px) {
    .iframe_youtube_custom {
        width: 250px;
        height: 150px
    }
    .title {
        margin: 30px 0
    }
    .arrow_sx_tv {
        margin-right: 5px;
        margin-top: 5px
    }
    .arrow_dx_tv {
        margin-top: 5px
    }
}

@media (max-width:1024px) {
    .title_text_youtube {
        padding: 5px 20px !important
    }
}

@media (max-width:991px) {
    .title_text_youtube {
        padding: 5px !important
    }
}

.title_text_youtube {
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    padding: 5px 15px;
    text-align: left;
    color: #fff
}

.img_youtube:hover .title_text_youtube {
    color: #c33 !important;
    transition: color 0.5s
}

.div_img_youtube {
    width: 270px;
    height: 170px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

@media (max-width:991px) {
    .div_img_youtube {
        height: 260px !important;
        width: auto !important;
        margin: 0 5px
    }
    .img_play {
        top: 95px !important;
        left: 325px !important
    }
}

@media (max-width:768px) {
    .div_img_youtube {
        height: 260px !important
    }
    .img_play {
        top: 95px !important;
        left: 45% !important
    }
    .play_youtube {
        left: 0;
        right: 0
    }
}

@media (max-width:600px) {
    .div_img_youtube {
        height: 240px !important
    }
    .img_play {
        top: 100px !important;
        left: 45% !important
    }
}

@media (max-width:375px) {
    .img_play {
        top: 85px !important;
        left: 42% !important
    }
}

.play_youtube {
    position: absolute
}

.img_play {
    position: absolute;
    top: 50px;
    left: 115px;
    z-index: 99999999999
}

@media (max-width:425px) {
    .img_promo {
        height: auto !important;
        padding: 0px 25px
    }
}

@media (max-width:1200px) {
    .title_cont {
        text-align: center
    }
    .col-dx .cont_date {
        margin-bottom: 20px
    }
    .end_text {
        color: #fff;
        background: #c33;
        padding: 10px;
        border-radius: 10px;
        margin-top: 15px;
        font-size: 12px !important
    }
    .text_underline {
        height: 30px
    }
    .col-center-agenda .img-litle,
    .col-center-agenda .col-description {
        height: 85px !important
    }
}

.share_icon_twitter {
    height: 30px;
    width: 30px;
    margin: 7px 4px 3px 0px;
    background-repeat: no-repeat !important;
    display: inline-block;
    background-size: cover !important
}

.share_icon_twitter:hover {
    background: url('/wp-content/themes/startupitalia2017/images/icon_tw_new_hover.png') !important;
    background-repeat: no-repeat !important;
    height: 30px;
    width: 30px;
    background-size: cover !important
}

.share_icon_facebook {
    height: 30px;
    width: 30px;
    margin: 7px 2px 3px;
    background-repeat: no-repeat !important;
    display: inline-block;
    background-size: cover !important
}

.share_icon_facebook:hover {
    background: url('/wp-content/themes/startupitalia2017/images/icon_fb_new_hover.png') !important;
    background-repeat: no-repeat !important;
    height: 30px;
    width: 30px;
    background-size: cover !important
}

@media (max-width:991px) {
    .input-newsletter {
        max-width: 100% !important
    }
    .mc4wp-response p {
        text-align: center
    }
}

.cont-newsletter {
    padding: 50px;
    background-color: #c33
}

.text_newsletter {
    color: #fff;
    font-size: 32px;
    text-align: center
}

.col_input_newsletter {
    margin-top: 40px;
    min-height: 65px
}

.input-newsletter {
    display: inline-block;
    width: 360px;
    border-radius: 30px;
    padding: 5px 80px 5px 5px;
    position: absolute
}

.widget_mc4wp_form_widget {
    list-style-type: none
}

.mc4wp-response p {
    padding-top: 45px;
    color: #fff;
    text-align: left
}

.btn-newsletter {
    border-radius: 30px;
    margin-left: -75px;
    height: 32px;
    padding: 0px 30px;
    background-color: #feb544;
    border-color: #feb544;
    font-size: 21px;
    position: absolute;
    right: 50px
}

@media (max-width:1200px) {
    .btn-newsletter {
        right: 0 !important
    }
}

.btn-newsletter:hover {
    background-color: #feb544 !important;
    border-color: #feb544 !important
}

.btn-newsletter:active {
    background-color: #feb544 !important;
    border-color: #feb544 !important
}

.input-newsletter:focus {
    border-color: #ff6634;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(230, 65, 46, 0.6)
}

@media (max-width:768px) {
    .input-newsletter {
        width: 200px;
        padding: 5px 45px 5px 5px
    }
    .btn-newsletter {
        padding: 1px 15px;
        margin-left: -50px
    }
    .cont-newsletter {
        padding: 50px 10px
    }
}

.box_notice {
    background-color: #fff;
    height: 450px;
    position: absolute
}

.box_int_notice {
    padding: 50px 0px 0px
}

.btn_notice {
    background-color: #c33;
    color: #fff;
    border: solid 0px;
    padding: 5px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    margin-top: -20px;
    margin-left: 0px
}

.btn_notice:hover {
    background-color: #fff;
    color: #c33;
    transition: background 0.5s
}

@media (max-width:991px) {
    .btn_notice {
        padding: 2px 20px 3px
    }
}

.container_height {
    height: 540px
}

@media (max-width:768px) {
    .container_height {
        height: 520px
    }
    .white_flag_post {
        top: 375px !important;
        width: 100% !important;
        left: 0% !important
    }
    .text_notice {
        padding: 5px !important;
        font-size: 20px !important
    }
}

@media (max-width:425px) {
    .text_notice {
        max-height: 95px !important
    }
}

.text_notice {
    color: #000;
    padding: 5px 20px 15px;
    font-size: 24px;
    text-align: center;
    font-weight: 900
}

.text_notice:hover {
    color: #c33
}

.white_flag_post {
    width: 80%;
    position: absolute;
    top: 365px;
    background-color: #fff;
    left: 10%;
    text-align: center
}

.white_flag_post .link_category {
    position: absolute;
    top: -8px;
    left: 0;
    right: 0
}

.white_flag_post .link_category_widget {
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    cursor: pointer
}

.author_post {
    margin-top: 15px;
    text-align: center;
    font-size: 17px;
    color: #646464
}

.cont_event {
    background-color: rgba(255, 48, 48, 0.6);
    position: relative;
    min-height: 300px
}

.box_cont {
    vertical-align: middle;
    padding: 0 30%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0
}

@media (max-width:1024px) {
    .box_cont {
        max-width: 100% !important;
        padding: 0 2% !important
    }
}

.url_event:focus {
    text-decoration: none
}

.title_event1 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    display: block;
    margin-top: 10px;
    line-height: 50px
}

.title_event2 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    line-height: 50px;
    padding-bottom: 20px
}

.img_background_event {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 300px;
    background-position: center center
}

@media (max-width:768px) {
    .title_event1 {
        font-size: 26px;
        padding-top: 20px !important
    }
    .title_event2 {
        margin: 25px 0px 50px !important
    }
}

.form_none {
    margin-top: 19px;
    margin-right: 9px
}

.row_search {
    overflow: hidden;
    width: 100%
}

.powered_by {
    float: right;
    margin-top: 11px;
    font-style: normal;
    font-weight: 600
}

.input_none {
    font-size: 24px;
    color: #ccc;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fe877f;
    width: 100%
}

.input_none:focus {
    outline: none
}

input::placeholder {
    color: #ccc
}

.img-header-scroll-verticali {
    margin-top: 11px;
    float: left;
    margin-left: 75px;
    margin-bottom: 11px;
    max-width: 41px
}

@media (max-width:1200px) {
    .img-header-scroll-verticali {
        margin-left: 55px
    }
}

.logo_home {
    padding: 7px;
    max-height: 63px
}

#nav-vertical {
    width: 37px;
    height: 29px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin: 17px!important
}

@media (max-width:1200px) {
    #nav-vertical {
        margin: 17px 7px !important
    }
}

#nav-vertical span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#nav-vertical span:nth-child(1) {
    top: 0px
}

#nav-vertical span:nth-child(2),
#nav-vertical span:nth-child(3) {
    top: 11px
}

#nav-vertical span:nth-child(4) {
    top: 22px
}

#nav-vertical.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%
}

#nav-vertical.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

#nav-vertical.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#nav-vertical.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%
}

.menu_verticali_custom {
    padding: 0;
    display: table-row;
    height: 80px
}

.menu_verticali_custom .active a {
    border-bottom: 2px solid #fff;
    padding-bottom: 2px !important
}

.menu_verticali_custom .class_active_custom {
    border-bottom: 2px solid #fff;
    padding-bottom: 2px !important
}

.menu_verticali_custom .active a:hover {
    border-bottom: 2px solid #c33
}

@media (max-width:1200px) {
    .menu_verticali_custom {
        text-align: right
    }
}

.menu_verticali_custom li {
    display: table-cell !important;
    vertical-align: middle;
    padding: 0 5px;
    font-size: 18px
}

@media (max-width:1200px) {
    .menu_verticali_custom li {
        padding: 0 2px !important
    }
}

.menu_verticali_custom li {
    display: inline-block;
    position: relative;
    padding-bottom: 3px
}

@media (max-width:1100px) {
    .menu_verticali_custom li {
        margin: 5px 2px
    }
    .menu_verticali_custom li a {
        font-size: 13px !important
    }
}

.col_logo {
    border-left: solid 3px #fff;
    height: 80px
}

.img_logo_verticali {
    padding: 5px;
    height: 50px;
    cursor: pointer
}

.text_logo_verticali {
    font-size: 14px;
    color: #fff;
    padding-right: 100px;
    margin: 5px 0 0
}

@media (max-width:1200px) {
    .text_logo_verticali {
        padding-right: 0px;
        font-size: 14px
    }
}

@media (max-width:1024px) {
    .col_white {
        display: block !important
    }
}

.col_white {
    display: none
}

.cont_white {
    min-height: 79px;
    background-color: #fff
}

.col_vertical_head {
    height: 800px
}

@media (max-width:768px) {
    .col_vertical_head {
        height: 740px
    }
    .img_vert_head {
        height: 640px
    }
    .logo_sponsor_title .title {
        font-size: 58px
    }
    .logo_sponsor_title {
        top: 38%
    }
    .logo_sponsor_title .payoff {
        font-size: 24px;
        margin-top: -17px
    }
}

.img_vert_head {
    position: relative;
    height: 700px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important
}

.logo_sponsor_head {
    height: 180px;
    width: 250px;
    position: absolute;
    left: 5%;
    top: 15%;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat
}

.title_vert {
    color: #fff;
    font-size: 66px;
    font-weight: 900;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 45%;
    left: 5%;
    font-family: 'Exo 2', sans-serif
}

@media (max-width:768px) {
    .title_vert {
        font-size: 40px;
        top: 50%
    }
    .logo_sponsor_head {
        top: 25%;
        height: 150px;
        width: 200px
    }
}

@media (max-width:425px) {
    .title_vert {
        font-size: 36px
    }
}

@media (max-width:1024px) {
    #hook_slick_vert .slick-list,
    #hook_slick_banner .slick-list {
        width: 90%
    }
    #hook_slick_vert,
    #hook_slick_banner {
        height: inherit
    }
    .arrow_slick_vert {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px
    }
}

@media (max-width:425px) {
    #hook_slick_vert .slick-list,
    #hook_slick_banner .slick-list {
        width: 85%
    }
    .arrow_slick_vert {
        transform: translateY(-30%);
        height: 30px
    }
}

.box_vert_head {
    width: 90%;
    position: absolute;
    height: 160px;
    background-color: #c33;
    left: 5%;
    top: 90%;
    overflow: hidden
}

.box_vert_head .title_vert_head {
    color: #fff;
    margin: 20px 40px 5px 60px;
    font-size: 14px;
    font-family: 'Lato', sans-serif
}

.box_vert_head .white_line {
    border-bottom: 1px solid #fff;
    width: 80px;
    margin: 8px 40px 2px 60px
}

.box_vert_head p {
    color: #fff;
    margin: 0px 40px 10px 60px;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Roboto Slab', sans-serif
}

@media (max-width:1024px) {
    .col_header_vert {
        height: 150px;
        overflow: hidden
    }
}

@media (max-width:991px) {
    .col_header_vert {
        height: auto;
        overflow: auto
    }
}

@media (max-width:768px) {
    .box_vert_head {
        height: 185px
    }
    .box_vert_head .title_vert_head {
        margin: 20px 0px 5px 20px
    }
    .box_vert_head .white_line {
        margin: 20px 0px 5px 20px
    }
    .box_vert_head p {
        margin: 20px 0px 5px 20px;
        width: 90%
    }
}

.flag_category_big_post_vert {
    font-size: 25px;
    background: #c33;
    border-radius: 5px;
    color: #fff;
    padding: 4px 30px 5px;
    margin: 30px;
    position: absolute;
    text-transform: uppercase;
    font-family: sans-serif
}

.title_category_big_post_vert {
    font-size: 32px;
    font-weight: 900;
    line-height: 45px;
    margin: 15px 0px
}

@media (max-width:1200px) {
    .title_category_big_post_vert {
        font-size: 30px;
        line-height: 40px;
        margin: 10px 0px
    }
}

@media (min-width:1024px) {
    .title_category_big_post_vert {
        height: auto
    }
}

@media (max-width:991px) {
    .title_category_big_post_vert {
        margin: 5px 0 !important;
        font-size: 26px;
        line-height: 35px;
        height: auto !important
    }
    .cont_down_alt_vert_left,
    .cont_down_alt_vert {
        position: relative !important
    }
    .col-arrow_sx,
    .col-arrow_dx {
        height: auto !important
    }
}

.col-arrow_sx:after,
.col-arrow_sx:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.col-arrow_sx:after {
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #fff;
    border-width: 30px;
    margin-top: -30px
}

.col-arrow_sx:before {
    border-color: rgba(194, 225, 245, 0);
    border-width: 36px;
    margin-top: -36px
}

.col-arrow_dx,
.col-arrow_sx {
    position: relative;
    background: #fff;
    height: 400px
}

.col-arrow_dx:after,
.col-arrow_dx:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.col-arrow_dx:after {
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #fff;
    border-width: 30px;
    margin-top: -30px
}

.col-arrow_dx:before {
    border-color: rgba(194, 225, 245, 0);
    border-left-color: #fff;
    border-width: 36px;
    margin-top: -36px
}

@media (max-width:991px) {
    .col-arrow_sx:after,
    .col-arrow_sx:before {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        top: -49px !important
    }
    .col-arrow_sx:after {
        border-color: rgba(136, 183, 213, 0);
        border-bottom-color: #fff;
        border-width: 30px;
        margin-left: -30px
    }
    .col-arrow_sx:before {
        border-color: rgba(194, 225, 245, 0);
        border-width: 36px;
        margin-left: -36px
    }
    .col-arrow_dx:after,
    .col-arrow_dx:before {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        top: -49px !important
    }
    .col-arrow_dx:after {
        border-color: rgba(136, 183, 213, 0);
        border-bottom-color: #fff;
        border-width: 30px;
        margin-left: -30px
    }
    .col-arrow_dx:before {
        border-color: rgba(194, 225, 245, 0);
        border-width: 36px;
        margin-left: -36px
    }
}

.col_alternate_right {
    height: 400px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center
}

.col_alternate_left {
    height: 400px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    z-index: -1;
    background-position: center center
}

@media (max-width:991px) {
    .col_alternate_left {
        z-index: initial
    }
}

.flag_category_alt_vert {
    font-size: 22px;
    background: #c33;
    border-radius: 5px;
    color: #fff;
    padding: 4px 25px 3px;
    margin: 5px 20px 20px;
    position: absolute;
    text-transform: uppercase;
    font-family: sans-serif
}

.flag_category_alt_vert:hover {
    background-color: #fff;
    color: #c33;
    transition: background 0.5s
}

.flag_category_alt_vert_left {
    font-size: 22px;
    background: #c33;
    border-radius: 5px;
    color: #fff;
    padding: 4px 25px 3px;
    margin: 5px 0px 20px;
    position: absolute;
    text-transform: uppercase;
    font-family: sans-serif
}

.flag_category_alt_vert_left:hover {
    background-color: #fff;
    color: #c33;
    transition: background 0.5s
}

@media (max-width:991px) {
    .flag_category_alt_vert_left {
        display: none
    }
    .flag_category_alt_vert {
        display: none
    }
}

.flag_category_alt_vert_top_img {
    display: none
}

@media (max-width:991px) {
    .flag_category_alt_vert_top_img {
        font-size: 18px;
        background: #c33;
        border-radius: 5px;
        color: #fff;
        padding: 2px 20px 2px;
        margin: 15px 10px 0px;
        position: absolute;
        text-transform: uppercase;
        font-weight: 900;
        display: block
    }
}

.cont_down_alt_vert {
    position: absolute;
    margin: 60px 0 0 20px
}

.cont_down_alt_vert_left {
    position: absolute;
    margin: 60px 0 0 0
}

.vert_excerpt {
    font-weight: 500;
    margin: 5px 0;
    font-size: 14px;
    padding-right: 10px
}

@media (max-width:991px) {
    .cont_down_alt_vert_left {
        margin: 20px 0 0 0
    }
    .cont_down_alt_vert {
        margin: 20px 0 0 0
    }
}

.container_spot {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center
}

.color_gradient {
    background: linear-gradient(to top, rgba(190, 32, 32, 0.3) 0, rgba(0, 0, 0, 0) 100%);
    position: relative;
    min-height: 300px;
    overflow: hidden
}

.cont_color_gradient {
    text-align: -webkit-center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 0 20%
}

@media (max-width:1024px) {
    .cont_color_gradient {
        padding: 0 !important
    }
}

.spot_title {
    color: #fff;
    font-size: 75px;
    font-weight: 900;
    font-family: 'Droid Sans', sans-serif;
    display: block;
    margin-bottom: 10px
}

@media (max-width:991px) {
    .spot_title {
        font-size: 42px
    }
}

.spot_text {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    display: block
}

@media (max-width:991px) {
    .spot_text {
        font-size: 21px
    }
}

.spot_button {
    color: #fff;
    font-size: 26px;
    padding: 35px 24px;
    border: 2px solid #fff;
    border-radius: 100%;
    display: -webkit-inline-box;
    margin-bottom: 10px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: 500
}

.spot_button:hover {
    background: #fff;
    color: #c33;
    transition: background, color 0.5s
}

.container_slider_shortcode {
    border-top: 4px solid;
    padding: 30px 0
}

@media (max-width:768px) {
    .container_slider_shortcode {
        padding: 5px 0 !important;
        margin-top: 10px
    }
}

.title_red {
    font-size: 25px;
    color: #c33;
    font-weight: 900;
    float: left;
    padding: 0 5px 0 0
}

.col_title_arrow {
    margin-bottom: 50px
}

@media (max-width:768px) {
    .title_red {
        padding: 0 5px 0 10px
    }
}

@media (max-width:500px) {
    .title_red {
        font-size: 22px
    }
}

@media (max-width:425px) {
    .title_red {
        font-size: 16px;
        padding-top: 5px
    }
    .arrow_left_custom {
        margin: 0 0 5px 0
    }
    .arrow_right_custom {
        margin: 0 5px 5px
    }
}

.fa-arrow-right {
    margin-right: 20px;
    float: right;
    color: #000;
    border: 3px solid #fff;
    border-radius: 100%;
    padding: 5px;
    margin-top: 0px !important;
    cursor: pointer
}

.fa-arrow-left {
    margin-right: 20px;
    float: right;
    color: #000;
    border: 3px solid #fff;
    border-radius: 100%;
    padding: 5px;
    margin-top: 0px !important;
    cursor: pointer
}

.box_text_slider {
    height: 150px;
    padding-top: 20px;
    border: 1px solid #cac9c7
}

.text_slider {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 30px 5px 10px;
    height: 85px;
    line-height: 25px
}

@media (max-width:1024px) {
    .text_slider {
        padding: 5px 10px 5px 10px;
        line-height: 20px
    }
}

@media (max-width:768px) {
    .col_show_desktop {
        display: none !important
    }
    .col_show_mobile {
        display: block !important
    }
}

.col_show_desktop {
    display: block
}

.col_show_mobile {
    display: none
}

.category_name_article_mobile {
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0 15px
}

.container_article_1 {
    margin-top: 130px;
    padding-top: 10px
}

@media (max-width:1024px) {
    .container_article_1 {
        margin-top: 130px !important
    }
}

@media (max-width:768px) {
    .container_article_1 {
        margin-top: 22px !important
    }
}

.avatar_hover:hover {
    color: #c33;
    transition: color 0.5s
}

.col-avatar .avatar {
    float: left;
    margin-right: 15px
}

.col-avatar img {
    height: 100px;
    width: 100px;
    border-radius: 100px
}

.col-avatar .author_avatar {
    font-size: 16px;
    margin: 10px 0 0;
    font-weight: 900;
    display: inline-block
}

.col-avatar .img_avatar {
    height: 25px;
    width: 25px;
    display: inline-block
}

.col-avatar .name_twitter_avatar {
    display: inline-block;
    font-weight: 400
}

.col-avatar .name_twitter_avatar:hover {
    color: #c33
}

.col-avatar_mobile {
    height: 90px
}

.col-avatar_mobile .avatar_mobile {
    float: left;
    margin-right: 10px
}

.col-avatar_mobile img {
    height: 80px;
    width: 80px;
    border-radius: 100px
}

.col-avatar_mobile .author_avatar {
    font-size: 16px;
    margin: 6px 0 0;
    font-weight: 900;
    display: inline-block
}

.col-avatar_mobile .img_avatar {
    height: 25px;
    width: 25px;
    display: inline-block
}

.col-avatar_mobile .name_twitter_avatar {
    display: inline-block;
    font-weight: 400
}

.col-avatar_mobile .name_twitter_avatar:hover {
    color: #c33
}

.col-avatar {
    height: 100px
}

.col-article {
    padding: 0px 0px 0px 0px
}

.col-article .container_category_yellow {
    position: sticky;
    min-height: 40px;
    display: inline-block;
    margin-bottom: 15px;
    position: -webkit-sticky
}

.col-article .container_category_yellow .img_category_yellow_dx {
    float: right !important;
    margin-left: -70px !important;
    height: 40px !important
}

.col-article .container_category_yellow .img_category_yellow_sx {
    position: relative !important;
    bottom: 40px !important;
    height: 40px !important
}

.col-article .category_name_article {
    font-size: 25px;
    color: #c33;
    font-family: 'Droid Sans', sans-serif;
    line-height: 50px;
    padding: 0px 15px
}

.col-article .archive_category_name_article {
    font-size: 32px;
    color: #c33;
    font-family: 'Droid Sans', sans-serif;
    line-height: 50px;
    padding: 5px 15px;
    margin: 0;
    font-weight: 600
}

@media (max-width:768px) {
    .col-article .archive_category_name_article {
        font-size: 22px
    }
}

.col-article .date_article {
    font-size: 15px;
    color: #6c6c6c
}

.col-article .title_article {
    margin-top: 9px;
    font-size: 34px;
    font-weight: 600;
    display: block;
    float: none
}

.col-article .sub_title_article {
    font-size: 20px;
    padding: 10px 0px;
    line-height: 30px
}

.col-article .line_red {
    border: 2px solid #c33;
    width: 15%;
    margin: 15px 0 25px
}

@media (max-width:768px) {
    .col-article .line_red {
        border: 1px solid #fff;
        width: 100%;
        margin: 15px 0 10px
    }
}

.col-article .box_social_article {
    float: right
}

@media (max-width:768px) {
    .col-article .box_social_article {
        float: none;
        margin: 10px 0;
        display: inline-block
    }
}

.box_social_article .arrow_count_share {
    display: inline-block;
    height: 25px
}

.box_social_article .count_total {
    display: inline-block;
    font-size: 12px;
    font-weight: 900
}

.box_social_article .addtoany_shortcode {
    display: inline-block
}

.col-social-category {
    float: right;
    margin: 5px 15px
}

@media (max-width:768px) {
    .container_category_yellow {
        margin-left: 20px;
        margin-bottom: 0px!important
    }
    .col-social-category {
        float: none;
        margin: 5px 20px
    }
    .col-social-category .like-buttons {
        display: inline-block
    }
}

.box_content_category {
    margin: 5px 0 20px
}

.slider_gallery {
    margin-bottom: 50px
}

.title_foto_gallery {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 50px 0 10px 2%
}

.col_count_2 {
    display: none
}

.img_slider {
    height: 300px;
    background-size: cover!important;
    background-repeat: no-repeat !important;
    background-position: center center !important
}

.img_slider_widget {
    height: 225px;
    background-size: cover!important;
    background-repeat: no-repeat !important;
    background-position: center center !important
}

@media (min-width:1300px) {
    .container_gallery {
        width: 1280px
    }
    .container_gallery .img_slider_2 {
        max-width: 100% !important
    }
    .title_foto_gallery {
        margin: 50px 0 0 1%
    }
}

.img_slider_2 {
    max-height: 320px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto
}

@media (min-width:1024px) {
    .container_gallery .thumbnail_gallery {
        height: 385px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        margin-left: 20px
    }
}

@media (max-width:1024px) {
    .container_gallery .thumbnail_gallery {
        height: 250px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        margin-left: 10px
    }
    .sli_left,
    .sli_right {
        margin-top: 280px !important
    }
}

@media (max-width:991px) {
    .container_gallery .thumbnail_gallery {
        margin-left: 0
    }
    .sli_right {
        margin-top: 235px !important;
        height: 25px !important;
        padding-left: 10px
    }
    .sli_left {
        margin-top: 235px !important;
        height: 25px !important;
        padding-right: 10px
    }
}

@media (max-width:1200px) {
    .img_slider_2 {
        max-width: 90% !important
    }
}

.cont_title_slider {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto
}

.title_slider {
    font-size: 32px;
    color: #363636;
    background: #fff;
    padding: 0px 15px;
    text-transform: uppercase;
    font-weight: 700
}

.excerpt_slider {
    font-size: 20px;
    color: #fff;
    margin: 5px 0px 15px
}

.content_slider {
    font-size: 15px;
    color: #fff;
    text-align: justify;
    line-height: 25px
}

.col_1_slider {
    height: 300px
}

.col_custom_slider {
    max-height: 290px;
    overflow: hidden
}

.sli_left {
    height: 35px;
    margin: 330px 0 0 0;
    float: left;
    cursor: pointer
}

.sli_right {
    height: 35px;
    float: right;
    margin-top: 330px;
    cursor: pointer
}

@media (max-width:991px) {
    .title_foto_gallery {
        margin: 50px 0px 10px 0px !important
    }
    .col_custom_slider {
        max-height: 100%
    }
    .img_slider_2 {
        display: inline-block !important;
        max-width: 100% !important
    }
    .cont_title_slider {
        max-width: 100% !important;
        padding: 30px 5px;
        text-align: left
    }
    .col_count {
        padding-right: 0px;
        display: none
    }
    .col_count_2 {
        display: block
    }
}

@media (max-width:600px) {
    .img_slider_2 {
        max-height: 230px !important
    }
}

@media (max-width:425px) {
    .title_foto_gallery {
        font-size: 32px;
        margin: 30px 0px 5px 0px !important
    }
    .sli_left,
    .sli_right {
        margin-top: 175px !important
    }
    .container_gallery .thumbnail_gallery {
        height: 220px
    }
}

.slider_gallery {
    outline: auto 0 -webkit-focus-ring-color !important
}

.total_slider {
    color: #fff;
    font-size: 21px;
    font-weight: 600
}

.responsive_all {
    width: 100%
}

.content_picture {
    margin-top: 25px;
    font-family: 'Droid Sans', sans-serif
}

@media (max-width:1025px) {
    .content_picture {
        margin-top: 5px
    }
}

.author_picture {
    font-size: 15px;
    font-weight: 600;
    font-family: sans-serif;
    font-style: italic
}

.big_font {
    font-size: 36px
}

.img_responsive_custom {
    width: 90%
}

.image_description {
    width: 90%
}

.container_post_red {
    position: sticky;
    min-height: 250px
}

.img_post_red_dx {
    position: absolute;
    right: 0;
    top: 0
}

.img_post_red_sx {
    position: absolute;
    bottom: 0;
    left: 0
}

@media (max-width:768px) {
    .img_post_red_dx,
    .img_post_red_sx {
        zoom: 0.7
    }
}

.text_post_red {
    padding: 90px 9%;
    font-size: 28px;
    font-weight: 600;
    line-height: 37px
}

.text_post_red p {
    padding: 20px 10%;
    font-size: 28px;
    font-weight: 600;
    line-height: 37px
}

@media (max-width:425px) {
    .text_post_red p {
        padding: 80px 15%;
        font-size: 21px;
        line-height: 30px
    }
    .text_post_red {
        padding: 80px 15%;
        font-size: 21px;
        line-height: 30px
    }
    .img_post_red_sx,
    .img_post_red_dx {
        height: 166px
    }
}

.two_box_container {
    position: absolute;
    min-height: 150px;
    width: 300px;
    background: #f0f2f1;
    margin-right: 20px;
    right: 0
}

.two_box_title {
    padding: 10px 10px 15px 15px;
    font-size: 16px;
    font-weight: 900
}

.two_box_line {
    width: 85%;
    border: 1px solid #cbcdcc;
    margin-left: 7%
}

.two_box_cont_tag {
    padding: 5px 20px
}

.two_box_cont_tag .two_box_tag {
    color: #c33;
    font-size: 14px;
    font-weight: 900
}

.two_box_cont_article {
    padding: 0px 15px 5px
}

.two_box_article {
    font-weight: normal;
    font-family: 'Lato', sans-serif;
    font-size: 16px
}

.container_shortcode {
    margin-top: 30px;
    margin-bottom: 30px
}

@media (max-width:1025px) {
    .container_shortcode {
        margin-top: 10px;
        margin-bottom: 10px
    }
}

.container_fluid_article_2 {
    margin: 50px 0px 30px
}

@media (max-width:1024px) {
    .container_fluid_article_2 {
        margin: 114px 0px 30px !important
    }
}

.cont_img {
    height: 600px;
    position: relative
}

.img_background {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important
}

.col-avatar_2 {
    margin-top: 30px;
    padding: 0px 25px
}

.cont_avatar_2 {
    position: absolute
}

@media (max-width:1024px) {
    .cont_avatar_2 {
        margin-top: 20px
    }
}

.avatar_2 {
    float: left
}

.avatar_2 img {
    height: 100px;
    width: 100px;
    border-radius: 100px
}

.cont_title_author_avatar_2 {
    float: left;
    margin-left: 15px
}

.author_avatar_2 {
    font-size: 20px;
    margin: 15px 0px 5px;
    font-weight: 900
}

.img_avatar_2 {
    height: 30px;
    display: inline-block
}

.name_twitter_avatar_2 {
    display: inline-block;
    font-weight: 400;
    margin-left: 10px;
    font-size: 14px
}

.container_article_2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-right: 200px
}

@media (max-width:1024px) {
    .container_article_2 {
        padding-right: 0px !important
    }
}

.content_description_article_2 {
    margin-bottom: 20px
}

.content_description_article_2 .date_article_2 {
    font-size: 12px;
    color: #fff
}

.content_description_article_2 .category_article_2 {
    font-size: 14px;
    color: #fff;
    margin: 30px 0px;
    font-family: 'Lato', sans-serif
}

.content_description_article_2 .title_article_2 {
    font-size: 28px;
    color: #fff;
    font-weight: 900
}

@media (max-width:768px) {
    .container-red {
        display: none !important
    }
    .container-red_nav1 {
        display: none !important
    }
    #menu2 {
        display: block !important
    }
    .container-top {
        margin-top: 12px
    }
    .container-sponsor {
        margin-top: 72px
    }
    .container-top-sponsor {
        margin-top: 62px
    }

    #getting-started {
	font-size: 16px !important;
    }
    #countdown_text {
	font-size: 16px !important;
    }
    #countdown_button {
	font-size: 16px !important;
    }

}

.red_menu_filter {
    height: 200px
}

.col_img_menu:hover .red_menu_filter {
    background: rgba(204, 51, 51, 0.3);
    transition: background 0.5s
}

.col_img_menu:hover .title_nav {
    color: #c33 !important;
    transition: color 0.5s
}

@media (max-width:768px) {
    .block_scrolldown {
        margin-top: 0px !important
    }
}

.title_slider {
    font-size: 23px
}

.excerpt_slider {
    font-size: 18px
}

.img_menu_category {
    height: 200px !important;
    background-size: cover !important;
    background-position: center center !important
}

.title_nav {
    color: #fff;
    margin-top: 10px;
    padding: 5px;
    text-align: left;
    font-weight: 100
}

.div_show_more,
.div_show_more1,
.div_show_more2 {
    transform: translateX(100px);
    display: none
}

@media (max-width:1200px) {
    .div_show_more,
    .div_show_more1,
    .div_show_more2 {
        transform: translateX(0)
    }
}

.arrow_menu {
    color: #fff;
    float: right;
    margin: 27px 0px 0px 5px
}

.text_arrow_menu {
    color: #fff;
    float: right;
    font-weight: 600;
    margin: 27px 10px 0px
}

.text_arrow_menu {
    position: relative;
    padding-bottom: 10px
}

.text_arrow_menu:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    transition: width 0s ease, background .5s ease
}

.text_arrow_menu:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #fff !important;
    transition: width .5s ease
}

.text_arrow_menu:hover:before {
    width: 100%;
    background: #fff !important;
    transition: width .5s ease
}

.text_arrow_menu:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease
}

.container_bandi_yellow {
    position: sticky;
    min-height: 40px;
    display: inline-block;
    margin: 0 22px 15px
}

.img_bandi_yellow_dx {
    float: right;
    margin-left: -70px;
    height: 40px
}

.bandi_name_article {
    font-size: 25px;
    color: #c33;
    font-family: 'Droid Sans', sans-serif;
    line-height: 50px;
    padding: 0 15px;
    font-weight: bold
}

.img_bandi_yellow_sx {
    position: relative;
    bottom: 40px;
    height: 40px
}

.div_bandi {
    min-height: 210px;
    margin-bottom: 10px
}

.title_bando {
    color: #c33 !important
}

@media (max-width:769px) {
    .div_bandi,
    .bandoContent {
        min-height: auto
    }
    .div_bandi {
        margin-bottom: 0
    }
    .bandoHeader h4 {
        min-height: 60px;
        padding-bottom: 5px !important
    }
}

.name_bandi {
    padding: 0 22px
}

.bandi,
.bandiTitle,
.bando,
.bandiFooter,
.bandiContent {
    float: left;
    margin: 0;
    padding: 0
}

.page-id-53359.single .content {
    padding: 20px 10px!important
}

.bandi {
    padding: 15px 0
}

.bandiTitle {
    padding: 10px 15px 10px 15px;
    background: #777
}

.bandiTitle img {
    width: 90px
}

.bandiTitle h2 {
    margin: 0;
    padding: 0;
    color: #777
}

.bando {
    padding: 2px;
    font-size: 12px;
    font-weight: 500
}

.bandoHeader {
    float: left;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 5px
}

.bandoHeader h4 {
    min-height: 60px;
    font-family: 'Roboto Slab', sans-serif
}

@media (max-width:768px) {
    .bandoContent {
        min-height: auto !important
    }
}

@media (max-width:767px) {
    .bandoHeader {
        height: auto !important;
        margin-bottom: 20px
    }
    .contenuto-bando {
        min-height: auto !important
    }
    .bando h4 {
        min-height: auto !important
    }
}

.bandoHeader_empty {
    float: left;
    width: 100%;
    min-height: 20px
}

.bandoHeader_empty h4 {
    min-height: 60px;
    font-family: 'Roboto Slab', sans-serif
}

.bandoHeader_empty span {
    float: left;
    width: 100%;
    margin-bottom: 1px
}

.bandoHeader_content p {
    font-family: 'Roboto Slab', sans-serif
}

.element_cont_bando {
    display: inline-block;
    width: 100%;
    padding-top: 5px
}

.contenuto-bando {
    font-family: 'Roboto Slab', sans-serif;
    min-height: 86px;
    padding-top: 5px
}

@media (max-width:768px) {
    .contenuto-bando {
        margin-bottom: 10px
    }
}

.bando h4 {
    margin: 0;
    padding: 0;
    font-size: 16px!important;
    line-height: 18px!important;
    float: left;
    width: 100%;
    font-weight: bold;
    border-bottom: 1px solid #656565;
    min-height: 60px
}

.bandi.slide .bando h4 {
    border: 0;
    margin-bottom: 0
}

.bandi.slide {
    border-top: 1px solid #777
}

.bando h4 a {
    color: #c33
}

.bandoHeader span {
    float: left;
    width: 100%;
    margin-bottom: 1px;
    border-bottom: 1px solid #656565
}

.bandoImageContainer,
.bandoImageContainer a,
.bandoImageContainer img {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0
}

.bandoImageContainer {
    margin-bottom: 7px
}

.bando .btn {
    float: left;
    width: 100%;
    margin: 7px 0 0 0;
    padding: 3px 10px;
    text-align: center;
    background: #c33;
    color: #FFF
}

.bandiFooter {
    background: #777;
    color: #FFF;
    padding: 3px 15px
}

.bandiFooter a {
    float: right;
    color: #FFF;
    font-weight: bold;
    font-size: 14px
}

.bandi .pagination {
    float: left;
    width: 100%;
    text-align: center
}

.bandi .pagination span,
.bandi .pagination a {
    display: inline-block;
    margin: 3px;
    padding: 2px;
    border: 1px solid #c33;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #c33;
    color: #FFF;
    line-height: 26px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold
}

.bandi .pagination span,
.bandi .pagination a:hover {
    background: none;
    color: #444
}

.bandi.slide {
    padding: 0
}

.bandoContent {
    float: left;
    width: 100%;
    min-height: 70px
}

.bandoContent_empty {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: none;
    min-height: 100px
}

.slide .bando>div {
    border-left: 4px solid #777;
    margin-bottom: -1px
}

.slide .bando:nth-child(2n)>div {
    border-left: 4px solid #2485ca
}

.slide .bando:nth-child(3n)>div {
    border-left: 4px solid #ffdd00
}

.slide .bando:nth-child(4n)>div {
    border-left: 4px solid #ff9900
}

.slide .bando:nth-child(5n)>div {
    border-left: 4px solid #cb393d
}

.slide .bando:nth-child(6n)>div {
    border-left: 4px solid #777
}

.bandi.slide .bandoContent {
    display: none
}

.container_single_bando {
    margin-top: 100px
}

@media (max-width:1025px) {
    .container_single_bando {
        margin-top: 145px !important
    }
}

.share-buttons {
    float: right
}

@media (max-width:768px) {
    .share-buttons {
        float: none;
        margin: 10px 0 0
    }
}

.title_single_bando {
    margin-top: 9px;
    font-size: 34px;
    font-weight: 600;
    display: block;
    font-family: 'Roboto Slab', sans-serif
}

.sub_title_single_bando p {
    font-size: 20px;
    padding: 10px 0px;
    line-height: 30px
}

.bando-meta-footer {
    margin-bottom: 10px
}

@media (max-width:769px) {
    .title_single_bando {
        font-size: 26px
    }
    .sub_title_single_bando p {
        font-size: 16px;
        line-height: 25px
    }
    .bando-meta-footer .importo {
        float: none !important
    }
}

.line_red_bando {
    border: 2px solid #c33;
    width: 15%;
    margin: 15px 0 25px
}

.span_single_bando a {
    font-size: 14px;
    color: #c33
}

@media (max-width:769px) {
    .span_single_bando a {
        padding: 0 5px
    }
}

.container_single_bando .content {
    font-size: 18px;
    font-family: 'Droid Sans', sans-serif;
    line-height: 25px
}

.container_single_bando img {
    margin: 30px 0
}

.tribe-events-single p {
    font-size: 20px;
    font-family: 'Droid Sans', sans-serif;
    line-height: 30px;
    padding: 10px 0
}

.tribe-events-single h1,
.tribe-events-single h2 {
    font-weight: 900
}

.header_agenda_sponsor {
    margin-top: 90px
}

.header_agenda_out {
    margin-top: 60px
}

@media (max-width:1200px) {
    .col-bandi-remove .description_down,
    .col-bandi-remove .box-checkbox {
        height: 0px !important
    }
}

.header_bandi_sponsor {
    margin-top: 90px
}

.header_bandi_out {
    margin-top: 60px
}

.check-container-sponsor {
    margin-top: 90px
}

.check-container-sponsor-empty {
    margin-top: 60px
}

.header_bandi,
.header_agenda {
    height: 60px;
    background-color: #dbdee5;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 60px
}

.header_bandi .send_mail,
.header_agenda .send_mail {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 160px
}

.header_bandi .send_mail button,
.header_agenda .send_mail button {
    background-color: #c33;
    font-size: 16px
}

.header_bandi .send_mail_normal,
.header_agenda .send_mail_normal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px
}

.header_bandi .send_mail_normal button,
.header_agenda .send_mail_normal button {
    background-color: #c33;
    font-size: 16px
}

.header_bandi .search-event,
.header_agenda .search-event,
.header_bandi .search-bandi,
.header_agenda .search-bandi {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px
}

.header_bandi .search-event button,
.header_agenda .search-event button,
.header_bandi .search-bandi button,
.header_agenda .search-bandi button {
    background-color: #c33;
    font-size: 16px;
    font-weight: bolder
}

.header_bandi .search-event-active button,
.header_agenda .search-event-active button,
.header_bandi .search-bandi-active button,
.header_agenda .search-bandi-active button {
    background-color: #fff !important;
    color: #c33
}

.header_bandi .send_mail button:hover,
.header_agenda .send_mail button:hover,
.header_bandi .send_mail_normal button:hover,
.header_agenda .send_mail_normal button:hover {
    background-color: #be2f2f;
    transition: 0.3s
}

.header_bandi .search-event button:hover,
.header_agenda .search-event button:hover,
.header_bandi .search-bandi button:hover,
.header_agenda .search-bandi button:hover {
    background-color: #be2f2f;
    transition: 0.3s
}

.no-bandi-found {
    margin: 100px 0
}

@media (max-width:768px) {
    .send_mail button,
    .send_mail_normal button,
    .search-event button,
    .search-bandi button {
        font-size: 14px;
        padding: 5px 10px
    }
    .box_header_bandi,
    .box_header_agenda {
        margin: 10px 22px !important;
        zoom: 0.8
    }
}

.box_search_height {
    height: auto !important;
    margin-top: 50px;
    margin-bottom: 20px
}

.box_search .description_1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif
}

.box_search .description_2 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif
}

.box_search .input-group {
    width: 96%
}

.box_search .input-group .input-group-btn {
    height: 35px
}

.box_search .input-group input {
    border-radius: 5px !important;
    padding: 6px 35px 6px 12px
}

.box_search .input-group .form-control:focus {
    border: 1px solid #ccc;
    box-shadow: none;
    -webkit-box-shadow: none
}

.box_search .input-group .fa-search {
    position: absolute;
    margin-left: -30px;
    z-index: 99;
    margin-top: 5px;
    color: #ff9900
}

.box_search .box-select {
    height: 40px
}

.box_search .box-select .rail-select-agenda {
    width: 95.8% !important
}

.box_search .box-select .rail-select {
    position: absolute;
    width: 95%
}

.box_search .box-select .rail-select select {
    border: solid 1px #ccc;
    border-radius: 6px;
    font-size: 16px;
    color: gray;
    height: 34px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}

.box_search .box-select .rail-select select:focus {
    outline: none;
    box-shadow: none
}

.box_search .box-select .rail-select .select-side {
    width: 40px;
    position: absolute;
    top: 0px;
    height: 100%;
    right: 0;
    border-radius: 0px 6px 6px 0px;
    pointer-events: none
}

.box_search .box-select .rail-select .select-side:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 1px
}

.box_search .box-select .rail-select .select-side i.yellow {
    color: #ff9900;
    margin: 6px 9px;
    font-size: 22px
}

.box_search .description_down {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500
}

.box_search .description_3 {
    padding: 0 5px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Lato', sans-serif
}

.box_search .btn_search {
    margin: 5px 5px 20px;
    background-color: #a8a8a8;
    width: 22%;
    padding: 6px 2px
}

.box_search .btn_search .name_category {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 16px
}

.box_search .height_zero {
    height: 0px !important
}

.box_search .box-two-line .slick-track {
    min-height: 1px !important;
    min-width: 100% !important
}

.box_search .box-two-line .slick-track .first_line {
    min-width: 1px !important;
    min-height: 100% !important
}

.box_search .box-two-line .slick-track .second_line {
    min-width: 1px !important;
    min-height: 100% !important
}

.box_search .first_line:focus,
.box_search .second_line:focus {
    outline: none !important
}

@media (max-width:991px) {
    .box_search .box-two-line .slick-list {
        padding: 0 30px 0 0 !important
    }
}

@media (max-width:768px) {
    .box_search .btn_search {
        width: 31% !important
    }
}

@media (max-width:340px) {
    .box_search .btn_search {
        width: 47% !important
    }
    #getting-started {
	font-size: 13px !important;
    }
    #countdown_text {
	font-size: 13px !important;
    }
    #countdown_button {
	font-size: 13px !important;
    }
}

@media (max-width:425px) {
    .box_search .btn_search {
        width: 46% !important
    }
}

.box_search .btn-search-active {
    background-color: #67ff9a
}

.box_search .btn-search-active p {
    color: #737373 !important
}

.box_search .btn_search:focus {
    outline: none !important
}

@media (max-width:991px) {
    .box_search .checkbox_1,
    .box_search .checkbox_2,
    .box_search .checkbox_3,
    .box_search .checkbox_4 {
        padding: 5px 2px !important
    }
    .box_search .checkbox_1 p,
    .box_search .checkbox_2 p,
    .box_search .checkbox_3 p,
    .box_search .checkbox_4 p {
        font-size: 14px !important
    }
    .box_search .btn_search {
        width: 31%
    }
    .box_search .input-group {
        width: 100%
    }
    .box_search .rail-select {
        width: 100% !important
    }
    .box_search .box-search-mobile {
        display: block !important;
        margin-top: 20px;
        margin-bottom: 20px;
        height: 40px
    }
    .box_search .box-search-mobile .button-search-mobile .clean_search {
        float: left;
        width: 33%;
        text-decoration: underline;
        font-family: 'Lato', sans-serif;
        padding-top: 5px
    }
    .box_search .box-search-mobile .button-search-mobile .show-other-filter {
        text-align: center;
        float: left;
        width: 33%;
        font-size: 17px;
        padding-top: 2px;
        text-decoration: underline
    }
    .box_search .box-search-mobile .button-search-mobile .show-other-filter i {
        height: 16px;
        border-bottom: 1px solid #000
    }
    .box_search .box-search-mobile .button-search-mobile .clean_search {
        padding-top: 15px
    }
    .box_search .box-search-mobile .button-search-mobile .mask-button {
        float: right;
        width: 34%;
        zoom: 1.3
    }
    .box_search .box-search-mobile .button-search-mobile .mask-button button {
        float: right;
        padding: 5px 25px;
        border-radius: 5px;
        background: #ff9900;
        border-color: #ff9900
    }
    .box_search .box-search-mobile .button-search-mobile .mask-button button p {
        color: #fff;
        font-size: 16px
    }
}

@media (max-width:610px) {
    .box_search .checkbox_1,
    .box_search .checkbox_3 {
        min-width: 49%
    }
    .box_search .checkbox_2,
    .box_search .checkbox_4 {
        min-width: 49%
    }
}

@media (max-width:425px) {
    .box_search .checkbox_1,
    .box_search .checkbox_2,
    .box_search .checkbox_3,
    .box_search .checkbox_4 {
        min-width: 48% !important;
        min-height: 48px
    }
    .box_search .checkbox_1 p,
    .box_search .checkbox_2 p,
    .box_search .checkbox_3 p,
    .box_search .checkbox_4 p {
        padding-left: 0 !important
    }
    .box_search .checkbox_1 .frs_span,
    .box_search .checkbox_2 .frs_span,
    .box_search .checkbox_3 .frs_span,
    .box_search .checkbox_4 .frs_span {
        display: block;
        height: 11px;
        padding-top: 7px
    }
    .box_search .checkbox_1 .snd_span,
    .box_search .checkbox_2 .snd_span,
    .box_search .checkbox_3 .snd_span,
    .box_search .checkbox_4 .snd_span {
        display: block;
        height: 15px;
        margin-top: 10px
    }
}

@media (max-width:768px) {
    .box_search .slider-checkbox .slick-list {
        padding: 0px 50px 0 0 !important
    }
    .box_search .slider-checkbox .slick-list .slick-slide {
        outline: none !important
    }
    .box_search .checkbox_1,
    .box_search .checkbox_2,
    .box_search .checkbox_3,
    .box_search .checkbox_4 {
        padding: 5px 0px 5px 5px !important
    }
}

@media (max-width:550px) {
    .box_search .slider-checkbox .slick-list {
        padding: 0 !important
    }
    .box_search .box-search-mobile .button-search-mobile .show-other-filter {
        font-size: 12px;
        padding-top: 5px
    }
    .box_search .box-search-mobile .button-search-mobile .show-other-filter i {
        height: 12px
    }
    .box_search .box-search-mobile .button-search-mobile .mask-button button {
        float: right
    }
    .box_search .box-search-mobile .button-search-mobile .mask-button button p {
        font-size: 16px
    }
    .box_search .class_margin {
        height: 12px !important
    }
}

@media (max-width:426px) {
    .box_search .slider-checkbox .slick-list {
        padding: 0px 50px 0 0 !important
    }
}

@media (max-width:390px) {
    .box_search .class_margin {
        height: 10px !important
    }
}

@media (max-width:390px) {
    .box_search .box-search-mobile .button-search-mobile .clean_search {
        font-size: 10px
    }
    .box_search .box-search-mobile .button-search-mobile .show-other-filter {
        font-size: 10px;
        padding-top: 6px
    }
    .box_search .box-search-mobile .button-search-mobile .show-other-filter i {
        height: 10px
    }
}

.box_search .checkbox_1,
.box_search .checkbox_2,
.box_search .checkbox_3,
.box_search .checkbox_4 {
    display: inline-block;
    padding: 5px 10px
}

.box_search .checkbox_1 .my_check,
.box_search .checkbox_2 .my_check,
.box_search .checkbox_3 .my_check,
.box_search .checkbox_4 .my_check {
    position: absolute;
    top: -5px;
    right: 0;
    left: -5px;
    bottom: 0;
    color: #ff9900
}

.box_search .checkbox_1 .my_check:focus,
.box_search .checkbox_2 .my_check:focus,
.box_search .checkbox_3 .my_check:focus,
.box_search .checkbox_4 .my_check:focus {
    outline: -webkit-focus-ring-color auto 0
}

.box_search .checkbox_1 .my-check-none,
.box_search .checkbox_2 .my-check-none,
.box_search .checkbox_3 .my-check-none,
.box_search .checkbox_4 .my-check-none {
    display: none
}

.box_search .checkbox_1 button,
.box_search .checkbox_2 button,
.box_search .checkbox_3 button,
.box_search .checkbox_4 button {
    padding: 10px !important;
    background-color: #fff;
    border: 1px solid #aaa;
    position: relative
}

.box_search .checkbox_1 button:focus,
.box_search .checkbox_2 button:focus,
.box_search .checkbox_3 button:focus,
.box_search .checkbox_4 button:focus {
    outline: -webkit-focus-ring-color auto 0
}

.box_search .checkbox_1 p,
.box_search .checkbox_2 p,
.box_search .checkbox_3 p,
.box_search .checkbox_4 p {
    display: inline-block;
    padding-left: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    vertical-align: bottom
}

.box_search .button_search {
    float: right;
    margin-top: -50px;
    margin-right: 30px
}

.box_search .button_search .clean_search {
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    padding-right: 10px;
    transform: translateY(12px)
}

.box_search .button_search button {
    padding: 0px 28px;
    margin-top: 18px;
    border-radius: 5px;
    background-color: #ff9900;
    border-color: #ff9900
}

.box_search .button_search button p {
    color: #fff;
    font-size: 20px
}

@media (max-width:1200px) {
    .box_search .button_search .clean_search {
        transform: translateY(0) !important
    }
}

.box_search .box-ghost-md-2 {
    display: none
}

.box_search .description-post {
    display: none
}

.box_search .description-post .text-search {
    font-size: 18px
}

.box_search .description-post .text-search span {
    color: #c33;
    font-weight: bold
}

@media (max-width:1200px) {
    .box-ghost-md-10 {
        display: none
    }
    .box-ghost-md-2 {
        display: block !important
    }
    .box-ghost-md-2 .button_search {
        float: none;
        margin: 0 !important
    }
    .box-bandi {
        float: right !important
    }
    .col-bandi-select {
        width: 80% !important
    }
}

@media (max-width:991px) {
    .col-bandi-select {
        width: 100% !important
    }
    .description_3 {
        padding: 0 !important
    }
    .box-rating {
        display: none
    }
}

.btn-start-search:focus {
    outline: none !important
}

@media (max-width:768px) {
    .detail_bandi .count_bandi .box_detail,
    .detail_bandi .ammount_bandi .box_detail {
        margin: 0 10px 10px;
        padding: 15px 15px 0
    }
    .detail_bandi .count_bandi .box_detail .cont_detail .text_top,
    .detail_bandi .ammount_bandi .box_detail .cont_detail .text_top {
        font-size: 14px
    }
    .detail_bandi .count_bandi .box_detail .cont_detail .late_dx_arrow,
    .detail_bandi .ammount_bandi .box_detail .cont_detail .late_dx_arrow {
        height: 30px
    }
    .detail_bandi .count_bandi .box_detail .cont_detail .value_bandi,
    .detail_bandi .ammount_bandi .box_detail .cont_detail .value_bandi {
        font-size: 60px
    }
    .detail_bandi .count_bandi .box_detail .cont_detail .money_bandi,
    .detail_bandi .ammount_bandi .box_detail .cont_detail .money_bandi {
        font-size: 60px;
        height: auto !important;
        line-height: 1.4em !important
    }
    .detail_bandi .count_bandi .box_detail .cont_detail .late_sx_arrow,
    .detail_bandi .ammount_bandi .box_detail .cont_detail .late_sx_arrow {
        height: 30px;
        margin-top: -15px;
        margin-left: -15px
    }
    .detail_bandi .count_bandi .box_detail .cont_detail .text_bottom,
    .detail_bandi .ammount_bandi .box_detail .cont_detail .text_bottom {
        font-size: 14px
    }
}

@media (max-width:600px) {
    .detail_bandi .count_bandi .box_detail .cont_detail .value_bandi,
    .detail_bandi .ammount_bandi .box_detail .cont_detail .value_bandi {
        font-size: 40px
    }
    .detail_bandi .count_bandi .box_detail .cont_detail .money_bandi,
    .detail_bandi .ammount_bandi .box_detail .cont_detail .money_bandi {
        font-size: 40px
    }
}

@media (max-width:450px) {
    .detail_bandi .count_bandi .cont_detail .value_bandi,
    .detail_bandi .ammount_bandi .cont_detail .value_bandi {
        font-size: 30px !important
    }
    .detail_bandi .count_bandi .cont_detail .money_bandi,
    .detail_bandi .ammount_bandi .cont_detail .money_bandi {
        font-size: 30px !important
    }
    .detail_bandi .count_bandi .cont_detail .text_top,
    .detail_bandi .ammount_bandi .cont_detail .text_top {
        float: none !important;
        margin-right: 10px
    }
}

@media (max-width:415px) {
    .detail_bandi .grey_box {
        padding: 30px 10px 15px !important
    }
    .detail_bandi .grey_box .count_bandi .box_detail,
    .detail_bandi .grey_box .ammount_bandi .box_detail {
        margin: 0 0px 10px !important;
        padding: 15px 10px 0 !important
    }
    .detail_bandi .grey_box .count_bandi .box_detail .cont_detail .text_top,
    .detail_bandi .grey_box .ammount_bandi .box_detail .cont_detail .text_top {
        font-size: 12px !important;
        margin-bottom: 3px !important
    }
    .detail_bandi .grey_box .count_bandi .box_detail .cont_detail .late_dx_arrow,
    .detail_bandi .grey_box .ammount_bandi .box_detail .cont_detail .late_dx_arrow {
        height: 20px !important;
        margin-top: -14px !important;
        margin-right: -14px !important
    }
    .detail_bandi .grey_box .count_bandi .box_detail .cont_detail .late_sx_arrow,
    .detail_bandi .grey_box .ammount_bandi .box_detail .cont_detail .late_sx_arrow {
        height: 20px !important;
        margin-top: -7px !important;
        margin-left: -12px !important
    }
    .detail_bandi .grey_box .count_bandi .box_detail .cont_detail .text_bottom,
    .detail_bandi .grey_box .ammount_bandi .box_detail .cont_detail .text_bottom {
        font-size: 12px !important
    }
    .detail_bandi .grey_box .count_bandi .box_detail .cont_detail .value_bandi,
    .detail_bandi .grey_box .ammount_bandi .box_detail .cont_detail .value_bandi {
        font-size: 30px !important
    }
    .detail_bandi .grey_box .count_bandi .box_detail .cont_detail .money_bandi,
    .detail_bandi .grey_box .ammount_bandi .box_detail .cont_detail .money_bandi {
        font-size: 30px !important
    }
    .detail_bandi .grey_box .count_bandi .box_detail .cont_detail .text_top,
    .detail_bandi .grey_box .ammount_bandi .box_detail .cont_detail .text_top {
        float: none !important;
        margin-right: 10px
    }
}

.evidence_box {
    margin-top: 30px
}

.evidence_box .col_evidence {
    padding-top: 10px
}

.evidence_box .col_evidence .img_evidence {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center center
}

.evidence_box .col_evidence .img_evidence .rectangle_red {
    margin-top: -10px;
    position: absolute;
    width: 30px
}

.evidence_box .col_evidence .img_evidence .text_evidence {
    color: #fff;
    font-size: 18px;
    background: #c33;
    padding: 5px;
    position: absolute;
    font-weight: 900;
    font-family: 'Lato', sans-serif
}

.evidence_box .col_evidence_dx {
    background-color: #fff;
    height: 350px;
    margin-top: 10px;
    padding-top: 10px;
    position: relative
}

.evidence_box .col_evidence_dx .text_evidence {
    position: absolute;
    top: 10px;
    font-weight: 900;
    font-size: 16px;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif
}

.evidence_box .col_evidence_dx .sub_text_evidence {
    position: absolute;
    top: 60px;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif
}

.evidence_box .col_evidence_dx a:hover .text_evidence,
.evidence_box .col_evidence_dx a:hover .sub_text_evidence {
    color: #c33;
    transition: color 0.5s
}

.evidence_box .col_evidence_dx .ammount_evidence {
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-size: 18px;
    color: #c33;
    font-weight: 900;
    font-family: 'Lato', sans-serif
}

.evidence_box .col_evidence_dx .button_link {
    position: absolute;
    bottom: 20px;
    right: 50px;
    background: #676767;
    padding: 10px;
    border-radius: 10px
}

.evidence_box .col_evidence_dx .button_link a {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase
}

.evidence_box .col_evidence_dx .button_link:hover {
    background: #fff;
    border: 1px solid #c33;
    padding: 9px !important;
    transition: background 0.4s
}

.evidence_box .col_evidence_dx .button_link:hover a {
    color: #c33;
    transition: color 0.4s
}

@media (max-width:991px) {
    .col_evidence_dx {
        margin-top: 0 !important;
        padding-top: 0 !important
    }
    .col_evidence_dx .button_link {
        right: 20px !important;
        bottom: 25px !important;
        padding: 6px !important
    }
    .col_evidence_dx .button_link a {
        font-size: 14px !important
    }
}

.col_bandi_sponsored,
.col_bandi_normal,
.col_eventi_sponsored {
    padding: 10px 10px 15px;
    margin-left: -10px;
    margin-right: 10px
}

.col_bandi_sponsored .box_sponsor .img_sponsor,
.col_bandi_normal .box_sponsor .img_sponsor,
.col_eventi_sponsored .box_sponsor .img_sponsor,
.col_bandi_sponsored .box_sponsor_normal .img_sponsor,
.col_bandi_normal .box_sponsor_normal .img_sponsor,
.col_eventi_sponsored .box_sponsor_normal .img_sponsor {
    height: 200px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: 2px 1px 5px #ccc
}

.col_bandi_sponsored .box_sponsor .img_sponsor .text_evidence,
.col_bandi_normal .box_sponsor .img_sponsor .text_evidence,
.col_eventi_sponsored .box_sponsor .img_sponsor .text_evidence,
.col_bandi_sponsored .box_sponsor_normal .img_sponsor .text_evidence,
.col_bandi_normal .box_sponsor_normal .img_sponsor .text_evidence,
.col_eventi_sponsored .box_sponsor_normal .img_sponsor .text_evidence {
    color: #fff;
    font-size: 14px;
    background: #c33;
    padding: 5px;
    position: absolute;
    font-weight: 900;
    font-family: 'Lato', sans-serif
}

.col_bandi_sponsored .box_sponsor .img_sponsor .rectangle_red,
.col_bandi_normal .box_sponsor .img_sponsor .rectangle_red,
.col_eventi_sponsored .box_sponsor .img_sponsor .rectangle_red,
.col_bandi_sponsored .box_sponsor_normal .img_sponsor .rectangle_red,
.col_bandi_normal .box_sponsor_normal .img_sponsor .rectangle_red,
.col_eventi_sponsored .box_sponsor_normal .img_sponsor .rectangle_red {
    margin-top: -10px;
    position: absolute;
    width: 30px
}

.col_bandi_sponsored .box_sponsor .img_sponsor .text_sponsor,
.col_bandi_normal .box_sponsor .img_sponsor .text_sponsor,
.col_eventi_sponsored .box_sponsor .img_sponsor .text_sponsor,
.col_bandi_sponsored .box_sponsor_normal .img_sponsor .text_sponsor,
.col_bandi_normal .box_sponsor_normal .img_sponsor .text_sponsor,
.col_eventi_sponsored .box_sponsor_normal .img_sponsor .text_sponsor {
    color: #fff;
    font-size: 14px;
    background: #c33;
    padding: 5px;
    position: absolute;
    font-weight: 900;
    font-family: 'Lato', sans-serif
}

.col_bandi_sponsored .box_sponsor .euro_icon,
.col_bandi_normal .box_sponsor .euro_icon,
.col_eventi_sponsored .box_sponsor .euro_icon,
.col_bandi_sponsored .box_sponsor_normal .euro_icon,
.col_bandi_normal .box_sponsor_normal .euro_icon,
.col_eventi_sponsored .box_sponsor_normal .euro_icon {
    float: right;
    margin-top: -10px;
    margin-right: -10px;
    height: 30px
}

.col_bandi_sponsored .description_sponsor,
.col_bandi_normal .description_sponsor,
.col_eventi_sponsored .description_sponsor {
    height: 160px;
    background: #fff;
    position: relative;
    box-shadow: 2px 2px 5px #ccc
}

.col_bandi_sponsored .description_sponsor .title_sponsored,
.col_bandi_normal .description_sponsor .title_sponsored,
.col_eventi_sponsored .description_sponsor .title_sponsored {
    font-size: 16px;
    font-weight: 900;
    padding: 10px
}

.col_bandi_sponsored .description_sponsor .money_sposored,
.col_bandi_normal .description_sponsor .money_sposored,
.col_eventi_sponsored .description_sponsor .money_sposored {
    position: absolute;
    bottom: 25px;
    left: 10px;
    color: #c33;
    font-size: 14px;
    font-weight: 900
}

.col_bandi_sponsored .description_sponsor .botton_link,
.col_bandi_normal .description_sponsor .botton_link,
.col_eventi_sponsored .description_sponsor .botton_link {
    position: absolute;
    right: 10px;
    bottom: 20px;
    background-color: #676767;
    padding: 5px;
    border-radius: 6px
}

.col_bandi_sponsored .description_sponsor .botton_link a,
.col_bandi_normal .description_sponsor .botton_link a,
.col_eventi_sponsored .description_sponsor .botton_link a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase
}

.col_bandi_sponsored .description_sponsor .botton_link:hover,
.col_bandi_normal .description_sponsor .botton_link:hover,
.col_eventi_sponsored .description_sponsor .botton_link:hover {
    transition: background 0.4s;
    background-color: #fff;
    border: 1px solid #c33;
    padding: 4px
}

.col_bandi_sponsored .description_sponsor .botton_link:hover a,
.col_bandi_normal .description_sponsor .botton_link:hover a,
.col_eventi_sponsored .description_sponsor .botton_link:hover a {
    color: #c33;
    transition: color 0.3s
}

.news_letter {
    display: none !important
}

@media (max-width:991px) {
    .col_bandi_sponsored,
    .col_bandi_normal {
        margin-left: 0;
        margin-right: 0
    }
    .news_letter {
        display: block !important
    }
}

@media (max-width:1024px) {
    .cont-sponsored-search .slick-list,
    .cont-sponsored .slick-list {
        padding: 0 50px 0 0 !important
    }
}

@media (max-width:600px) {
    .cont-sponsored-search .col_bandi_sponsored,
    .cont-sponsored .col_bandi_sponsored,
    .cont-sponsored-search .col_bandi_normal,
    .cont-sponsored .col_bandi_normal {
        padding: 10px 5px 15px !important
    }
    .col_bandi_sponsored,
    .col_eventi_sponsored {
        margin-right: 0 !important
    }
}

@media (max-width:375px) {
    .cont-sponsored-search .slick-list,
    .cont-sponsored .slick-list {
        padding: 25px !important
    }
    .cont-sponsored-search .col_bandi_sponsored,
    .cont-sponsored .col_bandi_sponsored,
    .cont-sponsored-search .col_bandi_normal,
    .cont-sponsored .col_bandi_normal {
        padding: 10px 0 15px !important
    }
}

.show_sponsored {
    height: 0px
}

.col_bandi_sponsored_search,
.col_eventi_sponsored_search {
    padding: 5px
}

.col_bandi_sponsored_search .img_sponsor,
.col_eventi_sponsored_search .img_sponsor {
    width: 50%;
    height: 125px;
    background-position: center center;
    background-size: cover;
    float: left
}

.col_bandi_sponsored_search .img_sponsor .rectangle_red,
.col_eventi_sponsored_search .img_sponsor .rectangle_red {
    width: 20px;
    margin-top: -7px
}

.col_bandi_sponsored_search .img_sponsor .text_sponsor,
.col_eventi_sponsored_search .img_sponsor .text_sponsor {
    color: #fff;
    font-size: 10px;
    background: #c33;
    padding: 5px;
    position: absolute;
    font-weight: 900;
    font-family: 'Lato', sans-serif
}

.col_bandi_sponsored_search .description_sponsor,
.col_eventi_sponsored_search .description_sponsor {
    position: relative;
    width: 50%;
    float: left;
    padding: 5px;
    height: 125px;
    background-color: #fff
}

.col_bandi_sponsored_search .description_sponsor .money_sposored,
.col_eventi_sponsored_search .description_sponsor .money_sposored {
    position: absolute;
    bottom: 0;
    left: 4px;
    font-weight: 900;
    color: #c33
}

.col_bandi_sponsored_search .description_sponsor .botton_link,
.col_eventi_sponsored_search .description_sponsor .botton_link {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background-color: #676767;
    padding: 3px;
    border-radius: 6px
}

.col_bandi_sponsored_search .description_sponsor .botton_link a,
.col_eventi_sponsored_search .description_sponsor .botton_link a {
    color: #fff
}

.col_bandi_sponsored_search .description_sponsor .botton_link:hover,
.col_eventi_sponsored_search .description_sponsor .botton_link:hover {
    background: #fff;
    transition: background 0.4s;
    border: solid 1px #c33;
    padding: 2px
}

.col_bandi_sponsored_search .description_sponsor .botton_link:hover a,
.col_eventi_sponsored_search .description_sponsor .botton_link:hover a {
    color: #c33;
    transition: color 0.3s
}

.rating h4 {
    display: none
}

.rating .rating-form {
    margin: 0;
    float: left
}

.rating .success {
    float: left;
    margin-top: 3px
}

.rating form {
    margin: 2px !important
}

.rating form .description {
    display: none !important
}

.rating form .rating-item {
    display: inline-block;
    padding: 0 2px
}

.rating form .btn-default {
    padding: 0;
    background: #fff;
    border: none
}

.rating form .btn-default:hover {
    color: #c33;
    transition: color 0.5s
}

.rating .rating-result .mr-star-rating {
    display: none
}

.rating .rating-result .star-result {
    display: none
}

.rating .rating-result .count {
    margin-top: 3px
}

.col_bandi_sponsored_search:hover .title_sponsored,
.col_eventi_sponsored_search:hover .title_sponsored {
    color: #c33;
    transition: color 0.5s
}

.col_bandi_sponsored:hover .title_sponsored,
.col_bandi_normal:hover .title_sponsored {
    color: #c33;
    transition: color 0.5s
}

.btn_charge {
    background-color: #c33;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    margin: 50px 0;
    border: solid 1px #c33;
    width: 98%;
    margin-right: auto
}

.btn_charge:hover,
.btn_charge:focus {
    background-color: #be2f2f;
    border: solid 1px #be2f2f
}

.detail_bandi {
    background-color: #dbdee5
}

.detail_bandi .grey_box {
    padding: 30px 20px 15px
}

.detail_bandi .box_detail {
    display: inline-block;
    margin: 0 22px 15px;
    padding: 20px 20px 0
}

.detail_bandi .box_detail .cont_detail .late_dx_arrow {
    float: right;
    margin-right: -20px;
    height: 40px;
    margin-top: -15px
}

.detail_bandi .box_detail .cont_detail .value_bandi {
    font-size: 80px;
    color: #5f6269;
    font-family: 'Droid Sans', sans-serif;
    padding: 0 15px;
    font-weight: bold;
    background-color: #67ff9a;
    text-align: center
}

.detail_bandi .box_detail .cont_detail .money_bandi {
    font-size: 80px;
    color: #5f6269;
    font-family: 'Droid Sans', sans-serif;
    line-height: 70px;
    padding: 0 15px;
    font-weight: bold;
    background-color: #67ff9a;
    text-align: center;
    height: 119px
}

.detail_bandi .box_detail .cont_detail .late_sx_arrow {
    bottom: 40px;
    height: 40px;
    float: left;
    margin-top: -25px;
    margin-left: -20px
}

.detail_bandi .box_detail .cont_detail .text_top {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #5f6269;
    float: left;
    margin-top: -23px;
    padding-right: 5px
}

.detail_bandi .box_detail .cont_detail .text_bottom {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #5f6269;
    float: left;
    padding-left: 5px
}

.row-bandi-top {
    margin-top: 115px
}

@media (max-width:768px) {
    .row-bandi-top {
        margin-top: 140px !important
    }
}

.box-7-bando {
    margin-left: 15%
}

.box-7-bando .title_single_bando {
    margin-top: 50px;
    font-size: 34px;
    font-weight: 600;
    display: block;
    font-family: 'Roboto Slab', sans-serif
}

.box-7-bando .detail-bando {
    margin-top: 35px;
    min-height: 35px;
    margin-bottom: 20px
}

.box-7-bando .detail-bando .btn-bando {
    background-color: #c33;
    border-color: #c33;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    float: right
}

.box-7-bando .detail-bando .btn-bando:hover {
    background-color: #be2f2f;
    transition: 0.3s
}

.box-7-bando .detail-bando .icon-bando {
    height: 30px;
    padding-right: 15px
}

.box-7-bando .detail-bando .importo {
    font-size: 14px;
    vertical-align: top;
    padding-top: 5px;
    display: inline-block
}

.box-7-bando .detail-bando .close-bando {
    margin-top: 15px
}

.box-7-bando .detail-bando .close-bando .fa-calendar {
    color: #c33;
    display: inline-block;
    padding-right: 15px;
    font-size: 29px
}

.box-7-bando .detail-bando .close-bando p {
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    padding: 4px 0 0
}

.box-7-bando .img-bando {
    height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 30px 0;
    background-size: cover
}

.box-7-bando .description-title {
    font-weight: 900;
    margin-bottom: 30px
}

.box-7-bando .description-box  {
    font-size: 16px;
    line-height: 27px;
    font-family: 'Droid Sans', sans-serif
}

.box-7-bando .description-box p {
    font-size: 16px;
    line-height: 27px;
    font-family: 'Droid Sans', sans-serif
}

.box-7-bando .description-box img {
    margin-top: 20px;
    margin-bottom: 20px
}

.box-7-bando .description-box h1,
.box-7-bando .description-box h2,
.box-7-bando .description-box h3 {
    margin-top: 20px;
    margin-bottom: 20px
}

.box-7-bando .description-box li {
/*    font-family: 'Roboto Slab', sans-serif;
    font-size: 16px */
}

.box-7-bando .description-box .description {
/*    font-size: 16px;
    line-height: 27px;
    font-family: 'Roboto Slab', sans-serif*/
}

.box-7-bando .description-box .description p {
/*    font-size: 16px;
    line-height: 27px;
    font-family: 'Roboto Slab', sans-serif*/
}

.box-7-bando .description-box .description li {
    /*font-family: 'Roboto Slab', sans-serif;
    font-size: 16px*/
}

.box-5-bando .consigliati {
    margin-top: 170px;
    font-weight: 900;
    margin-bottom: 41px;
    margin-left: 11%
}

.box-5-bando .little-box {
    height: 300px;
    width: 70%;
    background-color: #fff;
    margin-left: 10%;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 2px 2px 5px #ccc
}

.box-5-bando .little-box .box-img {
    height: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px
}

.box-5-bando .little-box .title-cons-bando {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 10px
}

.box-5-bando .little-box .title-cons-bando:hover {
    color: #c33;
    transition: color 0.4s
}

.box-5-bando .little-box .importo-cons-bando {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #c33;
    font-size: 14px;
    font-weight: 900
}

.box-5-bando .little-box .btn-cons-bando {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #c33;
    border-color: #c33;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Lato', sans-serif
}

.box-5-bando .little-box .btn-cons-bando:hover {
    background-color: #fff;
    transition: 0.3s;
    color: #c33
}

@media (max-width:1440px) {
    .box-5-bando .consigliati {
        margin-top: 50px
    }
}

@media (max-width:1440px) {
    .box-5-bando .little-box {
        width: 70% !important
    }
}

@media (max-width:991px) {
    .box-7-bando {
        margin-left: 2% !important;
        margin-right: 2% !important
    }
    .box-5-bando h1.consigliati {
        margin-left: 2%;
        margin-right: 2%;
        margin-top: 20px;
        margin-bottom: 20px
    }
    .box-5-bando .little-box {
        margin-left: 1%;
        margin-right: 1%;
        width: auto !important;
        height: 410px
    }
    .box-5-bando .little-box .box-img {
        height: 250px !important
    }
    .box-5-bando .title-cons-bando {
        font-size: 19px !important
    }
}

@media (max-width:768px) {
    .box-7-bando .title_single_bando {
        margin-top: 30px;
        font-size: 30px
    }
    .box-7-bando .detail-bando {
        margin-top: 20px
    }
    .box-7-bando .detail-bando .btn-bando {
        font-size: 12px;
        padding: 5px 8px
    }
    .box-7-bando .img-bando {
        margin: 20px 0
    }
}

#tribe-events-pg-template {
    max-width: 100% !important
}

@media (max-width:768px) {
    #tribe-events-pg-template {
        padding: 0 !important
    }
}

.box_month {
    position: sticky;
    height: 65px;
    display: inline-block;
    margin: 3px;
    padding-top: 8px;
    overflow: hidden
}

.box_month .cont_month {
    height: 60px
}

.box_month .cont_month .late_dx_arrow {
    float: right;
    margin-left: -70px;
    height: 40px;
    transform: translateY(15px)
}

.box_month .cont_month .description {
    font-size: 25px;
    color: #676767;
    line-height: 50px;
    padding: 1px 10px;
    font-weight: bold;
    text-transform: uppercase;
    background: #dcdcdc;
    margin: 15px;
    font-family: 'Roboto Slab', sans-serif
}

.box_month .cont_month .late_sx_arrow {
    position: relative;
    bottom: 57px;
    height: 40px
}

.evidence_box .row-shadow {
    box-shadow: 2px 2px 5px #ccc;
    width: 99%;
    margin-bottom: 5px
}

.evidence_box .col_evidence_dx_event {
    background-color: #fff;
    height: 350px;
    margin-top: 10px;
    padding-top: 10px;
    position: relative
}

.evidence_box .col_evidence_dx_event .event-cost {
    position: absolute;
    right: 30px;
    top: 18px;
    background: #ddd;
    padding: 7px;
    font-weight: 600;
    border-radius: 5px
}

.evidence_box .col_evidence_dx_event .text_evidence_event {
    color: #c33;
    padding: 0px 95px 0 15px;
    font-weight: 900;
    line-height: 30px;
    font-family: 'Lato', sans-serif
}

.evidence_box .col_evidence_dx_event .date-event {
    font-weight: 800;
    padding: 0 15px;
    margin: 2px 0;
    font-size: 13px
}

.evidence_box .col_evidence_dx_event .andress-event {
    display: inline-block;
    padding: 0 5px 0 15px;
    font-weight: 900;
    font-size: 13px;
    margin: 2px 0 5px;
    font-family: 'Lato', sans-serif
}

.evidence_box .col_evidence_dx_event .maps-event {
    color: #c33;
    display: inline-block;
    font-size: 13px;
    margin: 2px 0 5px;
    font-family: 'Lato', sans-serif
}

.evidence_box .col_evidence_dx_event .sub_text_evidence_event {
    padding: 0 20px 0 15px
}

.evidence_box .col_evidence_dx_event .link-event p {
    position: absolute;
    right: 30px;
    bottom: 20px;
    background: #676767;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-size: 'Lato', sans-serif
}

.evidence_box .col_evidence_dx_event .link-event:hover p {
    background: #fff;
    padding: 9px;
    color: #c33;
    transition: color 0.5s;
    transition: background 0.3s;
    border: 1px solid #c33
}

@media (max-width:991px) {
    .evidence_box {
        display: none
    }
    .evidence_box .row-shadow {
        display: none
    }
}

.description_sponsor .place_event {
    position: absolute;
    bottom: 25px;
    left: 10px;
    color: #676767;
    font-size: 14px;
    font-weight: 900;
    font-family: 'Lato', sans-serif
}

.description_sponsor .botton_link_event {
    position: absolute;
    right: 10px;
    bottom: 20px;
    background-color: #676767;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    cursor: pointer
}

.description_sponsor .botton_link_event a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px
}

.description_sponsor .botton_link_event:hover {
    background-color: #fff;
    border: solid 1px #c33;
    transition: background 0.2s;
    padding: 4px 9px
}

.description_sponsor .botton_link_event:hover a {
    color: #c33;
    transition: color 0.3s
}

.box-event {
    position: relative;
    min-height: 300px;
    margin: 10px 0;
    background-color: #fff;
    width: 99%;
    box-shadow: 2px 2px 5px #ccc
}

.box-event .header-box-event {
    padding: 10px
}

.box-event .header-box-event .title-event {
    color: #c33;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    padding: 0 110px 0 0
}

.box-event .header-box-event .event-cost {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 14px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    padding: 8px 13px;
    background-color: #ddd;
    border-radius: 10px
}

.box-event .header-box-event .date-event {
    font-weight: 900
}

.box-event .header-box-event .andress-event {
    display: inline-block;
    font-weight: 900
}

.box-event .header-box-event .maps-event {
    display: inline-block;
    color: #c33
}

.body-box-event {
    padding: 0 10px
}

.body-box-event .img-event {
    height: 200px;
    width: 30%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    float: left
}

.body-box-event .description-event {
    float: left;
    width: 70%;
    padding: 0 20px;
    text-align: justify;
    line-height: 20px;
    font-weight: 200;
    font-family: 'Droid Sans', sans-serif;
    font-size: 16px
}

.body-box-event .botton_link_event {
    position: absolute;
    right: 35px;
    bottom: 20px;
    background-color: #676767;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    cursor: pointer
}

.body-box-event .botton_link_event a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px
}

.body-box-event .botton_link_event:hover {
    background-color: #fff;
    border: solid 1px #c33;
    transition: background 0.2s;
    padding: 4px 9px
}

.body-box-event .botton_link_event:hover a {
    color: #c33;
    transition: color 0.3s
}

.loader-spin {
    display: none;
    text-align: center;
    color: #c33;
    font-size: 20px;
    margin: 20px
}

.loader-spin-top {
    display: none;
    text-align: center;
    color: #c33;
    font-size: 20px;
    margin: 20px
}

@media (max-width:991px) {
    .box-event .header-box-event .title-event {
        padding: 0 10px
    }
    .box-event .header-box-event .event-cost {
        width: 100px;
        position: static;
        text-align: center;
        border-radius: 0px
    }
    .box-event .body-box-event .img-event {
        width: 100%;
        float: none
    }
    .box-event .body-box-event .description-event {
        width: 100%;
        float: none;
        margin-top: 5px;
        padding: 10px 0
    }
    .box-event .body-box-event .box-button {
        position: relative;
        height: 45px
    }
    .box-event .body-box-event .box-button .botton_link_event {
        right: 0px;
        bottom: 10px
    }
}

@media (max-width:768px) {
    .box-event .header-box-event .title-event {
        padding: 0 !important
    }
}

@media (max-width:500px) {
    .box-event .title-event {
        font-size: 18px;
        padding: 0px
    }
    .box-event .event-cost {
        zoom: 0.8;
        margin-bottom: 10px
    }
    .box-event .body-box-event {
        zoom: 0.8
    }
}

.single-agenda .col-lg-8 {
    padding: 35px 50px
}

.single-agenda .detail-bando .event-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    width: 85%
}

.single-agenda .detail-bando .btn_event_mobile {
    display: none
}

.single-agenda .detail-bando .btn-event {
    background-color: #c33;
    border-color: #c33;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    float: right;
    margin-top: 15px
}

.single-agenda .detail-bando .btn-event:hover {
    background-color: #be2f2f;
    transition: 0.3s
}

.single-agenda .detail-bando .link-andress {
    font-weight: 500
}

.single-agenda .detail-bando .link-andress:hover .place-event {
    color: #c33;
    transition: color 0.3s
}

.single-agenda .detail-bando .fa-map-marker {
    color: #c33;
    display: inline-block;
    padding: 0 6px;
    margin-bottom: 15px
}

.single-agenda .detail-bando .place-event {
    display: inline-block;
    padding: 0 20px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    margin-bottom: 15px
}

.single-agenda .detail-bando .icon-clock {
    height: 25px
}

.single-agenda .detail-bando .date-event {
    display: inline-block;
    padding: 0 20px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    margin-bottom: 15px;
    vertical-align: top
}

.single-agenda .content-event .event-img {
    height: 400px;
    height: 500px;
    background-size: cover;
    margin-bottom: 30px;
    margin-top: 50px;
    background-position: center center
}

.single-agenda .content-event li {
    font-family: 'Droid Sans', sans-serif;
    font-size: 16px
}

.single-agenda .content-event .description {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 20px
}

.single-agenda .content-event .content {
    font-size: 16px;
    text-align: left !important;
    padding-right: 40px;
    font-family: 'Droid Sans', sans-serif;
    line-height: 27px
}

.single-agenda .content-event .content li {
    font-family: 'Droid Sans', sans-serif;
    font-size: 16px
}

.single-agenda .content-event .content p {
    font-size: 16px;
    text-align: left !important;
    padding-right: 40px;
    font-family: 'Droid Sans', sans-serif;
    line-height: 27px
}

.single-agenda .content-event .content h1,
.single-agenda .content-event .content h2,
.single-agenda .content-event .content h3,
.single-agenda .content-event .content img {
    margin-top: 20px;
    margin-bottom: 20px
}

.single-agenda .col-lg-4 {
    padding: 40px 20px
}

.single-agenda .col-lg-4 .next-event {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px
}

.single-agenda .col-lg-4 .color-event-1 {
    padding: 10px;
    background: #fff;
    width: 400px;
    border-left: 4px solid #77bae5;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-radius: 5px
}

.single-agenda .col-lg-4 .color-event-2 {
    padding: 10px;
    background: #fff;
    width: 400px;
    border-left: 4px solid #c33;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-radius: 5px
}

.single-agenda .col-lg-4 .color-event-3 {
    padding: 10px;
    background: #fff;
    width: 400px;
    border-left: 4px solid #d86e58;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-radius: 5px
}

.single-agenda .col-lg-4 .color-event-4 {
    padding: 10px;
    background: #fff;
    width: 400px;
    border-left: 4px solid #97b78e;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-radius: 5px
}

.single-agenda .col-lg-4 .color-event-5 {
    padding: 10px;
    background: #fff;
    width: 400px;
    border-left: 4px solid #edd14c;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-radius: 5px
}

.single-agenda .col-lg-4 .color-event-6 {
    padding: 10px;
    background: #fff;
    width: 400px;
    border-left: 4px solid #e66953;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-radius: 5px
}

.single-agenda .col-lg-4 .card-event {
    min-height: 160px
}

.single-agenda .col-lg-4 .card-event .col-left {
    width: 18%;
    min-height: 100px;
    float: left
}

.single-agenda .col-lg-4 .card-event .col-left .event-date .num-card {
    color: #a8a7a3;
    font-weight: 900;
    font-size: 24px;
    padding-left: 2px
}

.single-agenda .col-lg-4 .card-event .col-left .event-date .month-card {
    color: #a8a7a3;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif
}

.single-agenda .col-lg-4 .card-event .col-right {
    width: 82%;
    min-height: 150px;
    float: left
}

.single-agenda .col-lg-4 .card-event .col-right .name-event {
    font-size: 20px;
    font-weight: 900;
    padding-top: 3px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif
}

.single-agenda .col-lg-4 .card-event .col-right .name-event:hover {
    color: #c33;
    transition: color 0.4s
}

.single-agenda .col-lg-4 .card-event .col-right .start-event {
    margin-top: 10px
}

.single-agenda .col-lg-4 .card-event .col-right .start-event .fa-clock-o {
    color: #a8a7a3;
    font-size: 16px;
    display: inline-block;
    padding-right: 5px
}

.single-agenda .col-lg-4 .card-event .col-right .start-event .time-event {
    display: inline-block;
    color: #a8a7a3;
    font-size: 14px;
    font-family: 'Roboto', sans-serif
}

.single-agenda .col-lg-4 .card-event .col-right .place-event .fa-map-marker {
    color: #a8a7a3;
    font-size: 16px;
    display: inline-block;
    padding-left: 2px;
    padding-right: 8px
}

.single-agenda .col-lg-4 .card-event .col-right .place-event .place-event {
    display: inline-block;
    color: #a8a7a3;
    font-size: 14px;
    font-family: 'Roboto', sans-serif
}

@media (max-width:768px) {
    .detail-bando .event-title {
        width: 100% !important
    }
    .detail-bando .btn_event .btn-event {
        display: none
    }
    .detail-bando .btn_event_mobile {
        display: block !important
    }
    .detail-bando .btn_event_mobile .btn-event {
        float: none !important;
        margin-top: 0;
        margin-bottom: 15px
    }
}

.box-google-maps-mobile {
    display: none
}

@media (max-width:991px) {
    .box-google-maps-desktop {
        display: none
    }
    .box-google-maps-mobile {
        display: block
    }
}

@media (max-width:1350px) {
    .single-agenda .col-md-7 {
        padding: 35px 10px !important
    }
    .single-agenda .col-md-7 .event-img {
        margin-top: 10px !important
    }
    .single-agenda .col-md-5 {
        padding: 40px 20px !important
    }
    .single-agenda .col-md-5 .card-event {
        width: 100% !important
    }
}

@media (max-width:991px) {
    .single-agenda .col-md-7,
    .single-agenda .col-md-5 {
        padding: 15px !important
    }
    .single-agenda .col-md-7 .content {
        padding-right: 0px !important
    }
    .single-agenda .col-md-7 .content p {
        padding-right: 0px !important
    }
}

@media (max-width:425px) {
    .single-agenda .col-md-5 .card-event {
        min-height: 175px;
        padding: 5px
    }
    .single-agenda .col-md-5 .card-event .col-right .name-event {
        font-size: 18px
    }
    .single-agenda .col-md-5 .card-event .col-right .start-event {
        margin-top: 5px
    }
    .single-agenda .col-md-5 .card-event .col-right p.place-event {
        width: 80%
    }
}

.tribe-bar-filters {
    left: auto !important;
    right: auto !important;
    width: 100% !important
}

#tribe-events-content .content img {
    margin: 30px 0
}

.tribe-bar-submit .tribe-events-button {
    background-color: #c33 !important
}

.tribe-events-notices {
    background: #ffdddd;
    border: 1px solid #ef6f6f;
    color: #c33
}

#tribe-events-footer .tribe-events-nav-next {
    position: absolute;
    right: 0
}

.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-],
.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-]>a,
#tribe-bar-form .tribe-bar-submit input[type=submit] {
    background-color: #c33 !important
}

.tribe-events-calendar:hover td.tribe-events-present:hover div[id*=tribe-events-daynum-],
.tribe-events-calendar:hover td.tribe-events-present:hover div[id*=tribe-events-daynum-]>a:hover,
#tribe-bar-form:hover .tribe-bar-submit:hover input[type=submit] {
    background-color: #ff3636 !important;
    transition: background 0.3s;
    color: #fff !important
}

#tribe-events .tribe-events-button,
.tribe-events-button,
.tribe-events-back a,
#tribe-events-content .reserveLink a,
#tribe-events-footer .tribe-events-sub-nav li a {
    background-color: #c33 !important
}

#tribe-events:hover .tribe-events-button:hover,
.tribe-events-button:hover,
.tribe-events-back a:hover,
#tribe-events-content:hover .reserveLink a:hover,
#tribe-events-footer:hover .tribe-events-sub-nav li a:hover {
    background-color: #ff3636 !important;
    transition: background 0.3s;
    color: #fff !important
}

@media (max-width:425px) {
    .reserveLink {
        float: none !important
    }
    .post-meta {
        min-height: 85px !important
    }
}

.event-next-nav {
    background-color: #c33;
    background-image: none;
    border: 0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: normal;
    padding: 6px 9px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    zoom: 1;
    margin: 5px 5px 5px 0
}

.event-next-nav a {
    color: #fff !important
}

.event-next-nav:hover {
    background-color: #ff3636;
    transition: background 0.3s
}

.tribe-events-month-event-title:hover a {
    color: #c33 !important;
    transition: color 0.3s
}

.col_tribe_event .tribe-events-cal-links a {
    float: initial
}

@media (max-width:991px) {
    .tribe-bar-collapse #tribe-bar-collapse-toggle {
        width: 100% !important
    }
}

@media (max-width:768px) {
    #tribe-events-footer:after,
    #tribe-events-header:after {
        background: transparent !important
    }
    #tribe-events-footer:before,
    #tribe-events-header:before {
        background: transparent !important
    }
}

.post-tags {
    text-align: center;
    margin-bottom: 5px
}

.post-tags a:hover {
    color: #c33;
    transition: color 0.3s
}

.row-agenda-top {
    margin-top: 115px
}

@media (max-width:991px) {
    .row-agenda-top {
        margin-top: 130px
    }
}

.click-pagination {
    font-weight: bold;
    cursor: pointer
}

.section-big-navbar {
    height: auto;
    position: absolute;
    width: 100%;
    z-index: 99999999;
    background: #fff
}

.section-small-navbar {
    height: auto;
    position: fixed;
    width: 100%;
    top: 80px;
    z-index: 99999999999;
    background: #fff
}

@media (max-width:991px) {
    .box-search .container {
        padding: 0 !important
    }
    .box-result .box_3_content {
        padding: 0 !important
    }
}

.box-search .search-input,
.box-search-collapse .search-input {
    margin-bottom: 30px;
    margin-top: 40px;
    position: relative
}

.box-search .search-input .lens-search,
.box-search-collapse .search-input .lens-search {
    background: none;
    border: none;
    cursor: auto
}

.box-search .search-input .btn-search,
.box-search-collapse .search-input .btn-search {
    background: #c33;
    border: #c33;
    border-radius: 5px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    vertical-align: top;
    padding: 2px 35px;
    margin-top: 9px;
    margin-left: 10px
}

.box-search .search-input .lens-search:focus,
.box-search-collapse .search-input .lens-search:focus {
    outline: none
}

.box-search .search-input .fa-search,
.box-search-collapse .search-input .fa-search {
    display: inline-block;
    color: #c33;
    font-size: 45px
}

.box-search .search-input .form_search,
.box-search-collapse .search-input .form_search {
    display: inline-block;
    margin-top: 0;
    padding: 0px 0 5px 5px;
    transform: translateY(-5px);
    position: relative
}

.box-search .search-input .in-search,
.box-search-collapse .search-input .in-search {
    font-size: 20px;
    color: #c33;
    background-color: transparent;
    border: none;
    width: 330px;
    text-align: center
}

.box-search .search-input .spin-search,
.box-search-collapse .search-input .spin-search {
    color: #c33;
    position: absolute;
    right: -5px;
    top: 0;
    display: none
}

.box-search .search-input .in-search,
.box-search-collapse .search-input .in-search {
    outline: none !important
}

.box-search .search-input::-webkit-input-placeholder,
.box-search-collapse .search-input::-webkit-input-placeholder {
    color: #c33
}

.box-search .search-input::-moz-placeholder,
.box-search-collapse .search-input::-moz-placeholder {
    color: #c33
}

.box-search .search-input:-ms-input-placeholder,
.box-search-collapse .search-input:-ms-input-placeholder {
    color: #c33
}

.box-search .search-input:-moz-placeholder,
.box-search-collapse .search-input:-moz-placeholder {
    color: #c33
}

.box-search .best-search,
.box-search-collapse .best-search {
    color: #c33;
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400
}

.box-search .show-word-search,
.box-search-collapse .show-word-search {
    display: none;
    font-size: 16px;
    margin: 10px 0
}

.box-search .show-word-search .txt-search,
.box-search-collapse .show-word-search .txt-search {
    font-weight: bold;
    color: #c33
}

.box-search .filter-search,
.box-search-collapse .filter-search {
    color: #c33;
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 400
}

.box-search .popolar-search,
.box-search-collapse .popolar-search {
    margin-bottom: 35px
}

.box-search .popolar-search .word-value,
.box-search-collapse .popolar-search .word-value {
    margin-left: -5px;
    color: #000
}

.box-search .popolar-search h3,
.box-search-collapse .popolar-search h3 {
    display: inline-block;
    width: 16%;
    font-size: 20px;
    font-weight: 400;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 0
}

.box-search .popolar-search h3 span,
.box-search-collapse .popolar-search h3 span {
    cursor: pointer;
    color: #c33;
    font-family: 'Lato', sans-serif
}

.box-search .popolar-search h3:hover,
.box-search-collapse .popolar-search h3:hover {
    border: solid 1px #cc3333;
    border-radius: 5px;
    margin-top: 19px;
    margin-bottom: 9px;
    cursor: pointer
}

.box-search .popolar-search h3:hover .word-value,
.box-search-collapse .popolar-search h3:hover .word-value {
    color: #c33;
    transition: color 0.2s
}

.box-search .menu_search_category,
.box-search-collapse .menu_search_category {
    list-style-type: none;
    padding: 0px;
    margin-bottom: 30px
}

.box-search .menu_search_category li,
.box-search-collapse .menu_search_category li {
    display: inline-block;
    background-color: #c33;
    padding: 5px 8px;
    border-radius: 5px;
    margin: 0 15px;
    cursor: pointer;
    border: 1px solid #fff;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: #fff
}

.box-search .menu_search_category .menu-select-active,
.box-search-collapse .menu_search_category .menu-select-active {
    background-color: #fff;
    transition: 0.3s;
    border: 1px solid #c33;
    color: #c33
}

.box-search .menu_search_category .menu-select-active a,
.box-search-collapse .menu_search_category .menu-select-active a {
    color: #c33 !important;
    transition: 0.3s
}

.box-arrow-loading {
    position: relative;
    background: white;
    height: 400px
}

.box-arrow-loading .ld-spin {
    position: absolute;
    color: #c33;
    z-index: 999;
    margin-top: 80px;
    right: 0;
    left: 0
}

.box-arrow-loading-bandi {
    position: relative;
    background: #f8f9f4;
    height: 400px;
    overflow: hidden
}

.box-arrow-loading-bandi .ld-spin {
    position: absolute;
    color: #c33;
    z-index: 999;
    margin-top: 80px;
    right: 0;
    left: 0
}

.box-search.collapse.in {
    display: block;
    visibility: visible;
    position: absolute;
    z-index: 999999;
    background: #fff;
    left: 0;
    right: 0;
    height: 100%;
    position: fixed;
    overflow: hidden
}

.box-search-collapse.collapse.in {
    display: block;
    visibility: visible;
    z-index: 999999;
    left: 0;
    right: 0;
    height: 100%;
    position: absolute
}

.box-search-collapse.collapse.in .container-fluid {
    background: #fff
}

.popup-search {
    display: none;
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 999;
    top: 60px;
    bottom: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.popup-search .mCSB_container {
    margin-right: 10px !important
}

.popup-search-sponsor {
    top: 80px !important
}

.popup-search-home {
    display: none;
    width: 100%;
    overflow-y: scroll;
    position: fixed;
    z-index: 999;
    top: 179px;
    bottom: 0;
    background: #fff;
    -webkit-overflow-scrolling: touch
}

.popup-search-home-sponsor {
    top: 209px !important
}

@media (max-width:1024px) {
    .popup-search-home {
        top: 60px
    }
    .popup-search-home-sponsor {
        top: 90px !important
    }
    .pagination-ajax {
        margin-top: 10px
    }
}

.search-ref.fa-times {
    display: none
}

@media (max-width:1024px) {
    .popup-search {
        top: 60px
    }
    .popup-search-sponsor {
        top: 90px !important
    }
}

@media (max-width:991px) {
    .popolar-search {
        margin-bottom: 20px !important
    }
    .popolar-search h3 {
        width: 18% !important;
        font-size: 17px !important
    }
    .popolar-search h3:hover {
        border: none !important;
        border-radius: none !important;
        margin-top: none !important;
        margin-bottom: none !important
    }
    .popolar-search h3:hover .word-value {
        color: #000 !important
    }
    .menu_search_category li {
        margin: 5px !important;
        width: 30% !important
    }
}

@media (max-width:768px) {
    .popolar-search h3 {
        width: 18% !important;
        font-size: 18px !important
    }
    .search-input {
        margin-bottom: 10px !important
    }
    .search-input .in-search {
        width: 280px !important;
        font-size: 19px !important;
        margin-right: 20px
    }
    .show-word-search-2 {
        margin-bottom: 20px
    }
    .show-word-search-2 .txt-search-2 {
        font-weight: bold;
        color: #c33
    }
}

@media (max-width:700px) {
    .popolar-search h3 {
        width: 25% !important;
        font-size: 16px !important;
        margin: 5px !important;
        padding: 2px 0 !important
    }
}

@media (max-width:500px) {
    .menu_search_category .menu-item {
        width: 44% !important;
        padding: 9px 8px !important;
        margin: 8px 10px !important
    }
    .search-input .in-search {
        width: 250px !important;
        padding-right: 20px
    }
}

@media (max-width:410px) {
    .menu_search_category .menu-item {
        width: 42% !important
    }
}

@media (max-width:425px) {
    .search-input {
        float: left
    }
    .search-input .lens-search {
        padding-left: 0px
    }
    .search-input .lens-search .fa-search {
        font-size: 30px !important
    }
    .search-input .in-search {
        font-size: 17px !important;
        width: 250px !important
    }
    .search-input .spin-search {
        right: 0 !important
    }
    .best-search {
        text-align: left
    }
    .popolar-search .word-search {
        width: 96% !important;
        text-align: left
    }
    .filter-search {
        text-align: left
    }
    .show-word-search {
        text-align: left
    }
    .menu_search_category .menu-item {
        font-size: 14px !important
    }
}

@media (max-width:375px) {
    .search-input .lens-search .fa-search {
        font-size: 25px !important
    }
    .search-input .in-search {
        font-size: 14px !important;
        width: 190px !important;
        padding-right: 10px;
        margin-right: 25px
    }
    .menu_search_category .menu-item {
        font-size: 11px !important
    }
}

.box-error-search .error-2 {
    font-size: 24px
}

.no-result {
    overflow: hidden
}

.no-result .text-no-found {
    margin: 20px
}

@media (max-width:991px) {
    .col_footer {
        padding: 0 5px !important
    }
}

.col_footer_autori {
    padding: 30px 0
}

.col_footer {
    padding: 10px 0 40px
}

@media (max-width:768px) {
    .col_footer h2 {
        margin: 20px 0
    }
}

.name_author {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    margin: 2px
}

.widget_title {
    color: #fff
}

.container_margin {
    margin-top: 120px
}

@media (max-width:1024px) {
    .container_margin {
        margin-top: 150px
    }
}

.category:hover {
    color: #c33;
    transition: color 0.5s
}

.title_name_category {
    color: #c33 !important
}

.author {
    font-weight: bold
}

.div_404 {
    min-height: 400px;
    overflow: hidden
}

.title_404 {
    color: #c33
}

.rocket_404 {
    height: 200px;
    margin: 30px 0
}

.home_page_404 {
    color: #cc3333;
    margin-bottom: 20px
}

.link_home:hover .home_page_404 {
    font-weight: 900;
    transition: font-weight .5s
}

#os-share-count {
    padding: 0px 10px !important;
    margin: -5px 5px 0 1px
}

.cont_standard {
    margin-top: 100px;
    margin-bottom: 50px
}

.cont_standard .title_standard {
    font-size: 34px;
    font-weight: 600;
    font-family: 'Roboto Slab', sans-serif;
    margin-bottom: 30px
}

.cont_standard .content_standard {
    text-align: left;
    font-size: 18px;
    font-family: 'Droid Sans', sans-serif;
    line-height: 25px
}

.col-xs-20,
.col-sm-20,
.col-md-20,
.col-lg-20 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px
}

.col-xs-20 {
    width: 20%;
    float: left
}

@media (min-width:768px) {
    .col-sm-20 {
        width: 20%;
        float: left
    }
}

@media (min-width:992px) {
    .col-md-20 {
        width: 20%;
        float: left
    }
}

@media (min-width:1200px) {
    .col-lg-20 {
        width: 20%;
        float: left
    }
}


/*# sourceMappingURL=/wp-content/themes/wordpress-bootstrap/library/dist/css/styles.css.map */
