@charset "UTF-8"; /*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 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;
}
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.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;
    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, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.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, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.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;
    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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-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(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.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-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-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(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    100% {
        opacity: 0;
    }
}
@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    100% {
        opacity: 0;
    }
}
.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.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(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.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(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
.img-locations {
    max-width: 70%;
    height: auto;
}
.btn-default:hover,
.btn-default:focus {
    background-color: #fff;
    border-color: #fff;
}
.btn-default:active,
.btn-default.active {
    background-color: #fff;
    border-color: #fff;
}
.btn-default:disabled,
.btn-default[disabled] {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #c44140;
    border-color: #c44140;
}
.btn-primary:active,
.btn-primary.active {
    background-color: #c64948;
    border-color: #c64948;
}
.btn-primary:disabled,
.btn-primary[disabled] {
    background-color: #712423;
    border-color: #712423;
}
.btn-success:hover,
.btn-success:focus {
    background-color: #87cb87;
    border-color: #87cb87;
}
.btn-success:active,
.btn-success.active {
    background-color: #8ece8e;
    border-color: #8ece8e;
}
.btn-success:disabled,
.btn-success[disabled] {
    background-color: #449d44;
    border-color: #449d44;
}
.btn-info:hover,
.btn-info:focus {
    background-color: #8ed4e8;
    border-color: #8ed4e8;
}
.btn-info:active,
.btn-info.active {
    background-color: #96d7ea;
    border-color: #96d7ea;
}
.btn-info:disabled,
.btn-info[disabled] {
    background-color: #31b0d5;
    border-color: #31b0d5;
}
.btn-warning:hover,
.btn-warning:focus {
    background-color: #f5c786;
    border-color: #f5c786;
}
.btn-warning:active,
.btn-warning.active {
    background-color: #f6cb90;
    border-color: #f6cb90;
}
.btn-warning:disabled,
.btn-warning[disabled] {
    background-color: #ec971f;
    border-color: #ec971f;
}
.btn-danger:hover,
.btn-danger:focus {
    background-color: #e48481;
    border-color: #e48481;
}
.btn-danger:active,
.btn-danger.active {
    background-color: #e68c8a;
    border-color: #e68c8a;
}
.btn-danger:disabled,
.btn-danger[disabled] {
    background-color: #c9302c;
    border-color: #c9302c;
}
.thumbnail,
.img-thumbnail {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: #f2f2f2;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    background-color: #f2f2f2;
}
.navbar-static-top,
.navbar-fixed-top,
.navbar-fixed-bottom {
    border-radius: 0;
}
@media (max-width: 1199px) {
    .navbar .navbar-nav .open .dropdown-menu > .active > a,
    .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
    }
}
.alert-success {
    background-image: -webkit-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);
    background-image: -o-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);
    background-image: linear-gradient(to bottom, #dff0d8 0, #c8e5bc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
    border-color: #b2dba1;
}
.alert-info {
    background-image: -webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%);
    background-image: -o-linear-gradient(top, #d9edf7 0, #b9def0 100%);
    background-image: linear-gradient(to bottom, #d9edf7 0, #b9def0 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
    border-color: #9acfea;
}
.alert-warning {
    background-image: -webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
    background-image: -o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
    background-image: linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
    border-color: #f5e79e;
}
.alert-danger {
    background-image: -webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
    background-image: -o-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
    background-image: linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
    border-color: #dca7a7;
}
.progress {
    background-image: -webkit-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);
    background-image: linear-gradient(to bottom, #ebebeb 0, #f5f5f5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
}
.progress-bar {
    background-image: -webkit-linear-gradient(top, #98302f 0, #712423 100%);
    background-image: -o-linear-gradient(top, #98302f 0, #712423 100%);
    background-image: linear-gradient(to bottom, #98302f 0, #712423 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff98302f', endColorstr='#ff712423', GradientType=0);
}
.progress-bar-success {
    background-image: -webkit-linear-gradient(top, #5cb85c 0, #449d44 100%);
    background-image: -o-linear-gradient(top, #5cb85c 0, #449d44 100%);
    background-image: linear-gradient(to bottom, #5cb85c 0, #449d44 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
}
.progress-bar-info {
    background-image: -webkit-linear-gradient(top, #5bc0de 0, #31b0d5 100%);
    background-image: -o-linear-gradient(top, #5bc0de 0, #31b0d5 100%);
    background-image: linear-gradient(to bottom, #5bc0de 0, #31b0d5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
}
.progress-bar-warning {
    background-image: -webkit-linear-gradient(top, #f0ad4e 0, #ec971f 100%);
    background-image: -o-linear-gradient(top, #f0ad4e 0, #ec971f 100%);
    background-image: linear-gradient(to bottom, #f0ad4e 0, #ec971f 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
}
.progress-bar-danger {
    background-image: -webkit-linear-gradient(top, #d9534f 0, #c9302c 100%);
    background-image: -o-linear-gradient(top, #d9534f 0, #c9302c 100%);
    background-image: linear-gradient(to bottom, #d9534f 0, #c9302c 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
}
.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);
}
.list-group {
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    text-shadow: 0 -1px 0 #712423;
    background-image: -webkit-linear-gradient(top, #98302f 0, #7b2726 100%);
    background-image: -o-linear-gradient(top, #98302f 0, #7b2726 100%);
    background-image: linear-gradient(to bottom, #98302f 0, #7b2726 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff98302f', endColorstr='#ff7b2726', GradientType=0);
    border-color: #7b2726;
}
.list-group-item.active .badge,
.list-group-item.active:hover .badge,
.list-group-item.active:focus .badge {
    text-shadow: none;
}
.panel {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.panel-default > .panel-heading {
    background-image: -webkit-linear-gradient(top, #fff 0, #f2f2f2 100%);
    background-image: -o-linear-gradient(top, #fff 0, #f2f2f2 100%);
    background-image: linear-gradient(to bottom, #fff 0, #f2f2f2 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
}
.panel-primary > .panel-heading {
    background-image: -webkit-linear-gradient(top, #98302f 0, #852a29 100%);
    background-image: -o-linear-gradient(top, #98302f 0, #852a29 100%);
    background-image: linear-gradient(to bottom, #98302f 0, #852a29 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff98302f', endColorstr='#ff852a29', GradientType=0);
}
.panel-success > .panel-heading {
    background-image: -webkit-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);
    background-image: -o-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);
    background-image: linear-gradient(to bottom, #dff0d8 0, #d0e9c6 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
}
.panel-info > .panel-heading {
    background-image: -webkit-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);
    background-image: -o-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);
    background-image: linear-gradient(to bottom, #d9edf7 0, #c4e3f3 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
}
.panel-warning > .panel-heading {
    background-image: -webkit-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);
    background-image: -o-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);
    background-image: linear-gradient(to bottom, #fcf8e3 0, #faf2cc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
}
.panel-danger > .panel-heading {
    background-image: -webkit-linear-gradient(top, #f2dede 0, #ebcccc 100%);
    background-image: -o-linear-gradient(top, #f2dede 0, #ebcccc 100%);
    background-image: linear-gradient(to bottom, #f2dede 0, #ebcccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
}
.well {
    background-image: -webkit-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);
    background-image: linear-gradient(to bottom, #e8e8e8 0, #f5f5f5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
    border-color: #dcdcdc;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
}
.site-header {
    position: fixed;
    z-index: 1;
    top: 0;
    width: 100%;
    background: #fff;
}
.site-content {
    margin-top: 80px;
} /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
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: 700;
}
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 {
    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;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
}
optgroup {
    font-weight: 700;
}
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;
    }
    .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;
    }
}
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    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.42857143;
    border-radius: 2px;
    -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: #98302f;
    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;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}
.btn-default {
    color: #98302f;
    background-color: #fff;
    border-color: #98302f;
}
.btn-default:focus,
.btn-default.focus {
    color: #98302f;
    background-color: #e6e6e6;
    border-color: #371111;
}
.btn-default:hover {
    color: #98302f;
    background-color: #e6e6e6;
    border-color: #692121;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #98302f;
    background-color: #e6e6e6;
    border-color: #692121;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
    color: #98302f;
    background-color: #d4d4d4;
    border-color: #371111;
}
.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: #98302f;
}
.btn-default .badge {
    color: #fff;
    background-color: #98302f;
}
.btn-primary {
    color: #fff;
    background-color: #98302f;
    border-color: #98302f;
}
.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #712423;
    border-color: #371111;
}
.btn-primary:hover {
    color: #fff;
    background-color: #712423;
    border-color: #692121;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #712423;
    border-color: #692121;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
    color: #fff;
    background-color: #561b1b;
    border-color: #371111;
}
.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: #98302f;
    border-color: #98302f;
}
.btn-primary .badge {
    color: #98302f;
    background-color: #fff;
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625;
}
.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
    color: #fff;
    background-color: #398439;
    border-color: #255625;
}
.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:focus,
.btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85;
}
.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85;
}
.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:focus,
.btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d;
}
.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d;
}
.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:focus,
.btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19;
}
.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19;
}
.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: #98302f;
    font-weight: 400;
    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: #371111;
    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 {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 4px;
}
.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}
.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%;
}
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: 700;
}
input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}
input[type="file"] {
    display: block;
}
input[type="range"] {
    display: block;
    width: 100%;
}
select[multiple],
select[size] {
    height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 2px;
    -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 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 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 {
    background-color: #eee;
    opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed;
}
textarea.form-control {
    height: auto;
}
input[type="search"] {
    -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px;
    }
    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: 30px;
    }
    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        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: 400;
    cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -23px;
    margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    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;
    min-height: 34px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0;
}
.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}
select.input-sm {
    height: 30px;
    line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}
.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}
.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto;
}
.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 4px;
}
select.input-lg {
    height: 46px;
    line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}
.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 4px;
}
.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto;
}
.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.33;
}
.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,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .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: red;
}
.has-error .form-control {
    border-color: red;
    -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: #c00;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f66;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f66;
}
.has-error .input-group-addon {
    color: red;
    border-color: red;
    background-color: #f2dede;
}
.has-error .form-control-feedback {
    color: red;
}
.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: -15px;
    margin-right: -15px;
}
@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: 15px;
}
@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.3px;
        font-size: 18px;
    }
}
@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px;
    }
}
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 980px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}
.col-xs-12 {
    width: 100%;
}
.col-xs-11 {
    width: 91.66666667%;
}
.col-xs-10 {
    width: 83.33333333%;
}
.col-xs-9 {
    width: 75%;
}
.col-xs-8 {
    width: 66.66666667%;
}
.col-xs-7 {
    width: 58.33333333%;
}
.col-xs-6 {
    width: 50%;
}
.col-xs-5 {
    width: 41.66666667%;
}
.col-xs-4 {
    width: 33.33333333%;
}
.col-xs-3 {
    width: 25%;
}
.col-xs-2 {
    width: 16.66666667%;
}
.col-xs-1 {
    width: 8.33333333%;
}
.col-xs-pull-12 {
    right: 100%;
}
.col-xs-pull-11 {
    right: 91.66666667%;
}
.col-xs-pull-10 {
    right: 83.33333333%;
}
.col-xs-pull-9 {
    right: 75%;
}
.col-xs-pull-8 {
    right: 66.66666667%;
}
.col-xs-pull-7 {
    right: 58.33333333%;
}
.col-xs-pull-6 {
    right: 50%;
}
.col-xs-pull-5 {
    right: 41.66666667%;
}
.col-xs-pull-4 {
    right: 33.33333333%;
}
.col-xs-pull-3 {
    right: 25%;
}
.col-xs-pull-2 {
    right: 16.66666667%;
}
.col-xs-pull-1 {
    right: 8.33333333%;
}
.col-xs-pull-0 {
    right: auto;
}
.col-xs-push-12 {
    left: 100%;
}
.col-xs-push-11 {
    left: 91.66666667%;
}
.col-xs-push-10 {
    left: 83.33333333%;
}
.col-xs-push-9 {
    left: 75%;
}
.col-xs-push-8 {
    left: 66.66666667%;
}
.col-xs-push-7 {
    left: 58.33333333%;
}
.col-xs-push-6 {
    left: 50%;
}
.col-xs-push-5 {
    left: 41.66666667%;
}
.col-xs-push-4 {
    left: 33.33333333%;
}
.col-xs-push-3 {
    left: 25%;
}
.col-xs-push-2 {
    left: 16.66666667%;
}
.col-xs-push-1 {
    left: 8.33333333%;
}
.col-xs-push-0 {
    left: auto;
}
.col-xs-offset-12 {
    margin-left: 100%;
}
.col-xs-offset-11 {
    margin-left: 91.66666667%;
}
.col-xs-offset-10 {
    margin-left: 83.33333333%;
}
.col-xs-offset-9 {
    margin-left: 75%;
}
.col-xs-offset-8 {
    margin-left: 66.66666667%;
}
.col-xs-offset-7 {
    margin-left: 58.33333333%;
}
.col-xs-offset-6 {
    margin-left: 50%;
}
.col-xs-offset-5 {
    margin-left: 41.66666667%;
}
.col-xs-offset-4 {
    margin-left: 33.33333333%;
}
.col-xs-offset-3 {
    margin-left: 25%;
}
.col-xs-offset-2 {
    margin-left: 16.66666667%;
}
.col-xs-offset-1 {
    margin-left: 8.33333333%;
}
.col-xs-offset-0 {
    margin-left: 0;
}
@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0;
    }
}
@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666667%;
    }
    .col-md-pull-10 {
        right: 83.33333333%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666667%;
    }
    .col-md-pull-7 {
        right: 58.33333333%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.66666667%;
    }
    .col-md-pull-1 {
        right: 8.33333333%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666667%;
    }
    .col-md-push-10 {
        left: 83.33333333%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666667%;
    }
    .col-md-push-7 {
        left: 58.33333333%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666667%;
    }
    .col-md-push-4 {
        left: 33.33333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.66666667%;
    }
    .col-md-push-1 {
        left: 8.33333333%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-left: 0;
    }
}
@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666667%;
    }
    .col-lg-pull-10 {
        right: 83.33333333%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666667%;
    }
    .col-lg-pull-7 {
        right: 58.33333333%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.66666667%;
    }
    .col-lg-pull-1 {
        right: 8.33333333%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666667%;
    }
    .col-lg-push-10 {
        left: 83.33333333%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666667%;
    }
    .col-lg-push-7 {
        left: 58.33333333%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.66666667%;
    }
    .col-lg-push-1 {
        left: 8.33333333%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-left: 0;
    }
}
* {
    -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: transparent;
}
body {
    font-family: OpenSans, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
a {
    color: #98302f;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #371111;
    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 {
    max-width: 100%;
    height: auto;
}
.img-rounded {
    border-radius: 4px;
}
.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.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;
}
[role="button"] {
    cursor: pointer;
}
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: 400;
    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: 0.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: #98302f;
}
a.text-primary:hover,
a.text-primary:focus {
    color: #712423;
}
.text-success {
    color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
    color: #2b542c;
}
.text-info {
    color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
    color: #245269;
}
.text-warning {
    color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
    color: #66512c;
}
.text-danger {
    color: red;
}
a.text-danger:hover,
a.text-danger:focus {
    color: #c00;
}
.bg-primary {
    color: #fff;
    background-color: #98302f;
}
a.bg-primary:hover,
a.bg-primary:focus {
    background-color: #712423;
}
.bg-success {
    background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
    background-color: #c1e2b3;
}
.bg-info {
    background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
    background-color: #afd9ee;
}
.bg-warning {
    background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
    background-color: #f7ecb5;
}
.bg-danger {
    background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
    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.42857143;
}
dt {
    font-weight: 700;
}
dd {
    margin-left: 0;
}
@media (min-width: 1200px) {
    .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.42857143;
    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.42857143;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}
.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
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: 0.35s;
    transition-duration: 0.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 dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.dropup,
.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: 2px;
    -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: 400;
    line-height: 1.42857143;
    color: #98302f;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #852a29;
    background-color: #fff;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #852a29;
    text-decoration: none;
    outline: 0;
    background-color: #fff;
}
.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.42857143;
    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 dashed;
    border-bottom: 4px solid \9;
    content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}
@media (min-width: 1200px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0;
    }
    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}
.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: 4px;
}
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: 2px;
}
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: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 2px;
}
.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 2px;
}
.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 4px;
}
.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 {
    z-index: 2;
    margin-left: -1px;
}
.navbar {
    position: relative;
    min-height: 80px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
@media (min-width: 1200px) {
    .navbar {
        border-radius: 2px;
    }
}
@media (min-width: 1200px) {
    .navbar-header {
        float: left;
    }
}
.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    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: 1200px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }
    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
    .navbar-collapse.in {
        overflow-y: visible;
    }
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 650px;
}
@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: -15px;
    margin-left: -15px;
}
@media (min-width: 1200px) {
    .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: 1200px) {
    .navbar-static-top {
        border-radius: 0;
    }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}
@media (min-width: 1200px) {
    .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: 30px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 80px;
}
.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none;
}
.navbar-brand > img {
    display: block;
}
@media (min-width: 1200px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}
.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 23px;
    margin-bottom: 23px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 2px;
}
.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: 1200px) {
    .navbar-toggle {
        display: none;
    }
}
.navbar-nav {
    margin: 15px -15px;
}
.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
}
@media (max-width: 1199px) {
    .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: 1200px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }
    .navbar-nav > li {
        float: left;
    }
    .navbar-nav > li > a {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    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: 23px;
    margin-bottom: 23px;
}
@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: 1199px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }
    .navbar-form .form-group:last-child {
        margin-bottom: 0;
    }
}
@media (min-width: 1200px) {
    .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 {
    margin-bottom: 0;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.navbar-btn {
    margin-top: 23px;
    margin-bottom: 23px;
}
.navbar-btn.btn-sm {
    margin-top: 25px;
    margin-bottom: 25px;
}
.navbar-btn.btn-xs {
    margin-top: 29px;
    margin-bottom: 29px;
}
.navbar-text {
    margin-top: 30px;
    margin-bottom: 30px;
}
@media (min-width: 1200px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px;
    }
}
@media (min-width: 1200px) {
    .navbar-left {
        float: left !important;
    }
    .navbar-right {
        float: right !important;
        margin-right: -15px;
    }
    .navbar-right ~ .navbar-right {
        margin-right: 0;
    }
}
.navbar-default {
    background-color: transparent;
    border-color: transparent;
}
.navbar-default .navbar-brand {
    color: #fff;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #e6e6e6;
    background-color: transparent;
}
.navbar-default .navbar-text {
    color: #777;
}
.navbar-default .navbar-nav > li > a {
    color: #fff;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #333;
    background-color: #ebe be;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #333;
    background-color: #ebe be;
}
.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: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: #ebe be;
    color: #333;
}
@media (max-width: 1199px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #fff;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: #ebe be;
    }
    .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: #333;
        background-color: #ebe be;
    }
    .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: #fff;
}
.navbar-default .navbar-link:hover {
    color: #333;
}
.navbar-default .btn-link {
    color: #fff;
}
.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: 1199px) {
    .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;
}
.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.nav > li {
    position: relative;
    display: block;
}
.nav > li > a {
    position: relative;
    display: block;
    padding: 28px 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: #98302f;
}
.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.42857143;
    border: 1px solid transparent;
    border-radius: 2px 2px 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: 2px;
}
.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: 2px 2px 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: 2px;
}
.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: #98302f;
}
.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: 2px;
}
.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: 2px 2px 0 0;
    }
    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: OpenSans, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0);
}
.tooltip.in {
    opacity: 0.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;
    background-color: #000;
    border-radius: 2px;
}
.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;
}
.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1035;
    -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: 4px;
    -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: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.43px;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.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: 840px;
    }
}
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    -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: 20px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: -1;
    border-top-left-radius: -1;
}
.panel-heading > .dropdown .dropdown-toggle {
    color: inherit;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
    color: inherit;
}
.panel-footer {
    padding: 20px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: -1;
    border-bottom-left-radius: -1;
}
.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: -1;
    border-top-left-radius: -1;
}
.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: -1;
    border-bottom-left-radius: -1;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.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: -1;
    border-top-left-radius: -1;
}
.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: -1;
    border-top-right-radius: -1;
}
.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: -1;
}
.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: -1;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: -1;
    border-bottom-left-radius: -1;
}
.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: -1;
    border-bottom-right-radius: -1;
}
.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: -1;
}
.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: -1;
}
.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: 0;
}
.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: #fff;
    border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
    color: #fff;
    background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd;
}
.panel-primary {
    border-color: #98302f;
}
.panel-primary > .panel-heading {
    color: #fff;
    background-color: #98302f;
    border-color: #98302f;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #98302f;
}
.panel-primary > .panel-heading .badge {
    color: #98302f;
    background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #98302f;
}
.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: red;
    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: red;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1;
}
.media {
    margin-top: 15px;
}
.media:first-child {
    margin-top: 0;
}
.media,
.media-body {
    zoom: 1;
    overflow: hidden;
}
.media-body {
    width: 10000px;
}
.media-object {
    display: block;
}
.media-object.img-thumbnail {
    max-width: none;
}
.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;
}
@-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: 2px;
    -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: #98302f;
    -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 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.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);
}
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.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}
.table > tbody + tbody {
    border-top: 2px solid #ddd;
}
.table .table {
    background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}
.table-bordered {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(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;
    }
}
.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-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
    padding-bottom: 75%;
}
@-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 !important;
    }
    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 !important;
    }
    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 !important;
    }
    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 !important;
    }
    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 !important;
    }
    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;
    }
}
.clearfix:before,
.clearfix:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.nav:before,
.nav:after,
.modal-footer:before,
.modal-footer:after,
.panel-body:before,
.panel-body:after {
    content: " ";
    display: table;
}
.clearfix:after,
.form-horizontal .form-group:after,
.container:after,
.container-fluid:after,
.row:after,
.dl-horizontal dd:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.nav:after,
.modal-footer:after,
.panel-body: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;
}
.affix {
    position: fixed;
} /*!
 * Bootstrap Modal
 *
 * Copyright Jordan Schroter
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.modal-scrollable .modal {
    z-index: 1050;
}
@media only screen and (max-width: 767px) {
    .modal-scrollable .modal-dialog {
        margin-top: 0;
    }
}
.loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -12px;
}
@media only screen and (max-width: 767px) {
    .modal-dialog {
        margin-left: 0;
        margin-right: 0;
    }
}
.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
    }
}
@-moz-keyframes shake {
    0%,
    100% {
        -moz-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -moz-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -moz-transform: translateX(10px);
    }
}
@-o-keyframes shake {
    0%,
    100% {
        -o-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -o-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -o-transform: translateX(10px);
    }
}
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}
.shake {
    -webkit-animation-name: shake;
    -moz-animation-name: shake;
    -o-animation-name: shake;
    animation-name: shake;
}
.modal-backdrop.modal-absolute {
    position: absolute;
    z-index: 940;
}
.modal-backdrop,
.modal-backdrop.fade.in {
    opacity: 0.7;
    filter: alpha(opacity=70);
    background: #000;
}
@font-face {
    font-family: OpenSans;
    src: url(../fonts/opensans/OpenSans-Light.eot);
    src: url(../fonts/opensans/OpenSans-Light.eot?#iefix) format("embedded-opentype"), url(../fonts/opensans/OpenSans-Light.woff) format("woff"), url(../fonts/opensans/OpenSans-Light.ttf) format("truetype"),
        url(../fonts/opensans/OpenSans-Light.svg#openSans-Light) format("svg");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: OpenSans;
    src: url(../fonts/opensans/OpenSans-Regular.eot);
    src: url(../fonts/opensans/OpenSans-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/opensans/OpenSans-Regular.woff) format("woff"), url(../fonts/opensans/OpenSans-Regular.ttf) format("truetype"),
        url(../fonts/opensans/OpenSans-Regular.svg#OpenSans-Regular) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: OpenSans;
    src: url(../fonts/opensans/OpenSans-Semibold.eot);
    src: url(../fonts/opensans/OpenSans-Semibold.eot?#iefix) format("embedded-opentype"), url(../fonts/opensans/OpenSans-Semibold.woff) format("woff"), url(../fonts/opensans/OpenSans-Semibold.ttf) format("truetype"),
        url(../fonts/opensans/OpenSans-Semibold.svg#OpenSans-Semibold) format("svg");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: OpenSansBold;
    src: url(../fonts/opensans/OpenSans-Bold.eot);
    src: url(../fonts/opensans/OpenSans-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/opensans/OpenSans-Bold.woff) format("woff"), url(../fonts/opensans/OpenSans-Bold.ttf) format("truetype"),
        url(../fonts/opensans/OpenSans-Bold.svg#openSans-Bold) format("svg");
    font-weight: 700;
    font-style: normal;
}
@media only screen and (max-width: 767px) {
    #site-content {
        margin-top: 50px;
    }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    #site-content {
        margin-top: 75px;
    }
}
.phone {
    white-space: nowrap;
}
hr {
    clear: both;
    margin-left: auto;
    margin-right: auto;
}
.btn,
.form-control,
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.btn {
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    border-color: rgba(152, 48, 47, 0.5);
    border-width: 2px;
    font-weight: 700;
    text-transform: uppercase;
}
.btn.btn-xs,
.btn.btn-sm {
    font-size: 14px;
}
.btn.btn-cta {
    color: #fff;
    background-color: #98302f;
    border-color: #98302f;
}
.btn.btn-cta:focus,
.btn.btn-cta.focus {
    color: #fff;
    background-color: #712423;
    border-color: #371111;
}
.btn.btn-cta:hover {
    color: #fff;
    background-color: #712423;
    border-color: #692121;
}
.btn.btn-cta:active,
.btn.btn-cta.active,
.open > .dropdown-toggle.btn.btn-cta {
    color: #fff;
    background-color: #712423;
    border-color: #692121;
}
.btn.btn-cta:active:hover,
.btn.btn-cta.active:hover,
.open > .dropdown-toggle.btn.btn-cta:hover,
.btn.btn-cta:active:focus,
.btn.btn-cta.active:focus,
.open > .dropdown-toggle.btn.btn-cta:focus,
.btn.btn-cta:active.focus,
.btn.btn-cta.active.focus,
.open > .dropdown-toggle.btn.btn-cta.focus {
    color: #fff;
    background-color: #561b1b;
    border-color: #371111;
}
.btn.btn-cta:active,
.btn.btn-cta.active,
.open > .dropdown-toggle.btn.btn-cta {
    background-image: none;
}
.btn.btn-cta.disabled,
.btn.btn-cta[disabled],
fieldset[disabled] .btn.btn-cta,
.btn.btn-cta.disabled:hover,
.btn.btn-cta[disabled]:hover,
fieldset[disabled] .btn.btn-cta:hover,
.btn.btn-cta.disabled:focus,
.btn.btn-cta[disabled]:focus,
fieldset[disabled] .btn.btn-cta:focus,
.btn.btn-cta.disabled.focus,
.btn.btn-cta[disabled].focus,
fieldset[disabled] .btn.btn-cta.focus,
.btn.btn-cta.disabled:active,
.btn.btn-cta[disabled]:active,
fieldset[disabled] .btn.btn-cta:active,
.btn.btn-cta.disabled.active,
.btn.btn-cta[disabled].active,
fieldset[disabled] .btn.btn-cta.active {
    background-color: #98302f;
    border-color: #98302f;
}
.btn.btn-cta .badge {
    color: #98302f;
    background-color: #fff;
}
.intro {
    padding: 30px 0;
    position: relative;
}
.intro h2 + p {
    margin-top: 30px;
}
.intro .icon + p {
    font-size: 1.29em;
    font-weight: 400;
    margin-left: 96px;
    margin-top: -76px;
    text-align: left;
}
.intro .icon + p + p {
    font-size: 1.29em;
    font-weight: 400;
    margin-left: 96px;
    text-align: left;
}
.intro p {
    font-size: 1.57em;
    font-weight: 300;
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
}
.intro p:last-child {
    margin-bottom: 0;
}
.intro p b {
    font-weight: 400;
}
.story-list-footer {
    clear: both;
    padding-top: 40px;
    text-align: center;
}
.event-list .story-list-footer {
    padding-top: 20px;
}
.link-more {
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    color: #49515b;
    display: inline-block;
    font-weight: 700;
    margin: auto;
    text-transform: uppercase;
}
.link-more .icon-add {
    margin-bottom: 10px;
}
.link-more:hover {
    color: #32383f;
    text-decoration: none;
}
.link-more:hover .icon-add {
    opacity: 0.8;
}
.event-list .link-more .icon-add {
    background-color: #b55c12;
}
.event-list .link-more:hover .icon-add {
    opacity: 0.8;
}
#violator {
    background-color: #fff2c3;
    color: #333;
    position: fixed;
    right: 0;
    text-align: center;
    top: 150px;
    max-width: 350px;
    z-index: 99;
    -webkit-box-shadow: 0 0 10px 0 #000;
    box-shadow: 0 0 10px 0 #000;
}
#violator span {
    position: absolute;
    left: -18px;
    top: -18px;
}
.ctas {
    background: #686b6f;
    color: #fff;
    padding: 40px 0;
}
.ctas .cta-image {
    height: 146px;
    margin-bottom: 20px;
    text-align: center;
}
.ctas .cta-image img {
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block;
}
.ctas .cta-image svg {
    fill: #fff;
    height: 146px;
}
.ctas.cta-quiz .cta-image img {
    box-shadow: none;
}
.ctas .cta-header {
    font-size: 1.86em;
    font-weight: 300;
    text-align: center;
}
.ctas .cta-intro {
    font-size: 1.5em;
    margin-bottom: 2em;
    font-weight: 300;
}
.ctas p {
    color: #d9d4d8;
    font-size: 1.14em;
    text-align: center;
}
.cta-quiz [class*="col-"] {
    display: table;
}
.cta-quiz .cta-image,
.cta-quiz .cta-content {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.cta-quiz .cta-image {
    margin-bottom: 0;
}
.cta-quiz .cta-image .quiz-starburst {
    fill: #fff;
    height: 213px;
    width: 213px;
}
.cta-quiz .cta-image .quiz-starburst svg {
    height: 100%;
}
.cta-quiz .cta-header {
    text-align: left;
}
.cta-quiz p {
    font-size: 1.29em;
    text-align: left;
}
.cta-call-us .cta-image img {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.scrollTop {
    padding: 20px 0 30px;
}
.scrollTop a {
    color: #000;
}
.reservation-form {
    margin-top: 25px !important;
}
@media only screen and (max-width: 767px) {
    .modal-dialog .reservation-form {
        margin-top: 0 !important;
        top: 0 !important;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .modal-dialog .reservation-form {
        margin-top: 0 !important;
        top: 0 !important;
    }
}
.modal-dialog .reservation-form.mobile {
    width: 100%;
    margin-top: 70px !important;
}
.modal-dialog .reservation-form.mobile.post-content {
    padding: 0 0;
}
.modal-dialog .reservation-form.mobile #event-modal .share {
    border-left: none;
}
.modal-dialog .reservation-form.mobile h1 {
    text-align: center;
}
.modal-dialog .reservation-form.mobile .modal-content {
    box-shadow: none;
    border: none;
}
.modal-dialog .reservation-form h1 {
    margin-top: 25px;
}
.modal-dialog .reservation-form h1.header-img {
    margin-top: 15px;
}
.modal-dialog .reservation-form .post-content {
    padding: 15px 20px 20px 20px;
}
.modal-dialog .reservation-form .post-content p {
    margin-bottom: 15px;
    font-size: 1.14em;
    line-height: 1.65;
}
.modal-dialog .reservation-form .share {
    margin-top: 15px;
    border-left: 1px solid #ccc;
    padding-left: 20px;
    float: right;
}
.modal-dialog .reservation-form .share .addtoany_list a {
    padding: 15px 4px 10px;
}
@media only screen and (max-width: 767px) {
    .modal-dialog .reservation-form .share {
        border-left: none;
        margin-top: 0;
    }
}
.modal-dialog .reservation-form .person-image {
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    height: 248px;
    overflow: hidden;
    width: 248px;
    margin-bottom: -15px;
}
.modal-dialog .reservation-form .logo-site {
    display: block;
    margin: auto;
}
.modal-dialog .reservation-form .modal-header {
    border: 0;
    padding: 0;
}
.modal-dialog .reservation-form .modal-header .close {
    background-color: #ebb700;
    border: 0;
    padding: 10px;
    margin-bottom: -1px;
    margin-right: 1px;
    position: absolute;
    right: -55px;
    top: 19px;
}
@media only screen and (max-width: 767px) {
    .modal-dialog .reservation-form .modal-header .close {
        position: relative;
        float: right;
        top: 0;
        right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .modal-dialog .reservation-form .modal-header .close {
        position: relative;
        float: right;
        top: 0;
        right: 0;
    }
}
.modal-dialog .reservation-form .modal-header .close span {
    background-color: #fff;
    color: #ebb700;
    display: block;
    font-size: 2em;
    line-height: 0.6em;
    padding: 10px;
    text-align: center;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}
.modal-dialog .reservation-form .wistia_embed {
    width: 100% !important;
}
.modal-dialog .reservation-form .modal-content {
    border-radius: 0;
}
.modal-dialog .reservation-form .modal-content.single-person {
    padding-top: 0;
}
.modal-dialog .reservation-form .modal-content.single-person h1 {
    margin-bottom: 35px;
}
.modal-dialog .reservation-form .modal-content.single-person h3 {
    font-size: 24px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1em;
}
.modal-dialog .reservation-form .modal-content.single-person .share {
    margin-top: 0;
    border-left: none;
}
.modal-dialog .reservation-form .modal-content .post-content {
    padding-top: 0;
}
.collapseContent {
    color: #000;
    position: absolute;
    right: 15px;
    top: 45%;
    cursor: pointer;
}
.member-photo {
    width: 96px;
    border: 1px solid #98302f;
}
.dropdown {
    position: relative;
}
.get-app {
    margin-top: -75px;
    margin-bottom: 10px;
}
.app-link {
    margin: auto;
    padding: 10px 0;
    display: inline-block;
}
.wistia_embed {
    margin: auto;
}
#map-canvas {
    width: 100%;
    height: 400px;
}
.error-404 {
    padding-bottom: 2em;
    text-align: center;
    font-size: 20px;
}
.error-404 .page-header {
    border-bottom: none;
}
.error-404 h1 {
    margin-top: 100px;
}
.error-404 .icons {
    display: inline-block;
    padding: 1em 2em;
}
ul.numbered-list {
    counter-reset: li;
    list-style-type: none;
    font-size: 16px;
    line-height: 20px;
    padding-left: 10px;
}
ul.numbered-list li {
    position: relative;
    padding: 15px 0 15px 40px;
}
ul.numbered-list li:before {
    content: counter(li);
    counter-increment: li;
    height: 30px;
    width: 30px;
    border: 1px solid #d7a800;
    border-radius: 50%;
    color: #fff;
    background-color: #ebb700;
    text-align: center;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 16px;
    padding-top: 0.25em;
}
.inline-content-block {
    display: inline;
}
.icon {
    display: inline-block;
    line-height: 1px;
    overflow: hidden;
    vertical-align: middle;
}
.social-links .icon svg,
.icon.icon-home svg,
.icon.icon-lock svg {
    height: 100%;
}
.social-links .icon svg {
    max-width: 28px;
}
.social-links .icon.logo-instagram svg {
    height: 110%;
    margin-left: -9px;
    margin-top: 3px;
    max-width: none;
}
.a2a_dd.addtoany_share_save {
    display: none;
}
.icon-add {
    background-image: url(../img/sprite.png);
    background-position: -265px -186px;
    width: 39px;
    height: 39px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-add {
        background-image: url(../img/sprite@2x.png);
        background-position: -530px -372px;
        width: 78px;
        height: 78px;
        display: inline-block;
        background-position: -265px -186px;
        height: 39px;
        width: 39px;
        background-size: 538px 536px;
    }
}
.icon-add-orange {
    background-image: url(../img/sprite.png);
    background-position: -226px -186px;
    width: 38px;
    height: 38px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-add-orange {
        background-image: url(../img/sprite@2x.png);
        background-position: -452px -372px;
        width: 76px;
        height: 76px;
        display: inline-block;
        background-position: -226px -186px;
        height: 38px;
        width: 38px;
        background-size: 538px 536px;
    }
}
.logo-sc-stories {
    background-image: url(../img/sprite.png);
    background-position: -412px 0;
    width: 77px;
    height: 77px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-sc-stories {
        background-image: url(../img/sprite@2x.png);
        background-position: -824px 0;
        width: 154px;
        height: 154px;
        display: inline-block;
        background-position: -412px 0;
        height: 77px;
        width: 77px;
        background-size: 538px 536px;
    }
}
.logo-sc-stories-header {
    background-image: url(../img/sprite.png);
    background-position: -155px -412px;
    width: 59px;
    height: 59px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-sc-stories-header {
        background-image: url(../img/sprite@2x.png);
        background-position: -310px -824px;
        width: 118px;
        height: 118px;
        display: inline-block;
        background-position: -155px -412px;
        height: 59px;
        width: 59px;
        background-size: 538px 536px;
    }
}
.logo-sc-events {
    background-image: url(../img/sprite.png);
    background-position: 0 -412px;
    width: 77px;
    height: 76px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-sc-events {
        background-image: url(../img/sprite@2x.png);
        background-position: 0 -824px;
        width: 154px;
        height: 151px;
        display: inline-block;
        background-position: 0 -412px;
        height: 76px;
        width: 77px;
        background-size: 538px 536px;
    }
}
.list-events-upcoming .logo-sc-events {
    background-image: url(../img/sprite.png);
    background-position: -412px -312px;
    width: 77px;
    height: 76px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .list-events-upcoming .logo-sc-events {
        background-image: url(../img/sprite@2x.png);
        background-position: -824px -624px;
        width: 154px;
        height: 151px;
        display: inline-block;
        background-position: -412px -312px;
        height: 76px;
        width: 77px;
        background-size: 538px 536px;
    }
}
.icon-calendar {
    background-image: url(../img/sprite.png);
    background-position: -436px -389px;
    width: 21px;
    height: 20px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-calendar {
        background-image: url(../img/sprite@2x.png);
        background-position: -872px -777px;
        width: 42px;
        height: 40px;
        display: inline-block;
        background-position: -436px -389px;
        height: 20px;
        width: 21px;
        background-size: 538px 536px;
    }
}
.icon-email {
    background-image: url(../img/sprite.png);
    background-position: -490px -473px;
    width: 20px;
    height: 15px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-email {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -945px;
        width: 39px;
        height: 30px;
        display: inline-block;
        background-position: -490px -473px;
        height: 15px;
        width: 20px;
        background-size: 538px 536px;
    }
}
.logo-sc-contact {
    background-image: url(../img/sprite.png);
    background-position: -186px -226px;
    width: 150px;
    height: 150px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-sc-contact {
        background-image: url(../img/sprite@2x.png);
        background-position: -372px -452px;
        width: 300px;
        height: 299px;
        display: inline-block;
        background-position: -186px -226px;
        height: 150px;
        width: 150px;
        background-size: 538px 536px;
    }
}
.icon-external {
    background-image: url(../img/sprite.png);
    background-position: -471px -389px;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-external {
        background-image: url(../img/sprite@2x.png);
        background-position: -942px -777px;
        width: 32px;
        height: 32px;
        display: inline-block;
        background-position: -471px -389px;
        height: 16px;
        width: 16px;
        background-size: 538px 536px;
    }
}
.team-intro .logo-sc-contact {
    background-image: url(../img/sprite.png);
    background-position: -78px -412px;
    width: 76px;
    height: 76px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .team-intro .logo-sc-contact {
        background-image: url(../img/sprite@2x.png);
        background-position: -156px -824px;
        width: 152px;
        height: 151px;
        display: inline-block;
        background-position: -78px -412px;
        height: 76px;
        width: 76px;
        background-size: 538px 536px;
    }
}
.logo-blogger {
    background-image: url(../img/sprite.png);
    background-position: -490px -97px;
    width: 48px;
    height: 47px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-blogger {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -194px;
        width: 96px;
        height: 94px;
        display: inline-block;
        background-position: -490px -97px;
        height: 47px;
        width: 48px;
        background-size: 538px 536px;
    }
}
.logo-facebook {
    background-image: url(../img/sprite.png);
    background-position: -490px -241px;
    width: 48px;
    height: 47px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-facebook {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -482px;
        width: 96px;
        height: 94px;
        display: inline-block;
        background-position: -490px -241px;
        height: 47px;
        width: 48px;
        background-size: 538px 536px;
    }
}
.logo-twitter {
    background-image: url(../img/sprite.png);
    background-position: -490px -337px;
    width: 48px;
    height: 47px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-twitter {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -674px;
        width: 96px;
        height: 94px;
        display: inline-block;
        background-position: -490px -337px;
        height: 47px;
        width: 48px;
        background-size: 538px 536px;
    }
}
.logo-youtube {
    background-image: url(../img/sprite.png);
    background-position: -490px -49px;
    width: 48px;
    height: 47px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-youtube {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -98px;
        width: 96px;
        height: 94px;
        display: inline-block;
        background-position: -490px -49px;
        height: 47px;
        width: 48px;
        background-size: 538px 536px;
    }
}
.logo-instagram {
    background-image: url(../img/sprite.png);
    background-position: 0 -489px;
    width: 49px;
    height: 47px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-instagram {
        background-image: url(../img/sprite@2x.png);
        background-position: 0 -977px;
        width: 97px;
        height: 94px;
        display: inline-block;
        background-position: 0 -489px;
        height: 47px;
        width: 49px;
        background-size: 538px 536px;
    }
}
.logo-linkedin {
    background-image: url(../img/sprite.png);
    background-position: -490px -289px;
    width: 48px;
    height: 47px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-linkedin {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -578px;
        width: 96px;
        height: 94px;
        display: inline-block;
        background-position: -490px -289px;
        height: 47px;
        width: 48px;
        background-size: 538px 536px;
    }
}
.logo-tiktok {
    background-image: url(../img/sprite.png);
    background-position: -490px -489px;
    width: 48px;
    height: 47px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-tiktok {
        background-image: url(../img/sprite@2x.png);
        background-position: -1028px -583px;
        width: 96px;
        height: 94px;
        display: inline-block;
        background-position: -490px -489px;
        height: 47px;
        width: 48px;
        background-size: 538px 536px;
    }
}
.icon-home {
    background-image: url(../img/sprite.png);
    background-position: -337px -359px;
    width: 15px;
    height: 15px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-home {
        background-image: url(../img/sprite@2x.png);
        background-position: -674px -718px;
        width: 30px;
        height: 29px;
        display: inline-block;
        background-position: -337px -359px;
        height: 15px;
        width: 15px;
        background-size: 538px 536px;
    }
}
.icon-lock {
    background-image: url(../img/sprite.png);
    background-position: -525px -473px;
    width: 11px;
    height: 14px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-lock {
        background-image: url(../img/sprite@2x.png);
        background-position: -1049px -945px;
        width: 21px;
        height: 28px;
        display: inline-block;
        background-position: -525px -473px;
        height: 14px;
        width: 11px;
        background-size: 538px 536px;
    }
}
.logo-site {
    background-image: url(../img/sprite.png);
    background-position: -337px -297px;
    width: 61px;
    height: 61px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-site {
        background-image: url(../img/sprite@2x.png);
        background-position: -674px -594px;
        width: 122px;
        height: 122px;
        display: inline-block;
        background-position: -337px -297px;
        height: 61px;
        width: 61px;
        background-size: 538px 536px;
    }
}
.logo-strategic-coach {
    background-image: url(../img/sprite.png);
    background-position: 0 0;
    width: 225px;
    height: 225px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-strategic-coach {
        background-image: url(../img/sprite@2x.png);
        width: 450px;
        height: 450px;
        display: inline-block;
        background-position: 0 0;
        height: 225px;
        width: 225px;
        background-size: 538px 536px;
    }
}
.icon-envelope {
    background-image: url(../img/sprite.png);
    background-position: -490px -193px;
    width: 48px;
    height: 47px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-envelope {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -386px;
        width: 96px;
        height: 94px;
        display: inline-block;
        background-position: -490px -193px;
        height: 47px;
        width: 48px;
        background-size: 538px 536px;
    }
}
.logo-sc-articles {
    background-image: url(../img/sprite.png);
    background-position: -410px -1002px;
    width: 71px;
    height: 70px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-sc-articles {
        background-image: url(../img/sprite@2x.png);
        width: 141px;
        height: 140px;
        display: inline-block;
        background-position: -410px -1002px;
        height: 70px;
        width: 71px;
        background-size: 538px 536px;
    }
}
.logo-sc-media {
    background-image: url(../img/sprite.png);
    background-position: -410px -1002px;
    width: 71px;
    height: 70px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-sc-media {
        background-image: url(../img/sprite@2x.png);
        width: 141px;
        height: 140px;
        display: inline-block;
        background-position: -410px -1002px;
        height: 70px;
        width: 71px;
        background-size: 538px 536px;
    }
}
.logo-sc-resources {
    background-image: url(../img/sprite.png);
    background-position: -337px -226px;
    width: 71px;
    height: 70px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-sc-resources {
        background-image: url(../img/sprite@2x.png);
        background-position: -674px -452px;
        width: 141px;
        height: 140px;
        display: inline-block;
        background-position: -337px -226px;
        height: 70px;
        width: 71px;
        background-size: 538px 536px;
    }
}
.logo-sc-programs {
    background-image: url(../img/sprite.png);
    background-position: -412px -156px;
    width: 77px;
    height: 77px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .logo-sc-programs {
        background-image: url(../img/sprite@2x.png);
        background-position: -824px -312px;
        width: 154px;
        height: 154px;
        display: inline-block;
        background-position: -412px -156px;
        height: 77px;
        width: 77px;
        background-size: 538px 536px;
    }
}
.story-list-programs-cta .logo-sc-programs {
    background-image: url(../img/sprite.png);
    background-position: -490px 0;
    width: 48px;
    height: 48px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .story-list-programs-cta .logo-sc-programs {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px 0;
        width: 96px;
        height: 96px;
        display: inline-block;
        background-position: -490px 0;
        height: 48px;
        width: 48px;
        background-size: 538px 536px;
    }
}
.icon-arrow-left {
    background-image: url(../img/sprite.png);
    background-position: -412px -389px;
    width: 11px;
    height: 22px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-arrow-left {
        background-image: url(../img/sprite@2x.png);
        background-position: -824px -777px;
        width: 22px;
        height: 44px;
        display: inline-block;
        background-position: -412px -389px;
        height: 22px;
        width: 11px;
        background-size: 538px 536px;
    }
}
.icon-arrow-right {
    background-image: url(../img/sprite.png);
    background-position: -424px -389px;
    width: 11px;
    height: 22px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-arrow-right {
        background-image: url(../img/sprite@2x.png);
        background-position: -848px -777px;
        width: 22px;
        height: 44px;
        display: inline-block;
        background-position: -424px -389px;
        height: 22px;
        width: 11px;
        background-size: 538px 536px;
    }
}
.icon-podcast {
    background-image: url(../img/sprite.png);
    background-position: -458px -389px;
    width: 12px;
    height: 20px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-podcast {
        background-image: url(../img/sprite@2x.png);
        background-position: -916px -777px;
        width: 24px;
        height: 40px;
        display: inline-block;
        background-position: -458px -389px;
        height: 20px;
        width: 12px;
        background-size: 538px 536px;
    }
}
.icon-webinar {
    background-image: url(../img/sprite.png);
    background-position: -229px -377px;
    width: 27px;
    height: 26px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-webinar {
        background-image: url(../img/sprite@2x.png);
        background-position: -458px -753px;
        width: 53px;
        height: 51px;
        display: inline-block;
        background-position: -229px -377px;
        height: 26px;
        width: 27px;
        background-size: 538px 536px;
    }
}
.icon-webinar,
.icon-podcast {
    margin-right: 5px;
}
.icon-close-white {
    background-image: url(../img/sprite.png);
    background-position: -50px -489px;
    width: 42px;
    height: 42px;
    display: inline-block;
    cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-close-white {
        background-image: url(../img/sprite@2x.png);
        background-position: -99px -977px;
        width: 84px;
        height: 84px;
        display: inline-block;
        background-position: -50px -489px;
        height: 42px;
        width: 42px;
        background-size: 538px 536px;
    }
}
.icon-info {
    background-image: url(../img/sprite.png);
    background-position: -338px -186px;
    width: 30px;
    height: 30px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .icon-info {
        background-image: url(../img/sprite@2x.png);
        background-position: -675px -372px;
        width: 60px;
        height: 60px;
        display: inline-block;
        background-position: -338px -186px;
        height: 30px;
        width: 30px;
        background-size: 538px 536px;
    }
}
.navbar {
    border-radius: 0;
    border: none;
}
.navbar-nav a {
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}
.navbar-nav > li > a {
    text-shadow: none;
}
.primary-nav {
    border-bottom: 4px solid #98302f;
    margin: 0;
}
.primary-nav.navbar-fixed-top {
    background-color: #fff;
}
.primary-nav.navbar-fixed-top .navbar-fixed-top .navbar-collapse,
.primary-nav.navbar-fixed-top .navbar-fixed-bottom .navbar-collapse {
    max-height: 600px;
}
.primary-nav .navbar-collapse {
    padding: 0;
}
.primary-nav .dropdown-menu {
    top: 50px;
    padding: 10px 0;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
    border-radius: 0;
    border: none;
}
.primary-nav .dropdown-menu::before {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ebebeb;
    top: -1px;
    left: 45px;
    margin: auto;
    position: absolute;
}
.primary-nav .dropdown-menu li a {
    padding: 10px 15px;
}
.primary-nav .dropdown-menu li a::after {
    border: none !important;
}
@media only screen and (max-width: 1199px) {
    .primary-nav .dropdown-menu li a {
        text-align: center;
    }
}
@media only screen and (max-width: 1199px) {
    .primary-nav .dropdown-menu {
        background-color: #a3a1a1 !important;
    }
}
.primary-nav .navbar-toggle {
    margin-bottom: 0;
    margin-top: 29px;
}
.primary-nav .navbar-header {
    position: relative;
    top: -8px;
}
.primary-nav .navbar-brand {
    display: block;
    height: 61px;
    margin-left: 15px;
    margin-right: 30px;
    margin-top: 15px;
    padding: 0;
}
.primary-nav .nav {
    text-align: right;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width: 1199px) {
    .primary-nav .nav {
        text-align: center;
    }
}
.primary-nav .nav > li.menu-item-client-login {
    font-style: italic;
}
.primary-nav .nav > li.current-menu-item .icon {
    fill: #98302f;
}
.primary-nav .nav > li.current-menu-item a {
    font-weight: 700;
    position: relative;
}
.primary-nav .nav > li.current-menu-item a::after {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #98302f;
    border-top: 8px solid transparent;
    bottom: 0;
    left: auto;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}
.primary-nav .nav > li > a {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
}
.no-touch .primary-nav .nav > li > a:hover {
    color: #0d0d0d;
}
@media only screen and (max-width: 1199px) {
    .primary-nav .nav > li > a {
        padding-bottom: 15px !important;
        padding-top: 15px !important;
        text-align: center;
    }
}
.primary-nav .logo-strategic-coach {
    height: 61px;
    width: 61px;
}
.primary-nav .logo-strategic-coach .logo-sc-circle {
    fill: #98302f;
}
.primary-nav .icon {
    position: relative;
}
.primary-nav .icon.icon-home {
    fill: #a0a0a0;
    height: 14px;
    top: -1px;
    width: 15px;
}
.primary-nav .icon.icon-lock {
    fill: #333;
    height: 14px;
    margin-right: 5px;
    top: -1px;
    width: 11px;
}
@media (min-width: 1200px) {
    .primary-nav {
        height: 80px;
    }
    .primary-nav > .container {
        text-align: center;
    }
    .primary-nav .primary-nav-menu {
        text-align: center;
        display: inline-block !important;
        position: relative;
    }
    .primary-nav .navbar-header {
        float: left;
        display: inline-block;
    }
    .primary-nav .navbar-brand {
        margin-left: 0 !important;
    }
    .primary-nav .nav {
        display: inline-block;
        float: none;
        text-align: left;
    }
    .primary-nav .nav > li.current-menu-item a::after {
        border: none;
        content: "";
        display: inline-block;
        height: 0;
        width: 0;
        border-bottom: 8px solid #98302f;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
    }
    .primary-nav .nav > li > a {
        padding: 28px 15px;
    }
}
.primary-nav .nav > li.bookcall a {
    color: #fff;
}
#filter {
    padding: 30px 0 60px 0;
}
#filter h5 {
    color: #000;
}
#filter h3 {
    margin-top: 5px;
    font-weight: 100;
}
.filter-nav {
    margin: auto;
    min-height: inherit;
    padding-bottom: 20px;
}
.filter-nav .section-nav-menu {
    text-align: center;
}
.filter-nav .nav {
    display: inline-block;
    float: none;
    margin: 0;
}
.filter-nav .nav > li {
    display: inline-block;
}
.filter-nav .nav > li.current-menu-item {
    background-color: #e5e5e5;
    position: relative;
}
.filter-nav .nav > li.current-menu-item::after {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e5e5e5;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -8px;
}
.filter-nav .nav > li.current-menu-item a {
    font-weight: 700;
    padding-top: 15px;
}
.filter-nav .nav > li.current-menu-item a::after {
    border-color: transparent !important;
}
.filter-nav .nav > li > a {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    padding: 18px 15px 13px 15px;
}
.no-touch .filter-nav .nav > li > a:hover {
    color: #0d0d0d;
}
.section-nav {
    background: #dcdcdc;
    border-top: 4px solid #65201f;
    margin: auto;
    min-height: inherit;
}
.section-nav.affix {
    width: 100%;
    z-index: 99;
    top: 0;
}
.section-nav.filter-nav {
    background: 0 0;
    border-top: none;
}
.section-nav .section-nav-menu {
    text-align: center;
}
.section-nav .nav {
    display: inline-block;
    float: none;
    margin: 0;
}
.section-nav .nav > li {
    display: inline-block;
}
.section-nav .nav > li.current-menu-item a,
.section-nav .nav > li.active a {
    font-family: OpenSansBold;
    position: relative;
}
.section-nav .nav > li.current-menu-item a::after,
.section-nav .nav > li.active a::after {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #65201f;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}
.section-nav .nav > li > a {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    padding: 18px 15px 13px 15px;
}
.no-touch .section-nav .nav > li > a:hover {
    color: #0d0d0d;
}
.section-nav .nav > li > a:hover,
.section-nav .nav > li > a:focus {
    background-color: transparent;
}
.sitemap-nav {
    background: #262933;
    margin: auto;
    min-height: inherit;
    padding: 20px 0;
    display: block;
}
@media only screen and (max-width: 767px) {
    .sitemap-nav {
        display: none;
    }
}
.sitemap-nav .nav {
    margin: 0;
}
.sitemap-nav .nav > li {
    float: left;
    width: 33.3%;
}
.sitemap-nav .nav > li:first-child {
    padding-left: 0;
}
.sitemap-nav .nav > li:last-child {
    padding-right: 0;
}
.sitemap-nav .nav > li > a {
    color: #fff;
    display: inline-block;
    font-weight: 700;
    padding: 0;
}
.no-touch .sitemap-nav .nav > li > a:hover {
    color: #d9d9d9;
}
.sitemap-nav .nav > li > a:hover,
.sitemap-nav .nav > li > a:focus {
    background-color: transparent;
    color: #fff;
}
.sitemap-nav .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sitemap-nav .nav ul a {
    color: #fff;
    font-size: 92%;
}
.no-touch .sitemap-nav .nav ul a:hover {
    color: #d9d9d9;
}
@media (min-width: 1200px) {
    .sitemap-nav .sitemap-nav-menu {
        text-align: center;
    }
    .sitemap-nav .nav {
        display: inline-block;
        float: none;
        text-align: left;
    }
    .sitemap-nav .nav a {
        white-space: nowrap;
    }
    .sitemap-nav .nav > li {
        padding: 0 7px;
        width: auto;
    }
    .sitemap-nav .nav ul {
        margin: 0;
    }
}
.legal-nav {
    background: #262933;
    margin: auto;
    min-height: inherit;
    padding: 10px 0;
    display: block;
}
.legal-nav .legal-nav-menu {
    text-align: center;
}
.legal-nav.disclaimer {
    padding: 0 0 20px 0;
}
@media only screen and (max-width: 767px) {
    .legal-nav.disclaimer li {
        width: 50%;
    }
}
.legal-nav.disclaimer.top-disclaimer {
    padding: 0;
}
.legal-nav .nav {
    display: inline-block;
    float: none;
    text-align: left;
}
.legal-nav .nav > li > a {
    color: #ccc;
    font-size: 92%;
    padding: 0;
}
.no-touch .legal-nav .nav > li > a:hover {
    color: #a6a6a6;
}
.legal-nav .nav > li > a:hover,
.legal-nav .nav > li > a:focus {
    background-color: transparent;
    color: #fff;
}
.legal-nav .nav > li + li {
    margin-left: 25px;
}
.legal-nav .nav > li + li::before {
    color: #ccc;
    content: "•";
    display: inline-block;
    position: absolute;
    left: -15px;
}
@media (max-width: 1200px) {
    .legal-nav .nav {
        display: inline-block;
        text-align: center;
    }
    .legal-nav .nav li {
        display: inline-block;
    }
}
.events-links {
    clear: both;
    font-size: 1.14em;
    padding-top: 20px;
    text-align: center;
}
.events-links .icon-calendar {
    fill: #fff;
    margin-right: 10px;
    margin-top: 1px;
    vertical-align: top;
}
.events-links a,
.events-links .events-links-label {
    color: #fff;
    display: inline-block;
}
.events-links .events-links-label {
    margin-right: 10px;
}
.events-links a {
    color: #fff;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    font-weight: 600;
    position: relative;
}
.no-touch .events-links a:hover {
    color: #d9d9d9;
}
.events-links a + a {
    margin-left: 25px;
}
.events-links a + a::before {
    color: #ec9f5e;
    content: "•";
    display: inline-block;
    position: absolute;
    left: -18px;
}
@media only screen and (max-width: 767px) {
    .events-links .events-links-label {
        display: block;
        margin-bottom: 5px;
    }
}
.subnav-dropdown {
    position: relative;
}
.subnav-dropdown.affix {
    width: 100%;
    z-index: 99;
    top: 80px;
    position: fixed;
}
.subnav-dropdown .btn {
    padding: 10px 0;
    width: 100%;
    background-color: #ebb700;
    border: none;
    color: #38342b !important;
    background-color: #ebb700 !important;
}
.subnav-dropdown .btn:hover,
.subnav-dropdown .btn:active {
    color: #38342b !important;
    background-color: #ebb700 !important;
}
.subnav-dropdown .btn .caret {
    position: absolute;
    top: 50%;
    right: 1%;
}
.subnav-dropdown ul.dropdown-menu {
    width: 100%;
    background-color: #ebb700;
    border: none;
    margin-top: 0;
}
.subnav-dropdown ul.dropdown-menu li {
    text-align: center;
    text-transform: uppercase;
}
.subnav-dropdown ul.dropdown-menu li a {
    font-weight: 600;
    color: #38342b;
    padding: 8px 20px;
}
.subnav-dropdown ul.dropdown-menu li a:hover,
.subnav-dropdown ul.dropdown-menu li a:active,
.subnav-dropdown ul.dropdown-menu li a:focus {
    background-color: #ebb700 !important;
    color: #856c08 !important;
}
.mega-menu-wrap {
    margin-top: 2em !important;
}
#mega-menu-wrap-primary {
    margin-top: 2em;
}
#mega-menu-wrap-primary #mega-menu-primary > li.bookcall > a.mega-menu-link {
    background-color: #98302f !important;
    border-radius: 8px !important;
    padding: 1em !important;
    color: #fff !important;
    display: inline !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.client-login > a.mega-menu-link {
    border: solid 2px #98302f !important;
    margin: 0.5em !important;
    border-radius: 8px !important;
    color: #98302f !important;
    display: inline !important;
    padding: 0.75em !important;
}
#mega-menu-wrap-primary {
    float: right !important;
    clear: none !important;
}
.primary-nav .navbar-header {
    float: left;
}
@media (max-width: 1200px) {
    #mega-menu-wrap-primary #mega-menu-primary > li.bookcall {
        margin: 1em 0 !important;
    }
    #mega-menu-wrap-primary #mega-menu-primary > li.client-login {
        margin: 1em 0 !important;
    }
    #mega-menu-wrap-primary {
        width: 80% !important;
    }
}
a.skip-main {
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}
a.skip-main:focus,
a.skip-main:active {
    color: #fff;
    background-color: #98302f;
    left: auto;
    top: auto;
    width: 10%;
    height: auto;
    overflow: auto;
    padding: 5px;
    border-radius: 15px;
    text-align: center;
    font-size: 1em;
    z-index: 999;
}
.section-header {
    background: #644459 50% 50% no-repeat;
    background-size: cover;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-header .logo-strategic-coach {
    fill: #fff;
    height: 226px;
    margin-bottom: 25px;
    width: 226px;
}
.section-header [class*="logo-sc"] {
    margin-bottom: 20px;
}
.section-header h1 {
    color: #fff;
    display: inline-block;
    font-weight: 300;
    margin: 0;
    padding-bottom: 0.4em;
    position: relative;
}
.section-header h2 {
    font-size: 1.5em;
    color: #fff;
}
.section-header h2 span {
    font-weight: 100;
    display: block;
    padding-top: 10px;
}
.section-header p {
    font-size: 2em;
    font-weight: 100;
    color: #fff;
}
.section-header .hr-caret {
    background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="-991.5 16.5 2000 16"><path fill="#98302f" class="hr-caret" d="M1008.5,16.5v0.923H23.56L8.5,32.5L-6.56,17.423H-991.5V16.5H-6.201L8.5,31.201L23.201,16.5H1008.5z"/></svg>')
        no-repeat 50% 50%;
    background-size: auto 16px;
    bottom: -18px;
    fill: #98302f;
    height: 16px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
}
.section-header .section-bg {
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.section-header.section-header-heading-only h6 {
    line-height: 1.5em;
    padding-top: 1em;
    font-size: 28px;
    color: #fff;
}
.section-header.section-header-heading-only h2 {
    font-size: 3em;
    color: #fff;
    line-height: inherit;
    font-weight: 300;
    display: inline-block;
    position: relative;
}
.section-header.section-header-heading-only h1 {
    font-size: 2.5em;
    display: block;
    padding-bottom: 0;
    padding-top: 1em;
}
.section-header.section-header-heading-only .hr-caret {
    background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="-991.5 16.5 2000 16"><path fill="#98302f" class="hr-caret" d="M1008.5,16.5v0.923H23.56L8.5,32.5L-6.56,17.423H-991.5V16.5H-6.201L8.5,31.201L23.201,16.5H1008.5z"/></svg>')
        no-repeat 50% 50%;
    background-size: auto 16px;
    bottom: -18px;
    fill: #98302f;
    height: 16px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
}
.section-header.section-header-story .hr-caret {
    bottom: inherit;
    width: 250px;
}
.section-header.section-header-story h2 {
    padding-top: 15px;
}
.section-header.section-header-home .hero-content {
    padding: 60px 0;
}
.section-header.section-header-home #see-video {
    margin: 50px 15px;
    color: #98302f;
    background-color: #fff;
}
.section-header.section-header-home .btn {
    padding: 16px 22px;
    font-size: 22px;
    background-color: #fff;
}
.section-header.section-header-home h3 {
    font-size: 3.5em;
    color: #fff;
    line-height: inherit;
    font-weight: 400;
    display: inline-block;
    position: relative;
}
.section-header.section-header-home h2 {
    font-size: 3em;
    color: #fff;
    line-height: inherit;
    font-weight: 300;
    display: inline-block;
    position: relative;
}
.section-header.section-header-home h1 {
    font-size: 2.5em;
    display: block;
    padding-bottom: 0;
    padding-top: 1em;
}
.section-header.section-header-home .hr-caret {
    background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="-991.5 16.5 2000 16"><path fill="#98302f" class="hr-caret" d="M1008.5,16.5v0.923H23.56L8.5,32.5L-6.56,17.423H-991.5V16.5H-6.201L8.5,31.201L23.201,16.5H1008.5z"/></svg>')
        no-repeat 50% 50%;
    background-size: auto 16px;
    bottom: -18px;
    fill: #98302f;
    height: 16px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
}
.section-header.section-header-home .hero-video {
    position: relative;
    top: 0;
    left: -5000px;
    z-index: -10;
    width: 100%;
    opacity: 0;
    height: 50px;
    margin-bottom: 0;
}
.section-header.section-header-home .hero-video.ready {
    z-index: 0;
    left: 0;
    height: auto;
}
.section-header.section-header-home .hero-video .icon-close-white {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 5;
}
.section-header.section-header-home .hero-video .wistia_embed {
    position: relative;
    width: 100%;
    height: 100%;
}
.section-header#hero {
    padding: 0;
}
@media only screen and (max-width: 767px) {
    .section-header#hero {
        padding: 30px 0 0;
    }
}
.section-header#hero h1 {
    cursor: pointer;
}
.intro h2 {
    font-size: 2.57em;
    font-weight: 300;
    margin: 0;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .intro h2 {
        font-size: 2em;
        padding: 0 10px;
    }
}
.intro h1 {
    font-size: 2.57em;
    font-weight: 300;
    margin: 0;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .intro h1 {
        font-size: 2em;
        padding: 0 10px;
    }
}
.intro .icon {
    fill: #8996a0;
    margin-right: 8px;
    vertical-align: middle;
}
@media only screen and (max-width: 767px) {
    .intro .icon {
        display: block;
        margin: 0 auto 10px;
    }
}
.intro .reviews h2 {
    font-size: 1.57em;
    font-weight: 300;
    margin: 0;
    text-align: center;
    margin-top: 30px;
    line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
    .intro .reviews h2 {
        font-size: 2em;
        padding: 0 10px;
    }
}
.list-events-upcoming .intro {
    color: #fff;
}
@media only screen and (max-width: 767px) {
    .list-events-upcoming .intro {
        padding: 20px 0;
    }
}
.list-events-upcoming .intro .icon {
    fill: #fff;
}
.team-intro .intro {
    color: #fff;
}
.team-intro .intro .icon {
    fill: #fff;
}
.single-story .section-header {
    padding: 0;
}
.team-intro {
    background-color: #686b6f;
}
.team-intro p.quote {
    position: relative;
    font-size: 1.85em;
}
.resources-intro {
    background: #32999f;
}
.event-list h3 {
    color: #fff;
    font-size: 1.57em;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 0;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .event-list h3 {
        margin-top: 20px;
    }
}
.confirmation-image {
    padding-top: 20px;
}
.reviews h3 {
    font-size: 2.57em;
    font-weight: 100;
    margin: 0;
    text-align: center;
    line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
    .reviews h3 {
        font-size: 2em;
        padding: 0 10px;
    }
}
.reviews h4 {
    font-size: 1.57em;
    font-weight: 100;
    margin: 0;
    text-align: center;
    line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
    .reviews h4 {
        font-size: 1em;
        padding: 0 10px;
    }
}
form.form-event-filters {
    position: relative;
}
.has-error p {
    color: red;
}
.event-filters {
    position: relative;
}
.event-filters:last-of-type {
    margin-top: 30px;
}
.event-filters:last-of-type .form-event-filters-fields::after {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-bottom: 16px solid #f5f5f5;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    bottom: auto;
    top: -16px;
}
.event-filters:last-of-type .event-filters-header {
    display: none;
}
.event-filters .form-event-filters-fields {
    background: #f5f5f5;
    margin: auto;
    position: relative;
    display: inline-block;
}
@media only screen and (max-width: 767px) {
    .event-filters .form-event-filters-fields {
        width: 80%;
    }
}
.event-filters .form-event-filters-fields::after {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #f5f5f5;
    bottom: -16px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
}
.event-filters .btn,
.event-filters .form-group {
    margin: 0;
}
.event-filters .btn {
    background: #fff;
    color: #98302f;
    float: left;
    margin: 15px 10px;
}
.event-filters .btn.current {
    background: #98302f;
    color: #fff;
}
@media only screen and (max-width: 767px) {
    .event-filters .btn {
        width: 100%;
        margin: 10px 0;
    }
}
.event-filters .btn .icon {
    fill: #fff;
    width: 11px;
}
.event-filters .event-filters-header {
    color: #bbb;
    font-size: 0.86em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 11px;
    text-align: center;
    text-transform: uppercase;
}
.event-filters .event-filters-month .form-control,
.event-filters .event-filters-range .form-control,
.event-filters .event-filters-year .form-control {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #98302f
        url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 10"><path id="icon-chevron-down" fill="#fff" d="M15.559,2.682L9.104,9.548L9.091,9.537c-0.585,0.617-1.531,0.617-2.115-0.003L0.438,2.719 c-0.584-0.622-0.584-1.63,0-2.251c0.585-0.622,1.533-0.622,2.117,0L8.04,6.186l5.384-5.726c0.59-0.614,1.545-0.614,2.133,0 C16.146,1.074,16.146,2.069,15.559,2.682z"/></svg>')
        no-repeat 95% 50%;
    background-size: 10px auto;
    border-radius: 5px;
    border: none;
    color: #333;
    display: inline-block;
    font-size: 1.14em;
    font-weight: 600;
    height: 40px;
    margin: 10px 5px;
    text-transform: uppercase;
}
.event-filters .event-filters-range {
    position: absolute;
    right: 30px;
    width: 185px;
    top: 0;
}
@media only screen and (max-width: 767px) {
    .event-filters .event-filters-range {
        position: relative;
        margin: auto;
        right: auto;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .event-filters .event-filters-range {
        position: relative;
        margin: auto;
        right: auto;
    }
}
.event-filters .event-filters-range .form-control {
    display: block;
    float: right;
    margin-left: 0;
    margin-right: 0;
}
.event-filters .event-filters-month,
.event-filters .event-filters-year {
    display: inline-block;
    height: 60px;
    padding: 0 30px 0 20px;
}
@media only screen and (max-width: 767px) {
    .event-filters .event-filters-month,
    .event-filters .event-filters-year {
        height: auto;
        padding: 10px 20px;
    }
}
.event-filters .event-filters-month {
    text-align: right;
}
.form-section {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
}
.modal-content .program .program-container {
    margin-bottom: 0;
    box-shadow: none;
}
#application-form {
    background-color: #fffae7;
    padding: 30px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
#application-form label,
#application-form .required {
    font-size: 1em;
    font-weight: 400;
}
#application-form label input[type="radio"],
#application-form .required input[type="radio"],
#application-form label input[type="checkbox"],
#application-form .required input[type="checkbox"] {
    float: left;
    margin-right: 5px;
}
#application-form label span,
#application-form .required span {
    color: #98302f;
    float: left;
}
#application-form .required {
    padding-bottom: 30px;
    color: #ccc;
}
#application-form .form-control {
    height: 40px;
}
#application-form .form-group {
    margin-bottom: 25px;
}
.sidebar {
    margin-bottom: 60px;
    margin-top: 35px;
}
.sidebar .widget-stories {
    margin-bottom: 35px;
    text-align: center;
}
.sidebar .widget-image {
    background-image: -webkit-radial-gradient(circle, #ccc, #f5f5f5);
    background-image: radial-gradient(circle, #ccc, #f5f5f5);
    background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    height: 205px;
    overflow: hidden;
    width: 205px;
}
.sidebar .widget-title {
    font-size: 1.29em;
    font-weight: 700;
    margin-top: 10px;
}
.sidebar .widget-content {
    color: #000;
    font-style: italic;
    margin-top: 10px;
}
@media only screen and (max-width: 767px) {
    .footer-touts .blogger,
    .footer-touts .youtube,
    .footer-touts .instagram {
        display: none !important;
    }
}
.footer-touts .tout {
    margin-left: -15px;
    margin-right: -15px;
    padding: 40px;
}
.footer-touts .tout:before,
.footer-touts .tout:after {
    content: " ";
    display: table;
}
.footer-touts .tout:after {
    clear: both;
}
.footer-touts .tout:before,
.footer-touts .tout:after {
    content: " ";
    display: table;
}
.footer-touts .tout:after {
    clear: both;
}
@media only screen and (max-width: 767px) {
    .footer-touts .tout {
        padding: 15px 40px 40px 40px;
    }
}
@media (min-width: 768px) {
    .footer-touts .tout {
        min-height: 440px;
    }
}
@media (min-width: 992px) {
    .footer-touts .tout {
        min-height: 450px;
    }
}
@media (min-width: 1200px) {
    .footer-touts .tout {
        min-height: 385px;
    }
}
@media (min-width: 992px) {
    .footer-touts [class*="col-"]:first-child .tout-inner {
        float: right;
    }
}
.footer-touts .tout-inner {
    width: auto;
}
@media (min-width: 992px) {
    .footer-touts .tout-inner {
        width: 445px;
    }
}
@media (min-width: 1200px) {
    .footer-touts .tout-inner {
        width: 540px;
    }
}
.tout-sites {
    background: #283540;
    color: #fff;
    text-align: center;
}
.tout-sites h3 {
    font-size: 2.14em;
    font-weight: 300;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.tout-sites h4 {
    margin: 2em 1em;
}
.tout-contact {
    background: #2b4154;
    color: #fff;
    text-align: center;
}
.tout-contact h3 {
    border-bottom: 1px solid #b8adb4;
    font-size: 2.14em;
    font-weight: 300;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.tout-contact .contact-phone {
    font-size: 1.38em;
    margin-bottom: 15px;
}
.tout-contact .contact-phone:before,
.tout-contact .contact-phone:after {
    content: " ";
    display: table;
}
.tout-contact .contact-phone:after {
    clear: both;
}
.tout-contact .contact-phone:before,
.tout-contact .contact-phone:after {
    content: " ";
    display: table;
}
.tout-contact .contact-phone:after {
    clear: both;
}
.tout-contact .contact-phone b {
    font-weight: 600;
}
.tout-contact .contact-phone .phone-eu,
.tout-contact .contact-phone .phone-na {
    border-bottom: 1px solid #b8adb4;
    padding: 10px 0;
    text-align: center;
}
.tout-contact .contact-phone .phone-eu span,
.tout-contact .contact-phone .phone-na span {
    color: #e7b808;
}
.tout-contact .contact-phone .phone-na {
    padding-top: 0;
}
@media only screen and (min-width: 1200px) {
    .tout-contact .contact-phone .phone-eu,
    .tout-contact .contact-phone .phone-na {
        float: left;
        padding-top: 0;
    }
    .tout-contact .contact-phone .phone-eu {
        text-align: right;
        width: 43%;
    }
    .tout-contact .contact-phone .phone-na {
        text-align: left;
        width: 57%;
    }
}
.tout-contact .social-links {
    clear: both;
    margin: 2em 0;
}
.tout-contact .social-link {
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    background: #fff;
    border-radius: 3px;
    display: inline-block;
    height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
}
.tout-contact .social-link + .social-link {
    margin-left: 20px;
}
@media only screen and (max-width: 767px) {
    .tout-contact .social-link + .social-link {
        margin-left: 15px;
    }
}
.tout-contact .social-link .icon {
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    bottom: 0;
    height: 28px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}
.tout-contact .social-link .icon.logo-blogger {
    fill: #f86813;
}
.tout-contact .social-link .icon.logo-facebook {
    fill: #3b5998;
}
.tout-contact .social-link .icon.logo-twitter {
    fill: #29c5f6;
}
.tout-contact .social-link .icon.logo-youtube {
    fill: #dd332c;
}
.tout-contact .social-link .icon.logo-instagram {
    fill: #d13e2f;
    height: 100%;
    width: 100%;
}
.tout-contact .social-link .icon.logo-linkedin {
    fill: #006dc0;
}
.tout-contact .social-link .icon.icon-envelope {
    fill: #d9792a;
}
.tout-contact .social-link:hover .icon {
    fill: #1fa0a7;
}
.tout-download {
    background: #3d4d5d;
    color: #fff;
    padding: 40px;
}
.tout-download h3 {
    font-size: 1.71em;
    margin-top: 0;
}
.tout-download p {
    color: #fff;
    font-size: 1.14em;
}
.tout-download img {
    float: right;
    margin: 0 0 20px 20px;
}
@media only screen and (max-width: 767px) {
    .tout-download img {
        margin-left: 0;
        display: inline-block;
    }
}
@media (max-width: 991px) {
    .tout-download {
        text-align: center;
    }
    .tout-download img {
        float: none;
        display: inline-block;
    }
}
@media (min-width: 992px) {
    .tout-download p,
    .tout-download h3 {
        text-align: left;
    }
}
.list-stories-latest,
.list-stories-related {
    background: url(../img/latest-stories.jpg) no-repeat 0 0;
    background-size: cover;
    padding-bottom: 60px;
}
.list-programs-alternate,
.list-programs-default {
    background: url(../img/our-programs.jpg) no-repeat 0 0;
    background-size: cover;
    padding-bottom: 60px;
}
.list-events-upcoming {
    background: #2d3b44 url(../img/upcoming-events-2.jpg) no-repeat 0 0;
    background-size: cover;
    padding-bottom: 60px;
}
.event-about-types,
.list-resources-default {
    background: #f5f5f5;
    padding-bottom: 60px;
}
.event-about-types.resources-media,
.list-resources-default.resources-media {
    background: #fffae7;
}
.list-events-default {
    padding-bottom: 60px;
    padding-top: 60px;
}
.list-persons-default {
    padding-bottom: 60px;
}
.list-persons-default.persons-coaches {
    background: #dedfe2;
}
.post.story-single {
    padding-bottom: 60px;
}
.post.program-preview,
.post.story-preview {
    padding-bottom: 20px;
    display: block;
}
.post.program-preview .post-header,
.post.story-preview .post-header {
    position: relative;
}
.post.program-preview.review,
.post.story-preview.review {
    border-top: 5px solid #ebb700;
}
.post.event-preview.event-default,
.post.media-preview,
.post.program-preview,
.post.resource-preview,
.post.story-preview {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
    border: 1px solid #f2f2f2;
    border-top: none;
    background: #fff;
    margin-bottom: 20px;
    position: relative;
}
.post.event-preview.event-default .post-image,
.post.media-preview .post-image,
.post.program-preview .post-image,
.post.resource-preview .post-image,
.post.story-preview .post-image {
    border-top: 5px solid #98302f;
    background: #ccc no-repeat 50% 50%;
    background-size: cover;
}
.post.read-preview {
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.13);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.13);
    border: 1px solid #f2f2f2;
    border-top: none;
    margin-bottom: 20px;
    background: #fff;
}
.post.read-preview .post-title {
    font-size: 1.3em;
    margin-top: 0;
    font-weight: 600;
}
@media only screen and (max-width: 767px) {
    .post.read-preview .media-left {
        display: none;
    }
}
.post.read-preview .post-content {
    border-top: 1px dashed #bdbdbd;
    margin-top: 10px;
    padding-top: 10px;
}
.post.read-preview .media-body {
    padding: 0 20px 0 10px;
}
.post.read-preview .post-meta {
    font-size: 1em;
    color: #666;
}
.post.read-preview .post-subtitle {
    color: #666;
}
.post.media-preview {
    padding: 10px 30px;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.13);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.13);
    border-top: none !important;
    border: 1px solid #f2f2f2;
}
.post.media-preview.location {
    padding: 10px 30px 30px;
    margin-bottom: 20px;
}
.post.media-preview h4 {
    margin-bottom: 5px;
    font-weight: 600;
}
.post.media-preview .post-date {
    padding-bottom: 15px;
    color: #666;
}
.post.media-preview p {
    font-size: 1.2em;
}
.post.story-preview.story-default .post-image {
    height: 188px;
}
.post.story-preview.story-default .post-title {
    font-size: 1.29em;
    font-weight: 700;
    margin: 20px 20px 2px;
}
.post.story-preview.story-default a .post-title {
    color: #333;
}
.post.story-preview.story-default a .post-title:hover {
    text-decoration: no-underline;
}
.post.story-preview.story-default .post-subtitle {
    color: #666;
    font-size: 1.14em;
    margin: 2px 20px;
}
.post.story-preview.story-default .post-meta {
    color: #000;
    font-size: 1.14em;
    font-style: italic;
    margin: 2px 20px;
}
.post.story-preview.story-default .post-date {
    font-style: italic;
    position: absolute;
    right: 20px;
    top: 210px;
}
.post.story-preview.story-default .post-content,
.post.story-preview.story-default .post-link {
    color: #666;
    font-size: 1.14em;
    margin: 10px 20px 0;
}
.post.story-preview.story-default .post-more {
    font-weight: 700;
    text-transform: uppercase;
}
.post.story-preview.story-default .post-footer {
    margin: 20px 20px 0;
}
.post.story-preview.story-default .review {
    font-size: 1em;
    padding-top: 0.5em;
}
.post.story-preview.story-latest {
    text-align: center;
}
.post.story-preview.story-latest .post-image {
    height: 131px;
}
.post.story-preview.story-latest .post-title {
    font-size: 1.29em;
    font-weight: 700;
    margin: 20px 20px 0;
}
.post.story-preview.story-latest .post-subtitle {
    color: #666;
    font-size: 1.14em;
    margin: 2px 20px;
}
.post.story-preview.story-latest .post-meta {
    color: #000;
    font-style: italic;
    margin: 2px 20px;
}
.post.story-preview.story-latest .post-footer {
    margin: 20px 20px 0;
}
.post.program-preview.program-default .post-image {
    height: 200px;
}
.post.program-preview.program-default .post-title {
    font-size: 1.86em;
    font-weight: 700;
    margin: 20px 20px 0;
}
.post.program-preview.program-default .post-content {
    color: #666;
    font-size: 1.14em;
    margin: 10px 20px 0;
}
.post.program-preview.program-default .post-footer {
    margin: 15px 15px 0;
}
.post.program-preview.program-alternate {
    text-align: center;
}
.post.program-preview.program-alternate .post-image {
    height: 200px;
}
.post.program-preview.program-alternate .post-title {
    font-size: 1.71em;
    font-weight: 700;
    margin: 20px 20px 0;
}
.post.program-preview.program-alternate .post-content {
    color: #666;
    font-size: 1.14em;
    margin: 10px 20px 0;
}
.post.program-preview.program-alternate .post-footer {
    margin: 15px 15px 0;
}
.post.program-single .post-content {
    font-size: 1.14em;
    line-height: 1.6;
}
.post.program-single .post-content h3 {
    font-weight: 600;
    margin-bottom: 1.45em;
    margin-top: 0;
}
.post.program-single .post-content p {
    margin-bottom: 1.7em;
}
.post.program-single .post-content p:first-of-type {
    font-size: 1.14em;
}
.post .program-links .btn {
    display: inline-block;
    margin: 5px;
    white-space: nowrap;
}
.post.resource-preview.resource-default::before {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #f5f5f5;
    left: 0;
    margin: -1px auto 0;
    position: absolute;
    right: 0;
}
.post.resource-preview.resource-default .post-image {
    float: left;
    height: 195px;
    width: 100%;
}
.post.resource-preview.resource-default .post-title {
    font-size: 1.14em;
    font-weight: 700;
    line-height: 1.42857143;
    margin: 0 15px;
    padding-top: 25px;
}
.post.resource-preview.resource-default .post-date {
    font-weight: 600;
    margin: 4px 15px 0;
}
.post.resource-preview.resource-default .post-content {
    border-top: 1px dashed #bdbdbd;
    font-size: 1em;
    margin: 10px 15px;
    padding-top: 10px;
}
.post.resource-preview.resource-default .post-content p {
    margin: 0;
}
.post.resource-preview.resource-default .resource-content {
    padding-left: 0 !important;
}
.post.event-preview.event-default {
    margin-bottom: 30px;
    padding: 2px;
    text-align: left;
}
.post.event-preview.event-default .post-header {
    background: #f5f5f5;
    height: 100%;
    padding: 13px 30px 30px;
}
.post.event-preview.event-default .post-header .event-label {
    margin-top: 19px;
}
.post.event-preview.event-default .post-footer {
    height: 100%;
}
.post.event-preview.event-default .post-footer::before {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #f5f5f5;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -3px;
}
.post.event-preview.event-default .post-footer .btn + .btn {
    margin-top: 20px;
}
.post.event-preview.event-default .event-content {
    padding: 14px 0;
}
.post.event-preview.event-default .event-content p {
    font-size: 1.14em;
    line-height: 1.65;
    margin-bottom: 15px;
}
.post.event-preview.event-default .post-title {
    font-size: 1.29em;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 11px;
}
.post.event-preview.event-default .event-links {
    border-left: 1px solid #e5e5e5;
    margin-top: 30px;
    padding: 30px;
}
.post.event-preview.event-default .event-label {
    color: #000;
    font-size: 0.86em;
    font-weight: 700;
    text-transform: uppercase;
}
.post.event-preview.event-default.event-type-online .event-type-banner {
    background-color: #98302f;
    background-image: -webkit-linear-gradient(13deg, #98302f 50%, #a13332 50%);
    background-image: -o-linear-gradient(13deg, #98302f 50%, #a13332 50%);
    background-image: linear-gradient(13deg, #98302f 50%, #a13332 50%);
}
.post.event-preview.event-default .event-type-banner {
    background-color: #1fa0a7;
    background-image: -webkit-linear-gradient(13deg, #1fa0a7 50%, #21a9b0 50%);
    background-image: -o-linear-gradient(13deg, #1fa0a7 50%, #21a9b0 50%);
    background-image: linear-gradient(13deg, #1fa0a7 50%, #21a9b0 50%);
    color: #fff;
    display: inline-block;
    font-size: 1.14em;
    font-weight: 700;
    line-height: 1;
    margin-left: -34px;
    padding: 10px 30px 10px 34px;
    position: relative;
    text-transform: uppercase;
}
.post.event-preview.event-default .event-type-banner::after,
.post.event-preview.event-default .event-type-banner::before {
    opacity: 0.25;
    filter: alpha(opacity=25);
    display: block;
    width: 100%;
    content: "";
    height: 1px;
    background: #fff;
    left: 0;
    position: absolute;
}
.post.event-preview.event-default .event-type-banner::after {
    bottom: 3px;
}
.post.event-preview.event-default .event-type-banner::before {
    top: 3px;
}
.post.event-preview.event-default .event-type-banner .caret {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-bottom: 18px solid transparent;
    border-right: 18px solid #f5f5f5;
    border-top: 18px solid transparent;
    bottom: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.post.event-preview.event-default .event-date,
.post.event-preview.event-default .event-time {
    font-size: 1.29em;
    font-weight: 600;
}
.post.event-preview.event-default .event-timezone {
    color: #999;
    font-style: italic;
    font-weight: 400;
}
.post.event-preview.event-default .event-coach:before,
.post.event-preview.event-default .event-location:before,
.post.event-preview.event-default .event-coach:after,
.post.event-preview.event-default .event-location:after {
    content: " ";
    display: table;
}
.post.event-preview.event-default .event-coach:after,
.post.event-preview.event-default .event-location:after {
    clear: both;
}
.post.event-preview.event-default .event-coach:before,
.post.event-preview.event-default .event-location:before,
.post.event-preview.event-default .event-coach:after,
.post.event-preview.event-default .event-location:after {
    content: " ";
    display: table;
}
.post.event-preview.event-default .event-coach:after,
.post.event-preview.event-default .event-location:after {
    clear: both;
}
.post.event-preview.event-default .event-coach .event-info-links,
.post.event-preview.event-default .event-location .event-info-links,
.post.event-preview.event-default .event-coach .event-label,
.post.event-preview.event-default .event-location .event-label,
.post.event-preview.event-default .event-coach .event-name,
.post.event-preview.event-default .event-location .event-name {
    margin-left: 80px;
}
.post.event-preview.event-default .event-coach .event-label,
.post.event-preview.event-default .event-location .event-label {
    margin-top: 5px;
}
.post.event-preview.event-default .event-coach .event-coach-image,
.post.event-preview.event-default .event-location .event-coach-image,
.post.event-preview.event-default .event-coach .event-location-image,
.post.event-preview.event-default .event-location .event-location-image {
    border-radius: 50%;
    border: 2px solid #98302f;
    display: block;
    float: left;
    height: 70px;
    overflow: hidden;
    width: 70px;
}
.post.event-preview.event-default .event-coach .event-coach-image img,
.post.event-preview.event-default .event-location .event-coach-image img,
.post.event-preview.event-default .event-coach .event-location-image img,
.post.event-preview.event-default .event-location .event-location-image img {
    height: 100%;
    width: 100%;
}
.post.event-preview.event-default .event-coach .event-name,
.post.event-preview.event-default .event-location .event-name {
    font-size: 1.29em;
    font-weight: 600;
}
.post.event-preview.event-default .event-coach .event-info-links,
.post.event-preview.event-default .event-location .event-info-links {
    font-size: 0.86em;
    font-weight: 600;
    text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
    .post.event-preview.event-default .post-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .post.event-preview.event-default .event-links {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        margin-left: 30px;
        margin-right: 30px;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .post.event-preview.event-default .event-links .btn {
        display: inline-block;
        width: auto;
        margin-bottom: 5px;
    }
    .post.event-preview.event-default .event-links .btn + .btn {
        margin-top: 0;
    }
    .post.event-preview.event-default .event-coach {
        margin-bottom: 15px;
    }
}
@media only screen and (min-width: 992px) {
    .post.event-preview.event-default .event-type-banner {
        width: 160%;
    }
}
@media only screen and (min-width: 1200px) {
    .post.event-preview.event-default > .row {
        height: 224px;
    }
    .post.event-preview.event-default > .row > div {
        height: 100%;
    }
    .post.event-preview.event-default .event-date,
    .post.event-preview.event-default .event-time {
        white-space: nowrap;
    }
    .post.event-preview.event-default .event-type-banner {
        white-space: nowrap;
        width: auto;
    }
}
.post.event-preview.event-row .post-title {
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .post.event-preview.event-row .post-title {
        vertical-align: top;
    }
}
.post.event-preview.event-row .post-date {
    text-align: center;
}
.post.event-preview.event-row .post-time {
    font-style: italic;
    text-align: center;
    width: 150px;
}
.post.event-preview.event-row .post-datetime {
    width: 165px;
}
.post.event-preview.event-row .post-meta {
    text-align: right;
    width: 80px;
}
.events-live,
.events-online {
    background: #fff;
    padding: 20px 20px 10px;
    position: relative;
}
.events-live .row,
.events-online .row {
    border-top: 1px dashed #bdbdbd;
    padding: 15px 0;
}
.events-live .row:first-child,
.events-online .row:first-child {
    border: none;
}
.events-live .row .post-title,
.events-online .row .post-title {
    margin-top: 10px;
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .events-live .row .post-title,
    .events-online .row .post-title {
        margin-top: 0;
    }
}
.events-live .row .post-meta,
.events-online .row .post-meta {
    margin-top: 8px;
}
.events-live::before,
.events-online::before {
    border: none;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #2d3b44;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}
.events-live table,
.events-online table {
    width: 100%;
}
.events-live tr:first-child td,
.events-online tr:first-child td {
    border: none;
}
.events-live td,
.events-online td {
    border-top: 1px dashed #bdbdbd;
    font-size: 1.14em;
    padding: 15px 0;
}
.persons-founders .person {
    margin-bottom: 35px;
    text-align: center;
}
.persons-founders .person .person-image {
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    height: 277px;
    overflow: hidden;
    width: 277px;
    border: solid 3px #98302f;
}
.persons-founders .person a .person-title {
    color: #333;
}
.persons-founders .person a:hover {
    text-decoration: none;
}
.persons-founders .person .person-title {
    font-size: 1.86em;
    font-weight: 700;
    margin-top: 10px;
}
.persons-founders .person .person-content {
    color: #000;
    font-size: 1.14em;
}
.persons-coaches .person,
.persons-speakers .person {
    margin-bottom: 35px;
    text-align: center;
}
.persons-coaches .person a .person-title,
.persons-speakers .person a .person-title {
    color: #333;
}
.persons-coaches .person a:hover,
.persons-speakers .person a:hover {
    text-decoration: none;
}
.persons-coaches .person .person-image,
.persons-speakers .person .person-image {
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    height: 167px;
    overflow: hidden;
    width: 167px;
    border: solid 3px #98302f;
}
.persons-coaches .person .person-image .person-round,
.persons-speakers .person .person-image .person-round {
    width: 300px;
    height: 300px;
    border: solid 3px #98302f;
}
.persons-coaches .person .person-title,
.persons-speakers .person .person-title {
    font-size: 1.57em;
    font-weight: 700;
    margin-top: 10px;
}
.persons-coaches .person .person-content,
.persons-speakers .person .person-content {
    color: #000;
    font-size: 1.14em;
}
.event-about-types .event-type {
    margin-bottom: 35px;
    text-align: center;
}
.event-about-types .event-type .event-type-image {
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    height: 205px;
    overflow: hidden;
    width: 205px;
}
.event-about-types .event-type .event-type-image img {
    display: block;
    height: 100%;
}
.event-about-types .event-type .event-type-title {
    font-size: 1.29em;
    font-weight: 700;
    margin-top: 10px;
}
.event-about-types .event-type .event-type-content {
    color: #000;
    font-size: 1.14em;
    margin-top: 10px;
}
.events-group {
    background: #f5f5f5;
    margin-bottom: 5px;
    padding: 30px;
    position: relative;
    text-align: center;
}
.events-group:first-child {
    margin-top: 30px;
}
.events-group .events-group-date {
    background: #fff;
    color: #bbb;
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    padding: 10px 20px;
    position: relative;
    text-transform: uppercase;
    top: -20px;
    z-index: 1;
}
.program-overview-cta {
    background: #686b6f;
    border-radius: 3px;
    clear: both;
    color: #fff;
    margin-top: 50px;
    padding: 30px 60px;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .program-overview-cta {
        padding: 30px;
    }
}
.program-overview-cta p {
    font-size: 1.57em;
    margin: 0 250px 0 0;
}
@media only screen and (max-width: 767px) {
    .program-overview-cta p {
        margin: 0 0 70px;
        font-size: 1.2em;
    }
}
.program-overview-cta b {
    font-weight: 600;
}
.program-overview-cta .btn {
    color: #fff;
    background-color: #98302f;
    border-color: #782b2a;
    bottom: 30px;
    position: absolute;
    right: 60px;
}
.program-overview-cta .btn:focus,
.program-overview-cta .btn.focus {
    color: #fff;
    background-color: #712423;
    border-color: #1a0909;
}
.program-overview-cta .btn:hover {
    color: #fff;
    background-color: #712423;
    border-color: #4b1b1a;
}
.program-overview-cta .btn:active,
.program-overview-cta .btn.active,
.open > .dropdown-toggle.program-overview-cta .btn {
    color: #fff;
    background-color: #712423;
    border-color: #4b1b1a;
}
.program-overview-cta .btn:active:hover,
.program-overview-cta .btn.active:hover,
.open > .dropdown-toggle.program-overview-cta .btn:hover,
.program-overview-cta .btn:active:focus,
.program-overview-cta .btn.active:focus,
.open > .dropdown-toggle.program-overview-cta .btn:focus,
.program-overview-cta .btn:active.focus,
.program-overview-cta .btn.active.focus,
.open > .dropdown-toggle.program-overview-cta .btn.focus {
    color: #fff;
    background-color: #561b1b;
    border-color: #1a0909;
}
.program-overview-cta .btn:active,
.program-overview-cta .btn.active,
.open > .dropdown-toggle.program-overview-cta .btn {
    background-image: none;
}
.program-overview-cta .btn.disabled,
.program-overview-cta .btn[disabled],
fieldset[disabled] .program-overview-cta .btn,
.program-overview-cta .btn.disabled:hover,
.program-overview-cta .btn[disabled]:hover,
fieldset[disabled] .program-overview-cta .btn:hover,
.program-overview-cta .btn.disabled:focus,
.program-overview-cta .btn[disabled]:focus,
fieldset[disabled] .program-overview-cta .btn:focus,
.program-overview-cta .btn.disabled.focus,
.program-overview-cta .btn[disabled].focus,
fieldset[disabled] .program-overview-cta .btn.focus,
.program-overview-cta .btn.disabled:active,
.program-overview-cta .btn[disabled]:active,
fieldset[disabled] .program-overview-cta .btn:active,
.program-overview-cta .btn.disabled.active,
.program-overview-cta .btn[disabled].active,
fieldset[disabled] .program-overview-cta .btn.active {
    background-color: #98302f;
    border-color: #782b2a;
}
.program-overview-cta .btn .badge {
    color: #98302f;
    background-color: #fff;
}
.story-list-programs-cta {
    background: #686b6f;
    background-size: cover;
    border-radius: 3px;
    clear: both;
    color: #fff;
    margin-top: 50px;
    padding: 30px 60px;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .story-list-programs-cta {
        padding: 30px 20px;
    }
}
.story-list-programs-cta h3 {
    font-size: 2.57em;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 1em;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .story-list-programs-cta h3 {
        font-size: 1.8em;
    }
}
.story-list-programs-cta h3 .icon {
    fill: #fff;
    height: 48px;
    margin-right: 8px;
    vertical-align: middle;
    width: 48px;
}
.story-list-programs-cta .btn-cta {
    bottom: 30px;
    position: absolute;
    right: 60px;
}
@media only screen and (max-width: 767px) {
    .story-list-programs-cta .btn-cta {
        right: 1%;
        font-size: 1.2em;
    }
}
.story-list-programs-cta p {
    font-size: 1.14em;
    margin: 0 400px 0 0;
}
@media only screen and (max-width: 767px) {
    .story-list-programs-cta p {
        margin: 0 0 65px;
    }
}
.related-links {
    background: #644459;
    border-radius: 3px;
    color: #fff;
    margin-bottom: 60px;
    padding: 25px;
}
.related-links h3 {
    font-size: 2em;
    margin-top: 0;
}
.related-links a {
    color: #fff;
    display: inline-block;
    margin-left: 5px;
}
.no-touch .related-links a:hover {
    color: #d9d9d9;
}
.single .type-story {
    margin: 30px 0;
}
.single .type-story .size-full {
    height: auto;
    max-width: 100%;
    border-radius: 4px;
    margin-top: 30px;
}
.single .type-story p {
    font-size: 1.14em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5em;
}
.single .story-header h1 {
    margin-bottom: 10px !important;
}
.single .story-header p {
    margin-bottom: 0;
}
.single .story-header h4 {
    color: #666;
    font-weight: 600;
    margin-top: 0;
}
.single .story-quote {
    margin: 30px 0;
    min-height: 440px;
    background-size: cover;
}
.single .story-quote blockquote {
    border: none !important;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 30px 20px;
    position: relative;
    background: #d47600;
    background-color: rgba(212, 118, 0, 0.75);
}
.single .story-quote blockquote:after,
.single .story-quote blockquote:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.single .story-quote blockquote:after {
    border-color: rgba(212, 118, 0, 0);
    border-top-color: rgba(212, 118, 0, 0.75);
    border-width: 30px;
    margin-left: -30px;
}
.single .story-quote blockquote p {
    color: #fff;
    font-size: 1.75em;
    font-weight: 100;
    quotes: "\201C""\201D""\2018""\2019";
}
@media only screen and (max-width: 767px) {
    .single .story-quote blockquote p {
        font-size: 1.25em;
    }
}
.single .story-quote blockquote p:after,
.single .story-quote blockquote p:before {
    color: #fff;
    content: open-quote;
    font-size: 2em;
    line-height: 0.1em;
    margin-right: 0.05em;
    vertical-align: -0.35em;
}
.single .story-quote blockquote p:after {
    content: close-quote;
    margin-right: 0.25em;
    vertical-align: -0.35em;
}
.single .story-quote blockquote p {
    display: inline;
}
.program .program-container {
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.13);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.13);
    border: 1px solid #f2f2f2;
    border-top: none;
    background: #f5f5f5;
    margin-bottom: 30px;
    position: relative;
    font-size: 16px;
}
.program .program-container.sold-out {
    box-shadow: none;
    border: 2px dotted #ccc !important;
}
.program .program-container.sold-out * {
    color: #bbb !important;
}
.program .program-container.sold-out .btn-primary {
    background-color: #bbb;
    border-color: #bbb;
    color: #fff !important;
}
.program .program-container.sold-out .program-location img {
    opacity: 0.25;
}
.program .program-container .sold-out-container {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    z-index: 1;
}
.program .program-container .sold-out-container .sold-out-icon {
    background-image: url(../img/sprite.png);
    background-position: 0 -226px;
    width: 185px;
    height: 185px;
    display: inline-block;
    position: absolute;
    right: -1px;
    bottom: -1px;
    z-index: 999;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .program .program-container .sold-out-container .sold-out-icon {
        background-image: url(../img/sprite@2x.png);
        background-position: 0 -452px;
        width: 370px;
        height: 370px;
        display: inline-block;
        background-position: 0 -226px;
        height: 185px;
        width: 185px;
        background-size: 538px 536px;
    }
}
.program .program-container .sold-out-container .sold-out-icon.white {
    background-image: url(../img/sprite.png);
    background-position: -226px 0;
    width: 185px;
    height: 185px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    .program .program-container .sold-out-container .sold-out-icon.white {
        background-image: url(../img/sprite@2x.png);
        background-position: -452px 0;
        width: 370px;
        height: 370px;
        display: inline-block;
        background-position: -226px 0;
        height: 185px;
        width: 185px;
        background-size: 538px 536px;
    }
}
.program .program-container h4,
.program .program-container h5 {
    margin: 5px 0;
}
.program .program-container h4 {
    font-size: 1.285em;
}
.program .program-container h5 {
    font-size: 0.75em;
    color: #474848;
    text-transform: uppercase;
    font-weight: 400;
}
.program .program-container .program-location {
    margin: 2px;
    padding: 10px 30px;
}
.program .program-container .program-location.form {
    background-color: #fff;
}
.program .program-container .program-location img {
    margin-right: 10px;
    width: 67px;
}
.program .program-container .program-location .row > div {
    padding: 10px 0;
}
.program .program-container .program-location a {
    font-size: 0.75em;
}
.program .program-container .program-dates,
.program .program-container .program-fees {
    padding: 20px 0 0;
}
@media only screen and (max-width: 767px) {
    .program .program-container .program-dates,
    .program .program-container .program-fees {
        padding: 20px 10px 0;
    }
}
.program .program-container .program-dates .program-fee,
.program .program-container .program-fees .program-fee {
    font-size: 1.375em;
}
.program .program-container .program-dates .program-fee.deposit,
.program .program-container .program-fees .program-fee.deposit {
    font-size: 0.875em;
    color: #000;
    font-style: italic;
    padding-bottom: 15px;
}
.program .program-container .program-dates .date,
.program .program-container .program-fees .date {
    padding: 8px 0;
}
@media only screen and (max-width: 767px) {
    .program .program-container .program-dates .date,
    .program .program-container .program-fees .date {
        font-size: 13px;
    }
}
.program .program-container .program-dates .date span,
.program .program-container .program-fees .date span {
    color: #000;
}
.program .program-container .program-dates .date .program-number,
.program .program-container .program-fees .date .program-number {
    font-style: italic;
    border-right: 1px solid #999;
    margin-right: 20px;
    padding-right: 20px;
}
@media only screen and (max-width: 767px) {
    .program .program-container .program-dates .date .program-number,
    .program .program-container .program-fees .date .program-number {
        margin-right: 10px;
        padding-right: 10px;
    }
}
.program .program-container .program-fees {
    padding: 30px 30px 20px 0;
}
.program .program-container .program-dates-modal {
    padding: 12px 0 0;
}
@media only screen and (max-width: 767px) {
    .program .program-container .program-dates-modal {
        padding: 12px 10px 0;
    }
}
.program .program-container .program-dates-modal .date {
    padding: 8px 0;
}
@media only screen and (max-width: 767px) {
    .program .program-container .program-dates-modal .date {
        font-size: 13px;
    }
}
.program .program-container .form {
    padding: 0 30px;
}
.program .program-container .form h2 {
    padding-bottom: 30px;
}
.program .program-container .form .program-fees {
    padding: 12px 30px 0 0;
}
.program .program-container .form .program-fee.deposit {
    padding-bottom: 5px;
}
.program .program-container .form .row {
    margin: 0;
}
.program .program-container .form .form-section {
    margin-bottom: 5px;
}
.program .program-container .form .dropdown-toggle {
    width: 100%;
    text-align: left;
}
.percentage-banner {
    background-color: #283949;
    padding: 0.5em 0 0.5em 1em;
    border-radius: 0 8pt 8pt 0;
    color: #fff;
    font-size: 16pt;
    font-weight: 700;
}
#accordion.panel-group .panel + .panel {
    margin-top: 20px;
}
#accordion .panel-heading {
    padding: 10px;
}
#accordion .panel {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    border: 1px solid #f2f2f2;
    border-top: none;
}
#accordion .panel .panel-body {
    padding-left: 80px;
    border: none;
}
#accordion .panel .panel-heading {
    padding: 0;
}
#accordion .panel .panel-heading .link-more {
    float: left;
    padding: 10px 10px 0;
}
#accordion .panel .panel-heading .link-more span {
    margin-bottom: 0;
}
#accordion .panel .panel-heading h4.panel-title {
    background-color: #f5f5f5;
    margin-left: 60px;
}
#accordion .panel .panel-heading h4.panel-title a {
    padding: 20px;
    display: block;
}
#accordion .panel.fact h4.panel-title {
    background-color: #fff;
    margin-left: 0;
}
#accordion .panel.fact p {
    margin-bottom: 0;
    padding: 20px;
}
.wp-caption {
    font-size: 0.875em;
    color: #000;
}
.wp-caption img {
    max-width: 100%;
    height: auto;
}
.wp-caption p.wp-caption-text {
    text-align: center;
    font-style: italic;
    padding: 10px;
    font-size: 1em;
    margin-bottom: 0;
}
.alignleft {
    float: left;
    display: inline-block;
    padding: 0 15px 15px 0;
}
.alignright {
    float: right;
    display: inline-block;
    padding: 0 0 15px 15px;
}
#app-modal .modal-body {
    overflow: visible;
}
#app-modal .share {
    margin-bottom: 40px;
}
#event-modal .share {
    border-left: 1px solid #ccc;
}
#event-modal h4,
#event-modal h5 {
    margin: 5px 0;
    padding-bottom: 5px;
}
#event-modal h5 {
    color: #bbb;
    font-size: 0.75em;
    font-weight: 400;
    text-transform: uppercase;
    font-weight: 600;
}
#event-modal .img-banner {
    position: relative;
}
#event-modal .img-banner .event-banner {
    position: absolute;
    top: 10px;
    left: 0;
    padding: 10px 20px;
    color: #fff;
    margin-left: 0;
}
.event-information {
    background-color: #fffcf3;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.event-information h2 {
    margin-top: 5px;
}
.post-locations {
    text-align: center;
}
.fill-height {
    height: 280px !important;
}
.bootcamp-date {
    font-size: 80%;
    margin-left: 60px;
}
.postid-539 .program .col-sm-12.col-md-9 {
    width: 100%;
}
body.home .primary-nav .navbar-brand {
    display: block !important;
}
@media (min-width: 1200px) {
    body.home .primary-nav .navbar-brand {
        display: none;
    }
}
body.page-stories .story-list {
    background: #f5f5f5;
    padding: 60px 0;
}
#facts,
#section-email {
    background-color: #dedfe2;
}
.media-header {
    background-color: #21a9b0;
    padding: 45px 0;
}
.media-header .media-app {
    margin-top: -76px;
    margin-bottom: -20px;
}
@media only screen and (max-width: 767px) {
    .media-header .media-app {
        margin-top: 0;
    }
}
.media-header .media-app.confirmation {
    background-color: #25b9c1;
}
@media only screen and (max-width: 767px) {
    .media-header .tout {
        margin-bottom: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .media-header .tout {
        margin-bottom: 20px;
    }
}
.media-header .section-title {
    color: #fff;
    font-size: 1.4em;
    font-weight: 600;
    padding: 20px 0 10px 0;
}
.media-header img {
    display: inline;
}
#contacts,
.contact-information {
    padding-bottom: 0;
}
#contacts.media-container,
.contact-information.media-container {
    padding-bottom: 20px;
}
#contacts h3,
.contact-information h3 {
    padding-top: 0;
    padding-bottom: 20px;
}
#contacts h4,
.contact-information h4 {
    margin: 0;
}
#contacts .btn,
.contact-information .btn {
    margin-top: 20px;
}
#contacts a span.icon,
.contact-information a span.icon {
    margin-right: 10px;
}
#contacts ul,
.contact-information ul {
    padding: 15px 0;
}
@media only screen and (max-width: 767px) {
    #contacts ul,
    .contact-information ul {
        font-size: 12px;
    }
}
#contacts ul li,
.contact-information ul li {
    padding: 5px 0;
}
#contacts ul li.fax,
.contact-information ul li.fax {
    padding-top: 15px;
}
#contacts ul li span.icon,
.contact-information ul li span.icon {
    margin-right: 10px;
}
#contacts ul li span.address,
.contact-information ul li span.address {
    background-image: url(../img/sprite.png);
    background-position: -257px -377px;
    width: 16px;
    height: 25px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #contacts ul li span.address,
    .contact-information ul li span.address {
        background-image: url(../img/sprite@2x.png);
        background-position: -513px -753px;
        width: 31px;
        height: 49px;
        display: inline-block;
        background-position: -257px -377px;
        height: 25px;
        width: 16px;
        background-size: 538px 536px;
    }
}
#contacts ul li span.phone,
.contact-information ul li span.phone {
    background-image: url(../img/sprite.png);
    background-position: -353px -359px;
    width: 13px;
    height: 14px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #contacts ul li span.phone,
    .contact-information ul li span.phone {
        background-image: url(../img/sprite@2x.png);
        background-position: -706px -718px;
        width: 26px;
        height: 28px;
        display: inline-block;
        background-position: -353px -359px;
        height: 14px;
        width: 13px;
        background-size: 538px 536px;
    }
}
#contacts ul li span.fax,
.contact-information ul li span.fax {
    background-image: url(../img/sprite.png);
    background-position: -511px -473px;
    width: 13px;
    height: 15px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #contacts ul li span.fax,
    .contact-information ul li span.fax {
        background-image: url(../img/sprite@2x.png);
        background-position: -1021px -945px;
        width: 26px;
        height: 29px;
        display: inline-block;
        background-position: -511px -473px;
        height: 15px;
        width: 13px;
        background-size: 538px 536px;
    }
}
#browser-update {
    background-color: #b55c12;
    padding: 10px 0;
    display: none;
}
#browser-update .icon-warning {
    background-image: url(../img/sprite.png);
    background-position: -490px -385px;
    width: 48px;
    height: 44px;
    display: inline-block;
    margin: 5px 30px 0 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #browser-update .icon-warning {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -770px;
        width: 96px;
        height: 87px;
        display: inline-block;
        background-position: -490px -385px;
        height: 44px;
        width: 48px;
        background-size: 538px 536px;
    }
}
#browser-update .logo-firefox {
    background-image: url(../img/sprite.png);
    background-position: -366px -412px;
    width: 49px;
    height: 50px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #browser-update .logo-firefox {
        background-image: url(../img/sprite@2x.png);
        background-position: -731px -824px;
        width: 98px;
        height: 100px;
        display: inline-block;
        background-position: -366px -412px;
        height: 50px;
        width: 49px;
        background-size: 538px 536px;
    }
}
#browser-update .logo-chrome {
    background-image: url(../img/sprite.png);
    background-position: -416px -412px;
    width: 50px;
    height: 50px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #browser-update .logo-chrome {
        background-image: url(../img/sprite@2x.png);
        background-position: -831px -824px;
        width: 99px;
        height: 100px;
        display: inline-block;
        background-position: -416px -412px;
        height: 50px;
        width: 50px;
        background-size: 538px 536px;
    }
}
#browser-update .logo-explorer {
    background-image: url(../img/sprite.png);
    background-position: -315px -412px;
    width: 50px;
    height: 50px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #browser-update .logo-explorer {
        background-image: url(../img/sprite@2x.png);
        background-position: -630px -824px;
        width: 99px;
        height: 100px;
        display: inline-block;
        background-position: -315px -412px;
        height: 50px;
        width: 50px;
        background-size: 538px 536px;
    }
}
#browser-update .logo-safari {
    background-image: url(../img/sprite.png);
    background-position: -215px -412px;
    width: 49px;
    height: 50px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #browser-update .logo-safari {
        background-image: url(../img/sprite@2x.png);
        background-position: -430px -824px;
        width: 98px;
        height: 100px;
        display: inline-block;
        background-position: -215px -412px;
        height: 50px;
        width: 49px;
        background-size: 538px 536px;
    }
}
#browser-update .logo-opera {
    background-image: url(../img/sprite.png);
    background-position: -265px -412px;
    width: 49px;
    height: 50px;
    display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #browser-update .logo-opera {
        background-image: url(../img/sprite@2x.png);
        background-position: -530px -824px;
        width: 98px;
        height: 100px;
        display: inline-block;
        background-position: -265px -412px;
        height: 50px;
        width: 49px;
        background-size: 538px 536px;
    }
}
#browser-update .logo-dismiss {
    color: #ebb700;
    padding: 12px 40px 12px 0;
    cursor: pointer;
}
#browser-update .logo-dismiss::after {
    content: "";
    background-image: url(../img/sprite.png);
    background-position: -490px -430px;
    width: 42px;
    height: 42px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-device-pixel-ratio: 1.5) {
    #browser-update .logo-dismiss::after {
        background-image: url(../img/sprite@2x.png);
        background-position: -980px -859px;
        width: 84px;
        height: 84px;
        display: inline-block;
        background-position: -490px -430px;
        height: 42px;
        width: 42px;
        background-size: 538px 536px;
    }
}
#browser-update p {
    color: #fff;
    margin: 5px 0 0 0;
}
@media only screen and (max-width: 991px) {
    #browser-update .browsers {
        margin-top: 10px;
    }
}
#browser-update .browsers div {
    float: left;
    margin: 0 5px;
}
#browser-update.show-me {
    display: block;
}
