.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
@-webkit-keyframes bounce {
    0%,
    100%,
    20%,
    53%,
    80% {
        -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%,
    100%,
    20%,
    53%,
    80% {
        -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;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}
@-webkit-keyframes flash {
    0%,
    100%,
    50% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@keyframes flash {
    0%,
    100%,
    50% {
        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;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(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%,
    100%,
    20%,
    40%,
    60%,
    80% {
        -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%,
    100%,
    20%,
    40%,
    60%,
    80% {
        -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-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
@-webkit-keyframes bounceInDown {
    0%,
    100%,
    60%,
    75%,
    90% {
        -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%,
    100%,
    60%,
    75%,
    90% {
        -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%,
    100%,
    60%,
    75%,
    90% {
        -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%,
    100%,
    60%,
    75%,
    90% {
        -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%,
    100%,
    60%,
    75%,
    90% {
        -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%,
    100%,
    60%,
    75%,
    90% {
        -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%,
    100%,
    60%,
    75%,
    90% {
        -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%,
    100%,
    60%,
    75%,
    90% {
        -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-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(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-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}
.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
@keyframes rollOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(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: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden] {
    display: none;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    margin: 0;
}
a:active,
a:hover {
    outline: 0;
}
h1 {
    margin: 0.67em 0;
}
b,
strong {
    font-weight: 700;
}
dfn {
    font-style: italic;
}
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}
mark {
    background: #ff0;
    color: #000;
}
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}
pre {
    white-space: pre-wrap;
}
q {
    quotes: "\201C""\201D""\2018""\2019";
}
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: 0;
}
button,
input,
select,
textarea {
    margin: 0;
}
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;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="search"] {
    -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
@media print {
    * {
        text-shadow: none !important;
        color: #000 !important;
        background: 0 0 !important;
        box-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    img,
    tr {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 2cm 0.5cm;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    .navbar {
        display: none;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }
    .label {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table-bordered td,
    .table-bordered th {
        border: 1px solid #ddd !important;
    }
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-size: 14px;
    line-height: 1.428571429;
    color: #333;
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
input,
select[multiple],
textarea {
    background-image: none;
}
a {
    color: #428bca;
    text-decoration: none;
}
a:focus,
a:hover {
    color: #2a6496;
    text-decoration: underline;
}
a:focus {
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px;
}
img {
    vertical-align: middle;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.img-rounded {
    border-radius: 6px;
}
.img-thumbnail,
.thumbnail {
    padding: 4px;
    line-height: 1.428571429;
    background-color: #555;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-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;
}
p {
    margin: 0 0 10px;
}
.lead {
    margin-bottom: 20px;
    font-size: 16.1px;
    font-weight: 200;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .lead {
        font-size: 21px;
    }
}
small {
    font-size: 85%;
}
cite {
    font-style: normal;
}
.text-muted {
    color: #999;
}
.text-primary {
    color: #428bca;
}
.text-warning {
    color: #c09853;
}
.text-danger {
    color: #b94a48;
}
.text-success {
    color: #468847;
}
.text-info {
    color: #3a87ad;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.1;
}
.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: #999;
}
h1,
h2,
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}
h4,
h5,
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.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;
}
.h1 small,
h1 small {
    font-size: 24px;
}
.h2 small,
h2 small {
    font-size: 18px;
}
.h3 small,
.h4 small,
h3 small,
h4 small {
    font-size: 14px;
}
.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}
ol,
ul {
    margin-top: 0;
    margin-bottom: 10px;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}
dl {
    margin-bottom: 20px;
}
dd,
dt {
    line-height: 1.428571429;
}
dt {
    font-weight: 700;
}
dd {
    margin-left: 0;
}
@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .dl-horizontal dd {
        margin-left: 180px;
    }
    .dl-horizontal dd:after,
    .dl-horizontal dd:before {
        content: " ";
        display: table;
    }
    .dl-horizontal dd:after {
        clear: both;
    }
}
abbr[data-original-title],
abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #999;
}
abbr.initialism {
    font-size: 90%;
    text-transform: uppercase;
}
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eee;
}
blockquote p {
    font-size: 17.5px;
    font-weight: 300;
    line-height: 1.25;
}
blockquote p:last-child {
    margin-bottom: 0;
}
blockquote small {
    display: block;
    line-height: 1.428571429;
    color: #999;
}
blockquote small:before {
    content: "\2014 \00A0";
}
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small {
    text-align: right;
}
blockquote.pull-right small:before {
    content: "";
}
blockquote.pull-right small:after {
    content: "\00A0 \2014";
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
}
address {
    display: block;
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.428571429;
}
code,
pre {
    font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}
code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    white-space: nowrap;
    border-radius: 4px;
}
pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.428571429;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}
pre.prettyprint {
    margin-bottom: 20px;
}
pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border: 0;
}
.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}
.container {
    margin-right: auto;
    margin-left: auto;
}
.container:after,
.container:before {
    content: " ";
    display: table;
}
.container:after {
    clear: both;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.row:after,
.row:before {
    content: " ";
    display: table;
}
.row:after {
    clear: both;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    float: left;
}
.col-xs-1 {
    width: 8.3333333333%;
}
.col-xs-2 {
    width: 16.6666666667%;
}
.col-xs-3 {
    width: 25%;
}
.col-xs-4 {
    width: 33.3333333333%;
}
.col-xs-5 {
    width: 41.6666666667%;
}
.col-xs-6 {
    width: 50%;
}
.col-xs-7 {
    width: 58.3333333333%;
}
.col-xs-8 {
    width: 66.6666666667%;
}
.col-xs-9 {
    width: 75%;
}
.col-xs-10 {
    width: 83.3333333333%;
}
.col-xs-11 {
    width: 91.6666666667%;
}
.col-xs-12 {
    width: 100%;
}
@media (min-width: 768px) {
    .container {
        max-width: 1024px;
    }
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9 {
        float: left;
    }
    .col-sm-1 {
        width: 8.3333333333%;
    }
    .col-sm-2 {
        width: 16.6666666667%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.3333333333%;
    }
    .col-sm-5 {
        width: 41.6666666667%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.3333333333%;
    }
    .col-sm-8 {
        width: 66.6666666667%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.3333333333%;
    }
    .col-sm-11 {
        width: 91.6666666667%;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-push-1 {
        left: 8.3333333333%;
    }
    .col-sm-push-2 {
        left: 16.6666666667%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-4 {
        left: 33.3333333333%;
    }
    .col-sm-push-5 {
        left: 41.6666666667%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-7 {
        left: 58.3333333333%;
    }
    .col-sm-push-8 {
        left: 66.6666666667%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-10 {
        left: 83.3333333333%;
    }
    .col-sm-push-11 {
        left: 91.6666666667%;
    }
    .col-sm-pull-1 {
        right: 8.3333333333%;
    }
    .col-sm-pull-2 {
        right: 16.6666666667%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-4 {
        right: 33.3333333333%;
    }
    .col-sm-pull-5 {
        right: 41.6666666667%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-7 {
        right: 58.3333333333%;
    }
    .col-sm-pull-8 {
        right: 66.6666666667%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-10 {
        right: 83.3333333333%;
    }
    .col-sm-pull-11 {
        right: 91.6666666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.3333333333%;
    }
    .col-sm-offset-2 {
        margin-left: 16.6666666667%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-4 {
        margin-left: 33.3333333333%;
    }
    .col-sm-offset-5 {
        margin-left: 41.6666666667%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-7 {
        margin-left: 58.3333333333%;
    }
    .col-sm-offset-8 {
        margin-left: 66.6666666667%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-10 {
        margin-left: 83.3333333333%;
    }
    .col-sm-offset-11 {
        margin-left: 91.6666666667%;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 1024px;
    }
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        float: left;
    }
    .col-md-1 {
        width: 8.3333333333%;
    }
    .col-md-2 {
        width: 16.6666666667%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.3333333333%;
    }
    .col-md-5 {
        width: 41.6666666667%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.3333333333%;
    }
    .col-md-8 {
        width: 66.6666666667%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.3333333333%;
    }
    .col-md-11 {
        width: 91.6666666667%;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-push-1 {
        left: 8.3333333333%;
    }
    .col-md-push-2 {
        left: 16.6666666667%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-4 {
        left: 33.3333333333%;
    }
    .col-md-push-5 {
        left: 41.6666666667%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-7 {
        left: 58.3333333333%;
    }
    .col-md-push-8 {
        left: 66.6666666667%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-10 {
        left: 83.3333333333%;
    }
    .col-md-push-11 {
        left: 91.6666666667%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-pull-1 {
        right: 8.3333333333%;
    }
    .col-md-pull-2 {
        right: 16.6666666667%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-4 {
        right: 33.3333333333%;
    }
    .col-md-pull-5 {
        right: 41.6666666667%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-7 {
        right: 58.3333333333%;
    }
    .col-md-pull-8 {
        right: 66.6666666667%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-10 {
        right: 83.3333333333%;
    }
    .col-md-pull-11 {
        right: 91.6666666667%;
    }
    .col-md-offset-0 {
        margin-left: 0;
    }
    .col-md-offset-1 {
        margin-left: 8.3333333333%;
    }
    .col-md-offset-2 {
        margin-left: 16.6666666667%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-4 {
        margin-left: 33.3333333333%;
    }
    .col-md-offset-5 {
        margin-left: 41.6666666667%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-7 {
        margin-left: 58.3333333333%;
    }
    .col-md-offset-8 {
        margin-left: 66.6666666667%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-10 {
        margin-left: 83.3333333333%;
    }
    .col-md-offset-11 {
        margin-left: 91.6666666667%;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: left;
    }
    .col-lg-1 {
        width: 8.3333333333%;
    }
    .col-lg-2 {
        width: 16.6666666667%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33.3333333333%;
    }
    .col-lg-5 {
        width: 41.6666666667%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.3333333333%;
    }
    .col-lg-8 {
        width: 66.6666666667%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-10 {
        width: 83.3333333333%;
    }
    .col-lg-11 {
        width: 91.6666666667%;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-push-1 {
        left: 8.3333333333%;
    }
    .col-lg-push-2 {
        left: 16.6666666667%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-4 {
        left: 33.3333333333%;
    }
    .col-lg-push-5 {
        left: 41.6666666667%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-7 {
        left: 58.3333333333%;
    }
    .col-lg-push-8 {
        left: 66.6666666667%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-10 {
        left: 83.3333333333%;
    }
    .col-lg-push-11 {
        left: 91.6666666667%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-pull-1 {
        right: 8.3333333333%;
    }
    .col-lg-pull-2 {
        right: 16.6666666667%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-4 {
        right: 33.3333333333%;
    }
    .col-lg-pull-5 {
        right: 41.6666666667%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-7 {
        right: 58.3333333333%;
    }
    .col-lg-pull-8 {
        right: 66.6666666667%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-10 {
        right: 83.3333333333%;
    }
    .col-lg-pull-11 {
        right: 91.6666666667%;
    }
    .col-lg-offset-0 {
        margin-left: 0;
    }
    .col-lg-offset-1 {
        margin-left: 8.3333333333%;
    }
    .col-lg-offset-2 {
        margin-left: 16.6666666667%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-4 {
        margin-left: 33.3333333333%;
    }
    .col-lg-offset-5 {
        margin-left: 41.6666666667%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-7 {
        margin-left: 58.3333333333%;
    }
    .col-lg-offset-8 {
        margin-left: 66.6666666667%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-10 {
        margin-left: 83.3333333333%;
    }
    .col-lg-offset-11 {
        margin-left: 91.6666666667%;
    }
}
table {
    max-width: 100%;
    background-color: transparent;
}
th {
    text-align: left;
}
.table {
    width: 100%;
    margin-bottom: 20px;
}
.table tbody > tr > td,
.table tbody > tr > th,
.table tfoot > tr > td,
.table tfoot > tr > th,
.table thead > tr > td,
.table thead > tr > th {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
.table caption + thead tr:first-child td,
.table caption + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table thead:first-child tr:first-child td,
.table thead:first-child tr:first-child th {
    border-top: 0;
}
.table tbody + tbody {
    border-top: 2px solid #ddd;
}
.table .table {
    background-color: #555;
}
.table-condensed tbody > tr > td,
.table-condensed tbody > tr > th,
.table-condensed tfoot > tr > td,
.table-condensed tfoot > tr > th,
.table-condensed thead > tr > td,
.table-condensed thead > tr > th {
    padding: 5px;
}
.table-bordered,
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5;
}
table col[class*="col-"] {
    float: none;
    display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
    float: none;
    display: table-cell;
}
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > thead > tr > td.active,
.table > thead > tr > th.active {
    background-color: #f5f5f5;
}
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > thead > tr > td.success,
.table > thead > tr > th.success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover {
    background-color: #d0e9c6;
    border-color: #c9e2b3;
}
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > thead > tr > td.danger,
.table > thead > tr > th.danger {
    background-color: #f2dede;
    border-color: #eed3d7;
}
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover {
    background-color: #ebcccc;
    border-color: #e6c1c7;
}
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > thead > tr > td.warning,
.table > thead > tr > th.warning {
    background-color: #fcf8e3;
    border-color: #fbeed5;
}
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover {
    background-color: #faf2cc;
    border-color: #f8e5be;
}
@media (max-width: 768px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        overflow-x: scroll;
        border: 1px solid #ddd;
    }
    .table-responsive > .table {
        margin-bottom: 0;
        background-color: #fff;
    }
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > td,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > thead > tr > th {
        white-space: nowrap;
    }
    .table-responsive > .table-bordered {
        border: 0;
    }
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > thead > tr > th:first-child {
        border-left: 0;
    }
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > thead > tr > th:last-child {
        border-right: 0;
    }
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > thead > tr:last-child > td,
    .table-responsive > .table-bordered > thead > tr:last-child > th {
        border-bottom: 0;
    }
}
fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}
label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
}
input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input[type="checkbox"],
input[type="radio"] {
    margin: 4px 0 0;
    line-height: normal;
}
input[type="file"] {
    display: block;
}
select[multiple],
select[size] {
    height: auto;
}
select optgroup {
    font-size: inherit;
    font-style: inherit;
    font-family: inherit;
}
input[type="checkbox"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus {
    outline: #333 dotted thin;
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
.form-control:-moz-placeholder {
    color: #999;
}
.form-control::-moz-placeholder {
    color: #999;
}
.form-control:-ms-input-placeholder {
    color: #999;
}
.form-control::-webkit-input-placeholder {
    color: #999;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 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[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee;
}
textarea.form-control {
    height: auto;
}
.form-group {
    margin-bottom: 15px;
}
.checkbox,
.radio {
    display: block;
    min-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
    vertical-align: middle;
}
.checkbox label,
.radio label {
    display: inline;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    float: left;
    margin-left: -20px;
}
.checkbox + .checkbox,
.radio + .radio {
    margin-top: -5px;
}
.checkbox-inline,
.radio-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer;
}
.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
    margin-top: 0;
    margin-left: 10px;
}
.checkbox-inline[disabled],
.checkbox[disabled],
.radio-inline[disabled],
.radio[disabled],
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="radio"][disabled] {
    cursor: not-allowed;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.input-group-sm > .input-group-btn > select.btn,
.input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
select.input-sm {
    height: 30px;
    line-height: 30px;
}
.input-group-sm > .input-group-btn > textarea.btn,
.input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
textarea.input-sm {
    height: auto;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.input-lg {
    height: 45px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
.input-group-lg > .input-group-btn > select.btn,
.input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
select.input-lg {
    height: 45px;
    line-height: 45px;
}
.input-group-lg > .input-group-btn > textarea.btn,
.input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
textarea.input-lg {
    height: auto;
}
.has-warning .control-label,
.has-warning .help-block {
    color: #c09853;
}
.has-warning .form-control {
    border-color: #c09853;
    -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: #a47e3c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
.has-warning .input-group-addon {
    color: #c09853;
    border-color: #c09853;
    background-color: #fcf8e3;
}
.has-error .control-label,
.has-error .help-block {
    color: #b94a48;
}
.has-error .form-control {
    border-color: #b94a48;
    -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: #953b39;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
.has-error .input-group-addon {
    color: #b94a48;
    border-color: #b94a48;
    background-color: #f2dede;
}
.has-success .control-label,
.has-success .help-block {
    color: #468847;
}
.has-success .form-control {
    border-color: #468847;
    -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: #356635;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
.has-success .input-group-addon {
    color: #468847;
    border-color: #468847;
    background-color: #dff0d8;
}
.form-control-static {
    margin-bottom: 0;
    padding-top: 7px;
}
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}
@media (min-width: 768px) {
    .form-inline .form-group,
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .form-inline .form-control,
    .navbar-form .form-control {
        display: inline-block;
    }
    .form-inline .checkbox,
    .form-inline .radio,
    .navbar-form .checkbox,
    .navbar-form .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
    }
    .form-inline .checkbox input[type="checkbox"],
    .form-inline .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"],
    .navbar-form .radio input[type="radio"] {
        float: none;
        margin-left: 0;
    }
}
.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .radio-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
}
.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px;
}
.form-horizontal .form-group:after,
.form-horizontal .form-group:before {
    content: " ";
    display: table;
}
.form-horizontal .form-group:after {
    clear: both;
}
@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
    }
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: pbs_kids_headlinebold, sans-serif;
    line-height: 1.428571429;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.btn:focus {
    outline-offset: -2px;
}
.btn:focus,
.btn:hover {
    color: #333;
    text-decoration: none;
    outline: 0;
}
.btn.active,
.btn:active {
    outline: 0;
    background-image: none;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default.active,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.open .btn-default.dropdown-toggle {
    color: #333;
    background-color: #ebebeb;
    border-color: #adadad;
}
.btn-default.active,
.btn-default:active,
.open .btn-default.dropdown-toggle {
    background-image: none;
}
.btn-default.disabled,
.btn-default.disabled.active,
.btn-default.disabled:active,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled],
.btn-default[disabled].active,
.btn-default[disabled]:active,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-default.active,
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: #fff;
    border-color: #ccc;
}
.btn-primary {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
}
.btn-primary.active,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.open .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #3276b1;
    border-color: #285e8e;
}
.btn-primary.active,
.btn-primary:active,
.open .btn-primary.dropdown-toggle {
    background-image: none;
}
.btn-primary.disabled,
.btn-primary.disabled.active,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled],
.btn-primary[disabled].active,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: #428bca;
    border-color: #357ebd;
}
.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-warning.active,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:hover,
.open .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ed9c28;
    border-color: #d58512;
}
.btn-warning.active,
.btn-warning:active,
.open .btn-warning.dropdown-toggle {
    background-image: none;
}
.btn-warning.disabled,
.btn-warning.disabled.active,
.btn-warning.disabled:active,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled],
.btn-warning[disabled].active,
.btn-warning[disabled]:active,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-warning.active,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger.active,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.open .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #d2322d;
    border-color: #ac2925;
}
.btn-danger.active,
.btn-danger:active,
.open .btn-danger.dropdown-toggle {
    background-image: none;
}
.btn-danger.disabled,
.btn-danger.disabled.active,
.btn-danger.disabled:active,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled],
.btn-danger[disabled].active,
.btn-danger[disabled]:active,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger,
fieldset[disabled] .btn-danger.active,
fieldset[disabled] .btn-danger:active,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn-success.active,
.btn-success:active,
.btn-success:focus,
.btn-success:hover,
.open .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #47a447;
    border-color: #398439;
}
.btn-success.active,
.btn-success:active,
.open .btn-success.dropdown-toggle {
    background-image: none;
}
.btn-success.disabled,
.btn-success.disabled.active,
.btn-success.disabled:active,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled],
.btn-success[disabled].active,
.btn-success[disabled]:active,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-success.active,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}
.btn-info.active,
.btn-info:active,
.btn-info:focus,
.btn-info:hover,
.open .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #39b3d7;
    border-color: #269abc;
}
.btn-info.active,
.btn-info:active,
.open .btn-info.dropdown-toggle {
    background-image: none;
}
.btn-info.disabled,
.btn-info.disabled.active,
.btn-info.disabled:active,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled],
.btn-info[disabled].active,
.btn-info[disabled]:active,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-info.active,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
    background-color: #5bc0de;
    border-color: #46b8da;
}
.btn-link {
    color: #428bca;
    font-weight: 400;
    cursor: pointer;
    border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
    border-color: transparent;
}
.btn-link:focus,
.btn-link:hover {
    color: #2a6496;
    text-decoration: underline;
    background-color: transparent;
}
.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
    color: #999;
    text-decoration: none;
}
.btn-group-lg > .btn,
.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
.btn-group-sm > .btn,
.btn-group-xs > .btn,
.btn-sm,
.btn-xs {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-group-xs > .btn,
.btn-xs {
    padding: 1px 5px;
}
.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.btn-block + .btn-block {
    margin-top: 5px;
}
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
    width: 100%;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}
.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}
@font-face {
    font-family: "Glyphicons Halflings";
    src: url(/fonts/glyphicons-halflings-regular.eot);
    src: url(/fonts/glyphicons-halflings-regular.eot#iefix) format("embedded-opentype"),
        url(/fonts/glyphicons-halflings-regular.woff) format("woff"),
        url(/fonts/glyphicons-halflings-regular.ttf) format("truetype"),
        url(/fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format("svg");
}
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
.glyphicon-asterisk:before {
    content: "\2a";
}
.glyphicon-plus:before {
    content: "\2b";
}
.glyphicon-euro:before {
    content: "\20ac";
}
.glyphicon-minus:before {
    content: "\2212";
}
.glyphicon-cloud:before {
    content: "\2601";
}
.glyphicon-envelope:before {
    content: "\2709";
}
.glyphicon-pencil:before {
    content: "\270f";
}
.glyphicon-glass:before {
    content: "\e001";
}
.glyphicon-music:before {
    content: "\e002";
}
.glyphicon-search:before {
    content: "\e003";
}
.glyphicon-heart:before {
    content: "\e005";
}
.glyphicon-star:before {
    content: "\e006";
}
.glyphicon-star-empty:before {
    content: "\e007";
}
.glyphicon-user:before {
    content: "\e008";
}
.glyphicon-film:before {
    content: "\e009";
}
.glyphicon-th-large:before {
    content: "\e010";
}
.glyphicon-th:before {
    content: "\e011";
}
.glyphicon-th-list:before {
    content: "\e012";
}
.glyphicon-ok:before {
    content: "\e013";
}
.glyphicon-remove:before {
    content: "\e014";
}
.glyphicon-zoom-in:before {
    content: "\e015";
}
.glyphicon-zoom-out:before {
    content: "\e016";
}
.glyphicon-off:before {
    content: "\e017";
}
.glyphicon-signal:before {
    content: "\e018";
}
.glyphicon-cog:before {
    content: "\e019";
}
.glyphicon-trash:before {
    content: "\e020";
}
.glyphicon-home:before {
    content: "\e021";
}
.glyphicon-file:before {
    content: "\e022";
}
.glyphicon-time:before {
    content: "\e023";
}
.glyphicon-road:before {
    content: "\e024";
}
.glyphicon-download-alt:before {
    content: "\e025";
}
.glyphicon-download:before {
    content: "\e026";
}
.glyphicon-upload:before {
    content: "\e027";
}
.glyphicon-inbox:before {
    content: "\e028";
}
.glyphicon-play-circle:before {
    content: "\e029";
}
.glyphicon-repeat:before {
    content: "\e030";
}
.glyphicon-refresh:before {
    content: "\e031";
}
.glyphicon-list-alt:before {
    content: "\e032";
}
.glyphicon-flag:before {
    content: "\e034";
}
.glyphicon-headphones:before {
    content: "\e035";
}
.glyphicon-volume-off:before {
    content: "\e036";
}
.glyphicon-volume-down:before {
    content: "\e037";
}
.glyphicon-volume-up:before {
    content: "\e038";
}
.glyphicon-qrcode:before {
    content: "\e039";
}
.glyphicon-barcode:before {
    content: "\e040";
}
.glyphicon-tag:before {
    content: "\e041";
}
.glyphicon-tags:before {
    content: "\e042";
}
.glyphicon-book:before {
    content: "\e043";
}
.glyphicon-print:before {
    content: "\e045";
}
.glyphicon-font:before {
    content: "\e047";
}
.glyphicon-bold:before {
    content: "\e048";
}
.glyphicon-italic:before {
    content: "\e049";
}
.glyphicon-text-height:before {
    content: "\e050";
}
.glyphicon-text-width:before {
    content: "\e051";
}
.glyphicon-align-left:before {
    content: "\e052";
}
.glyphicon-align-center:before {
    content: "\e053";
}
.glyphicon-align-right:before {
    content: "\e054";
}
.glyphicon-align-justify:before {
    content: "\e055";
}
.glyphicon-list:before {
    content: "\e056";
}
.glyphicon-indent-left:before {
    content: "\e057";
}
.glyphicon-indent-right:before {
    content: "\e058";
}
.glyphicon-facetime-video:before {
    content: "\e059";
}
.glyphicon-picture:before {
    content: "\e060";
}
.glyphicon-map-marker:before {
    content: "\e062";
}
.glyphicon-adjust:before {
    content: "\e063";
}
.glyphicon-tint:before {
    content: "\e064";
}
.glyphicon-edit:before {
    content: "\e065";
}
.glyphicon-share:before {
    content: "\e066";
}
.glyphicon-check:before {
    content: "\e067";
}
.glyphicon-move:before {
    content: "\e068";
}
.glyphicon-step-backward:before {
    content: "\e069";
}
.glyphicon-fast-backward:before {
    content: "\e070";
}
.glyphicon-backward:before {
    content: "\e071";
}
.glyphicon-play:before {
    content: "\e072";
}
.glyphicon-pause:before {
    content: "\e073";
}
.glyphicon-stop:before {
    content: "\e074";
}
.glyphicon-forward:before {
    content: "\e075";
}
.glyphicon-fast-forward:before {
    content: "\e076";
}
.glyphicon-step-forward:before {
    content: "\e077";
}
.glyphicon-eject:before {
    content: "\e078";
}
.glyphicon-chevron-left:before {
    content: "\e079";
}
.glyphicon-chevron-right:before {
    content: "\e080";
}
.glyphicon-plus-sign:before {
    content: "\e081";
}
.glyphicon-minus-sign:before {
    content: "\e082";
}
.glyphicon-remove-sign:before {
    content: "\e083";
}
.glyphicon-ok-sign:before {
    content: "\e084";
}
.glyphicon-question-sign:before {
    content: "\e085";
}
.glyphicon-info-sign:before {
    content: "\e086";
}
.glyphicon-screenshot:before {
    content: "\e087";
}
.glyphicon-remove-circle:before {
    content: "\e088";
}
.glyphicon-ok-circle:before {
    content: "\e089";
}
.glyphicon-ban-circle:before {
    content: "\e090";
}
.glyphicon-arrow-left:before {
    content: "\e091";
}
.glyphicon-arrow-right:before {
    content: "\e092";
}
.glyphicon-arrow-up:before {
    content: "\e093";
}
.glyphicon-arrow-down:before {
    content: "\e094";
}
.glyphicon-share-alt:before {
    content: "\e095";
}
.glyphicon-resize-full:before {
    content: "\e096";
}
.glyphicon-resize-small:before {
    content: "\e097";
}
.glyphicon-exclamation-sign:before {
    content: "\e101";
}
.glyphicon-gift:before {
    content: "\e102";
}
.glyphicon-leaf:before {
    content: "\e103";
}
.glyphicon-eye-open:before {
    content: "\e105";
}
.glyphicon-eye-close:before {
    content: "\e106";
}
.glyphicon-warning-sign:before {
    content: "\e107";
}
.glyphicon-plane:before {
    content: "\e108";
}
.glyphicon-random:before {
    content: "\e110";
}
.glyphicon-comment:before {
    content: "\e111";
}
.glyphicon-magnet:before {
    content: "\e112";
}
.glyphicon-chevron-up:before {
    content: "\e113";
}
.glyphicon-chevron-down:before {
    content: "\e114";
}
.glyphicon-retweet:before {
    content: "\e115";
}
.glyphicon-shopping-cart:before {
    content: "\e116";
}
.glyphicon-folder-close:before {
    content: "\e117";
}
.glyphicon-folder-open:before {
    content: "\e118";
}
.glyphicon-resize-vertical:before {
    content: "\e119";
}
.glyphicon-resize-horizontal:before {
    content: "\e120";
}
.glyphicon-hdd:before {
    content: "\e121";
}
.glyphicon-bullhorn:before {
    content: "\e122";
}
.glyphicon-certificate:before {
    content: "\e124";
}
.glyphicon-thumbs-up:before {
    content: "\e125";
}
.glyphicon-thumbs-down:before {
    content: "\e126";
}
.glyphicon-hand-right:before {
    content: "\e127";
}
.glyphicon-hand-left:before {
    content: "\e128";
}
.glyphicon-hand-up:before {
    content: "\e129";
}
.glyphicon-hand-down:before {
    content: "\e130";
}
.glyphicon-circle-arrow-right:before {
    content: "\e131";
}
.glyphicon-circle-arrow-left:before {
    content: "\e132";
}
.glyphicon-circle-arrow-up:before {
    content: "\e133";
}
.glyphicon-circle-arrow-down:before {
    content: "\e134";
}
.glyphicon-globe:before {
    content: "\e135";
}
.glyphicon-tasks:before {
    content: "\e137";
}
.glyphicon-filter:before {
    content: "\e138";
}
.glyphicon-fullscreen:before {
    content: "\e140";
}
.glyphicon-dashboard:before {
    content: "\e141";
}
.glyphicon-heart-empty:before {
    content: "\e143";
}
.glyphicon-link:before {
    content: "\e144";
}
.glyphicon-phone:before {
    content: "\e145";
}
.glyphicon-usd:before {
    content: "\e148";
}
.glyphicon-gbp:before {
    content: "\e149";
}
.glyphicon-sort:before {
    content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
    content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152";
}
.glyphicon-sort-by-order:before {
    content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
    content: "\e154";
}
.glyphicon-sort-by-attributes:before {
    content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
    content: "\e156";
}
.glyphicon-unchecked:before {
    content: "\e157";
}
.glyphicon-expand:before {
    content: "\e158";
}
.glyphicon-collapse-down:before {
    content: "\e159";
}
.glyphicon-collapse-up:before {
    content: "\e160";
}
.glyphicon-log-in:before {
    content: "\e161";
}
.glyphicon-flash:before {
    content: "\e162";
}
.glyphicon-log-out:before {
    content: "\e163";
}
.glyphicon-new-window:before {
    content: "\e164";
}
.glyphicon-record:before {
    content: "\e165";
}
.glyphicon-save:before {
    content: "\e166";
}
.glyphicon-open:before {
    content: "\e167";
}
.glyphicon-saved:before {
    content: "\e168";
}
.glyphicon-import:before {
    content: "\e169";
}
.glyphicon-export:before {
    content: "\e170";
}
.glyphicon-send:before {
    content: "\e171";
}
.glyphicon-floppy-disk:before {
    content: "\e172";
}
.glyphicon-floppy-saved:before {
    content: "\e173";
}
.glyphicon-floppy-remove:before {
    content: "\e174";
}
.glyphicon-floppy-save:before {
    content: "\e175";
}
.glyphicon-floppy-open:before {
    content: "\e176";
}
.glyphicon-credit-card:before {
    content: "\e177";
}
.glyphicon-transfer:before {
    content: "\e178";
}
.glyphicon-cutlery:before {
    content: "\e179";
}
.glyphicon-header:before {
    content: "\e180";
}
.glyphicon-compressed:before {
    content: "\e181";
}
.glyphicon-earphone:before {
    content: "\e182";
}
.glyphicon-phone-alt:before {
    content: "\e183";
}
.glyphicon-tower:before {
    content: "\e184";
}
.glyphicon-stats:before {
    content: "\e185";
}
.glyphicon-sd-video:before {
    content: "\e186";
}
.glyphicon-hd-video:before {
    content: "\e187";
}
.glyphicon-subtitles:before {
    content: "\e188";
}
.glyphicon-sound-stereo:before {
    content: "\e189";
}
.glyphicon-sound-dolby:before {
    content: "\e190";
}
.glyphicon-sound-5-1:before {
    content: "\e191";
}
.glyphicon-sound-6-1:before {
    content: "\e192";
}
.glyphicon-sound-7-1:before {
    content: "\e193";
}
.glyphicon-copyright-mark:before {
    content: "\e194";
}
.glyphicon-registration-mark:before {
    content: "\e195";
}
.glyphicon-cloud-download:before {
    content: "\e197";
}
.glyphicon-cloud-upload:before {
    content: "\e198";
}
.glyphicon-tree-conifer:before {
    content: "\e199";
}
.glyphicon-tree-deciduous:before {
    content: "\e200";
}
.glyphicon-briefcase:before {
    content: "\1f4bc";
}
.glyphicon-calendar:before {
    content: "\1f4c5";
}
.glyphicon-pushpin:before {
    content: "\1f4cc";
}
.glyphicon-paperclip:before {
    content: "\1f4ce";
}
.glyphicon-camera:before {
    content: "\1f4f7";
}
.glyphicon-lock:before {
    content: "\1f512";
}
.glyphicon-bell:before {
    content: "\1f514";
}
.glyphicon-bookmark:before {
    content: "\1f516";
}
.glyphicon-fire:before {
    content: "\1f525";
}
.glyphicon-wrench:before {
    content: "\1f527";
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid #000;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0 dotted;
    content: "";
}
.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;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}
.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}
.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.428571429;
    color: #333;
    white-space: nowrap;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #428bca;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
    color: #999;
}
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
    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-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #999;
}
.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 dotted;
    border-bottom: 4px solid #000;
    content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}
@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }
}
.btn-default .caret {
    border-top-color: #333;
}
.btn-danger .caret,
.btn-info .caret,
.btn-primary .caret,
.btn-success .caret,
.btn-warning .caret {
    border-top-color: #fff;
}
.dropup .btn-default .caret {
    border-bottom-color: #333;
}
.dropup .btn-danger .caret,
.dropup .btn-info .caret,
.dropup .btn-primary .caret,
.dropup .btn-success .caret,
.dropup .btn-warning .caret {
    border-bottom-color: #fff;
}
.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.btn-group-vertical > .btn,
.btn-group > .btn {
    position: relative;
    float: left;
}
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
    z-index: 2;
}
.btn-group-vertical > .btn:focus,
.btn-group > .btn:focus {
    outline: 0;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
    margin-left: -1px;
}
.btn-toolbar:after,
.btn-toolbar:before {
    content: " ";
    display: table;
}
.btn-toolbar:after {
    clear: both;
}
.btn-toolbar .btn-group {
    float: left;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn-group + .btn-group {
    margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}
.btn-group > .btn:first-child {
    margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.btn-group > .btn-group {
    float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
}
.btn-group-lg.btn-group > .btn + .dropdown-toggle,
.btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn .caret {
    margin-left: 0;
}
.btn-group-lg > .btn .caret,
.btn-lg .caret {
    border-width: 5px 5px 0;
}
.dropup .btn-group-lg > .btn .caret,
.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}
.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before {
    content: " ";
    display: table;
}
.btn-group-vertical > .btn-group:after {
    clear: both;
}
.btn-group-vertical > .btn-group > .btn {
    float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}
.btn-group-justified .btn {
    float: none;
    display: table-cell;
    width: 1%;
}
[data-toggle="buttons"] > .btn > input[type="checkbox"],
[data-toggle="buttons"] > .btn > input[type="radio"] {
    display: none;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
.input-group.col {
    float: none;
    padding-left: 0;
    padding-right: 0;
}
.input-group .form-control {
    width: 100%;
    margin-bottom: 0;
}
.input-group .form-control,
.input-group-addon,
.input-group-btn {
    display: table-cell;
}
.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn: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;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px;
}
.input-group-addon input[type="checkbox"],
.input-group-addon input[type="radio"] {
    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 > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
    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:first-child > .btn:not(:first-child),
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.input-group-addon:last-child {
    border-left: 0;
}
.input-group-btn {
    position: relative;
    white-space: nowrap;
}
.input-group-btn > .btn {
    position: relative;
}
.input-group-btn > .btn + .btn {
    margin-left: -4px;
}
.input-group-btn > .btn:active,
.input-group-btn > .btn:hover {
    z-index: 2;
}
.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.nav:after,
.nav:before {
    content: " ";
    display: table;
}
.nav:after {
    clear: both;
}
.nav > li {
    position: relative;
    display: block;
}
.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}
.nav > li > a:focus,
.nav > li > a:hover {
    text-decoration: none;
    background-color: #eee;
}
.nav > li.disabled > a {
    color: #999;
}
.nav > li.disabled > a:focus,
.nav > li.disabled > a:hover {
    color: #999;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background-color: #eee;
    border-color: #428bca;
}
.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
.nav > li > a > img {
    max-width: none;
}
.nav-tabs {
    border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: #555;
    background-color: #555;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default;
}
.nav-pills > li {
    float: left;
}
.nav-pills > li > a {
    border-radius: 5px;
}
.nav-pills > li + li {
    margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
    color: #fff;
    background-color: #428bca;
}
.nav-stacked > li {
    float: none;
}
.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0;
}
.nav-justified,
.nav-tabs.nav-justified {
    width: 100%;
}
.nav-justified > li,
.nav-tabs.nav-justified > li {
    float: none;
}
.nav-justified > li > a,
.nav-tabs.nav-justified > li > a {
    text-align: center;
}
@media (min-width: 768px) {
    .nav-justified > li,
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }
}
.nav-tabs-justified,
.nav-tabs.nav-justified {
    border-bottom: 0;
}
.nav-tabs-justified > li > a,
.nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    margin-right: 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs.nav-justified > .active > a {
    border-bottom-color: #555;
}
.tabbable:after,
.tabbable:before {
    content: " ";
    display: table;
}
.tabbable:after {
    clear: both;
}
.pill-content > .pill-pane,
.tab-content > .tab-pane {
    display: none;
}
.pill-content > .active,
.tab-content > .active {
    display: block;
}
.nav .caret {
    border-top-color: #428bca;
    border-bottom-color: #428bca;
}
.nav a:hover .caret {
    border-top-color: #2a6496;
    border-bottom-color: #2a6496;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.navbar {
    position: relative;
    z-index: 1000;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.navbar:after,
.navbar:before {
    content: " ";
    display: table;
}
.navbar:after {
    clear: both;
}
@media (min-width: 768px) {
    .navbar {
        border-radius: 4px;
    }
}
.navbar-header:after,
.navbar-header:before {
    content: " ";
    display: table;
}
.navbar-header:after {
    clear: both;
}
@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
}
.navbar-collapse {
    max-height: 340px;
    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:after,
.navbar-collapse:before {
    content: " ";
    display: table;
}
.navbar-collapse:after {
    clear: both;
}
.navbar-collapse.in {
    overflow-y: auto;
}
@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }
    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
    .navbar-collapse.in {
        overflow-y: visible;
    }
    .navbar-collapse .navbar-nav.navbar-left:first-child {
        margin-left: -15px;
    }
    .navbar-collapse .navbar-nav.navbar-right:last-child {
        margin-right: -15px;
    }
    .navbar-collapse .navbar-text:last-child {
        margin-right: 0;
    }
}
.container > .navbar-collapse,
.container > .navbar-header {
    margin-right: -15px;
    margin-left: -15px;
}
@media (min-width: 768px) {
    .container > .navbar-collapse,
    .container > .navbar-header {
        margin-right: 0;
        margin-left: 0;
    }
}
.navbar-static-top {
    border-width: 0 0 1px;
}
@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}
.navbar-fixed-bottom,
.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    border-width: 0 0 1px;
}
@media (min-width: 768px) {
    .navbar-fixed-bottom,
    .navbar-fixed-top {
        border-radius: 0;
    }
}
.navbar-fixed-top {
    z-index: 1030;
    top: 0;
}
.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
}
.navbar-brand {
    float: left;
    padding: 15px;
    font-size: 18px;
    line-height: 20px;
}
.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none;
}
@media (min-width: 768px) {
    .navbar > .container .navbar-brand {
        margin-left: -15px;
    }
}
.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}
@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}
.navbar-nav {
    margin: 7.5px -15px;
}
.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
}
@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu > li > a {
        padding: 5px 15px 5px 25px;
    }
    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px;
    }
    .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-nav .open .dropdown-menu > li > a:hover {
        background-image: none;
    }
}
@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }
    .navbar-nav > li {
        float: left;
    }
    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
@media (min-width: 768px) {
    .navbar-left {
        float: left !important;
    }
    .navbar-right {
        float: right !important;
    }
}
.navbar-form {
    margin: 8px -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);
}
@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }
}
@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.navbar-nav.pull-right > li > .dropdown-menu,
.navbar-nav > li > .dropdown-menu.pull-right {
    left: auto;
    right: 0;
}
.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}
.navbar-text {
    float: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
@media (min-width: 768px) {
    .navbar-text {
        margin-left: 15px;
        margin-right: 15px;
    }
}
.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
    color: #777;
}
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
    color: #5e5d5d;
    background-color: transparent;
}
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-text {
    color: #777;
}
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
    color: #333;
    background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: #555;
    background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:focus,
.navbar-default .navbar-nav > .disabled > a:hover {
    color: #ccc;
    background-color: transparent;
}
.navbar-default .navbar-toggle {
    border-color: #ddd;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #ccc;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e6e6e6;
}
.navbar-default .navbar-nav > .dropdown > a:focus .caret,
.navbar-default .navbar-nav > .dropdown > a:hover .caret {
    border-top-color: #333;
    border-bottom-color: #333;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    background-color: #e7e7e7;
    color: #555;
}
.navbar-default .navbar-nav > .open > a .caret,
.navbar-default .navbar-nav > .open > a:focus .caret,
.navbar-default .navbar-nav > .open > a:hover .caret {
    border-top-color: #555;
    border-bottom-color: #555;
}
.navbar-default .navbar-nav > .dropdown > a .caret {
    border-top-color: #777;
    border-bottom-color: #777;
}
@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
        color: #333;
        background-color: transparent;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: #555;
        background-color: #e7e7e7;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
        color: #ccc;
        background-color: transparent;
    }
}
.navbar-default .navbar-link {
    color: #777;
}
.navbar-default .navbar-link:hover {
    color: #333;
}
.navbar-inverse {
    background-color: #222;
    border-color: #090808;
}
.navbar-inverse .navbar-brand {
    color: #999;
}
.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
    color: #fff;
    background-color: transparent;
}
.navbar-inverse .navbar-nav > li > a,
.navbar-inverse .navbar-text {
    color: #999;
}
.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > li > a:hover {
    color: #fff;
    background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover {
    color: #fff;
    background-color: #090808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:focus,
.navbar-inverse .navbar-nav > .disabled > a:hover {
    color: #444;
    background-color: transparent;
}
.navbar-inverse .navbar-toggle {
    border-color: #333;
}
.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    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:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
    background-color: #090808;
    color: #fff;
}
.navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
    border-top-color: #fff;
    border-bottom-color: #fff;
}
.navbar-inverse .navbar-nav > .dropdown > a .caret {
    border-top-color: #999;
    border-bottom-color: #999;
}
.navbar-inverse .navbar-nav > .open > a .caret,
.navbar-inverse .navbar-nav > .open > a:focus .caret,
.navbar-inverse .navbar-nav > .open > a:hover .caret {
    border-top-color: #fff;
    border-bottom-color: #fff;
}
@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #090808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #999;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
        color: #fff;
        background-color: transparent;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: #fff;
        background-color: #090808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
        color: #444;
        background-color: transparent;
    }
}
.navbar-inverse .navbar-link {
    color: #999;
}
.navbar-inverse .navbar-link:hover {
    color: #fff;
}
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.breadcrumb > li {
    display: inline-block;
}
.breadcrumb > li + li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #ccc;
}
.breadcrumb > .active {
    color: #999;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.428571429;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    background-color: #eee;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    z-index: 2;
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
    cursor: default;
}
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span {
    color: #999;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center;
}
.pager:after,
.pager:before {
    content: " ";
    display: table;
}
.pager:after {
    clear: both;
}
.pager li {
    display: inline;
}
.pager li > a,
.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.pager li > a:focus,
.pager li > a:hover {
    text-decoration: none;
    background-color: #eee;
}
.pager .next > a,
.pager .next > span {
    float: right;
}
.pager .previous > a,
.pager .previous > span {
    float: left;
}
.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
    color: #999;
    background-color: #fff;
    cursor: not-allowed;
}
.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}
.label[href]:focus,
.label[href]:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.label:empty {
    display: none;
}
.label-default {
    background-color: #999;
}
.label-default[href]:focus,
.label-default[href]:hover {
    background-color: #807f7f;
}
.label-primary {
    background-color: #428bca;
}
.label-primary[href]:focus,
.label-primary[href]:hover {
    background-color: #3071a9;
}
.label-success {
    background-color: #5cb85c;
}
.label-success[href]:focus,
.label-success[href]:hover {
    background-color: #449d44;
}
.label-info {
    background-color: #5bc0de;
}
.label-info[href]:focus,
.label-info[href]:hover {
    background-color: #31b0d5;
}
.label-warning {
    background-color: #f0ad4e;
}
.label-warning[href]:focus,
.label-warning[href]:hover {
    background-color: #ec971f;
}
.label-danger {
    background-color: #d9534f;
}
.label-danger[href]:focus,
.label-danger[href]:hover {
    background-color: #c9302c;
}
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #999;
    border-radius: 10px;
}
.badge:empty {
    display: none;
}
a.badge:focus,
a.badge:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.btn .badge {
    position: relative;
    top: -1px;
}
.nav-pills > .active > a > .badge,
a.list-group-item.active > .badge {
    color: #428bca;
    background-color: #fff;
}
.nav-pills > li > a > .badge {
    margin-left: 3px;
}
.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: 200;
    line-height: 2.1428571435;
    color: inherit;
    background-color: #eee;
}
.jumbotron h1 {
    line-height: 1;
    color: inherit;
}
.jumbotron p {
    line-height: 1.4;
}
.container .jumbotron {
    border-radius: 6px;
}
@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .container .jumbotron {
        padding-left: 60px;
        padding-right: 60px;
    }
    .jumbotron h1 {
        font-size: 63px;
    }
}
.thumbnail {
    display: block;
}
.thumbnail > img {
    display: block;
    max-width: 100%;
    height: auto;
}
a.thumbnail:focus,
a.thumbnail:hover {
    border-color: #428bca;
}
.thumbnail > img {
    margin-left: auto;
    margin-right: auto;
}
.thumbnail .caption {
    padding: 9px;
    color: #333;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert .alert-link {
    font-weight: 700;
}
.alert > p,
.alert > ul {
    margin-bottom: 0;
}
.alert > p + p {
    margin-top: 5px;
}
.alert-dismissable {
    padding-right: 35px;
}
.alert-dismissable .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847;
}
.alert-success hr {
    border-top-color: #c9e2b3;
}
.alert-success .alert-link {
    color: #356635;
}
.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #3a87ad;
}
.alert-info hr {
    border-top-color: #a6e1ec;
}
.alert-info .alert-link {
    color: #2d6987;
}
.alert-warning {
    background-color: #fcf8e3;
    border-color: #fbeed5;
    color: #c09853;
}
.alert-warning hr {
    border-top-color: #f8e5be;
}
.alert-warning .alert-link {
    color: #a47e3c;
}
.alert-danger {
    background-color: #f2dede;
    border-color: #eed3d7;
    color: #b94a48;
}
.alert-danger hr {
    border-top-color: #e6c1c7;
}
.alert-danger .alert-link {
    color: #953b39;
}
@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}
@-moz-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}
@-o-keyframes progress-bar-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}
@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}
.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background-color: #428bca;
    -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;
    transition: width 0.6s ease;
}
.progress-striped .progress-bar {
    background-image: -webkit-gradient(
        linear,
        0 100%,
        100% 0,
        color-stop(0.25, rgba(255, 255, 255, 0.15)),
        color-stop(0.25, transparent),
        color-stop(0.5, transparent),
        color-stop(0.5, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, transparent),
        to(transparent)
    );
    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: -moz-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 {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -moz-animation: progress-bar-stripes 2s linear infinite;
    -ms-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-gradient(
        linear,
        0 100%,
        100% 0,
        color-stop(0.25, rgba(255, 255, 255, 0.15)),
        color-stop(0.25, transparent),
        color-stop(0.5, transparent),
        color-stop(0.5, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, transparent),
        to(transparent)
    );
    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: -moz-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-gradient(
        linear,
        0 100%,
        100% 0,
        color-stop(0.25, rgba(255, 255, 255, 0.15)),
        color-stop(0.25, transparent),
        color-stop(0.5, transparent),
        color-stop(0.5, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, transparent),
        to(transparent)
    );
    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: -moz-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-gradient(
        linear,
        0 100%,
        100% 0,
        color-stop(0.25, rgba(255, 255, 255, 0.15)),
        color-stop(0.25, transparent),
        color-stop(0.5, transparent),
        color-stop(0.5, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, transparent),
        to(transparent)
    );
    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: -moz-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-gradient(
        linear,
        0 100%,
        100% 0,
        color-stop(0.25, rgba(255, 255, 255, 0.15)),
        color-stop(0.25, transparent),
        color-stop(0.5, transparent),
        color-stop(0.5, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, transparent),
        to(transparent)
    );
    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: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media,
.media-body {
    overflow: hidden;
    zoom: 1;
}
.media,
.media .media {
    margin-top: 15px;
}
.media:first-child {
    margin-top: 0;
}
.media-object {
    display: block;
}
.media-heading {
    margin: 0 0 5px;
}
.media > .pull-left {
    margin-right: 10px;
}
.media > .pull-right {
    margin-left: 10px;
}
.media-list {
    padding-left: 0;
    list-style: none;
}
.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}
.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}
.list-group-item > .badge {
    float: right;
}
.list-group-item > .badge + .badge {
    margin-right: 5px;
}
.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading {
    color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
    color: #e1edf7;
}
a.list-group-item {
    color: #555;
}
a.list-group-item .list-group-item-heading {
    color: #333;
}
a.list-group-item:focus,
a.list-group-item:hover {
    text-decoration: none;
    background-color: #f5f5f5;
}
.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}
.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
    padding: 15px;
}
.panel-body:after,
.panel-body:before {
    content: " ";
    display: table;
}
.panel-body:after {
    clear: both;
}
.panel > .list-group {
    margin-bottom: 0;
}
.panel > .list-group .list-group-item {
    border-width: 1px 0;
}
.panel > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.panel > .list-group .list-group-item:last-child {
    border-bottom: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}
.panel > .table {
    margin-bottom: 0;
}
.panel > .panel-body + .table {
    border-top: 1px solid #ddd;
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
}
.panel-title > a {
    color: inherit;
}
.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px;
    overflow: hidden;
}
.panel-group .panel + .panel {
    margin-top: 5px;
}
.panel-group .panel-heading {
    border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse .panel-body {
    border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
    border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd;
}
.panel-default {
    border-color: #ddd;
}
.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #ddd;
}
.panel-default > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #ddd;
}
.panel-primary {
    border-color: #428bca;
}
.panel-primary > .panel-heading {
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
}
.panel-primary > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #428bca;
}
.panel-primary > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #428bca;
}
.panel-success {
    border-color: #d6e9c6;
}
.panel-success > .panel-heading {
    color: #468847;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #d6e9c6;
}
.panel-success > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #d6e9c6;
}
.panel-warning {
    border-color: #fbeed5;
}
.panel-warning > .panel-heading {
    color: #c09853;
    background-color: #fcf8e3;
    border-color: #fbeed5;
}
.panel-warning > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #fbeed5;
}
.panel-warning > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #fbeed5;
}
.panel-danger {
    border-color: #eed3d7;
}
.panel-danger > .panel-heading {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}
.panel-danger > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #eed3d7;
}
.panel-danger > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #eed3d7;
}
.panel-info {
    border-color: #bce8f1;
}
.panel-info > .panel-heading {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #bce8f1;
}
.panel-info > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: #bce8f1;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
    padding: 24px;
    border-radius: 6px;
}
.well-sm {
    padding: 9px;
    border-radius: 3px;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}
.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}
.modal-open {
    overflow: hidden;
}
.modal-open .navbar-fixed-bottom,
.modal-open .navbar-fixed-top,
body.modal-open {
    margin-right: 15px;
}
.modal {
    display: none;
    overflow-y: scroll;
    z-index: 1040;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-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);
    transform: translate(0, 0);
}
.modal-dialog {
    width: auto;
    z-index: 1050;
}
.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    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.428571429;
}
.modal-body {
    position: relative;
    padding: 20px;
}
.modal-footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer:after,
.modal-footer:before {
    content: " ";
    display: table;
}
.modal-footer:after {
    clear: both;
}
.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;
}
@media screen and (min-width: 768px) {
    .modal-dialog {
        left: 50%;
        right: auto;
        width: 600px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .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);
    }
}
.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.4;
    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;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px;
}
.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 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;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    white-space: normal;
}
.popover.top {
    margin-top: -10px;
}
.popover.right {
    margin-left: 10px;
}
.popover.bottom {
    margin-top: 10px;
}
.popover.left {
    margin-left: -10px;
}
.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.popover-content {
    padding: 9px 14px;
}
.popover .arrow,
.popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.popover .arrow {
    border-width: 11px;
}
.popover .arrow:after {
    border-width: 10px;
    content: "";
}
.popover.top .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px;
}
.popover.top .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff;
}
.popover.right .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff;
}
.popover.bottom .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px;
}
.popover.bottom .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff;
}
.popover.left .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px;
}
.carousel {
    position: relative;
}
.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
    display: block;
    max-width: 100%;
    height: auto;
    line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}
.carousel-inner > .active {
    left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}
.carousel-inner > .next {
    left: 100%;
}
.carousel-inner > .prev {
    left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}
.carousel-inner > .active.left {
    left: -100%;
}
.carousel-inner > .active.right {
    left: 100%;
}
.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.left {
    background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:focus,
.carousel-control:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90);
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: inline-block;
}
.carousel-control .icon-next,
.carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    font-family: serif;
}
.carousel-control .icon-prev:before {
    content: "\2039";
}
.carousel-control .icon-next:before {
    content: "\203a";
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center;
}
.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
}
.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff;
}
.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
    text-shadow: none;
}
@media screen and (min-width: 768px) {
    .carousel-control .icon-next,
    .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        margin-left: -15px;
        font-size: 30px;
    }
    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px;
    }
    .carousel-indicators {
        bottom: 20px;
    }
}
.clearfix:after,
.clearfix:before {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.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;
}
.affix {
    position: fixed;
}
@-ms-viewport {
    width: device-width;
}
@media screen and (max-width: 400px) {
    @-ms-viewport {
        width: 320px;
    }
}
.hidden {
    display: none !important;
    visibility: hidden !important;
}
.visible-lg,
.visible-md,
.visible-sm,
.visible-xs,
td.visible-lg,
td.visible-md,
td.visible-sm,
td.visible-xs,
th.visible-lg,
th.visible-md,
th.visible-sm,
th.visible-xs,
tr.visible-lg,
tr.visible-md,
tr.visible-sm,
tr.visible-xs {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    tr.visible-xs {
        display: table-row !important;
    }
    td.visible-xs,
    th.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-xs.visible-sm {
        display: block !important;
    }
    tr.visible-xs.visible-sm {
        display: table-row !important;
    }
    td.visible-xs.visible-sm,
    th.visible-xs.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-xs.visible-md {
        display: block !important;
    }
    tr.visible-xs.visible-md {
        display: table-row !important;
    }
    td.visible-xs.visible-md,
    th.visible-xs.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-xs.visible-lg {
        display: block !important;
    }
    tr.visible-xs.visible-lg {
        display: table-row !important;
    }
    td.visible-xs.visible-lg,
    th.visible-xs.visible-lg {
        display: table-cell !important;
    }
}
@media (max-width: 767px) {
    .visible-sm.visible-xs {
        display: block !important;
    }
    tr.visible-sm.visible-xs {
        display: table-row !important;
    }
    td.visible-sm.visible-xs,
    th.visible-sm.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }
    tr.visible-sm {
        display: table-row !important;
    }
    td.visible-sm,
    th.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-sm.visible-md {
        display: block !important;
    }
    tr.visible-sm.visible-md {
        display: table-row !important;
    }
    td.visible-sm.visible-md,
    th.visible-sm.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-sm.visible-lg {
        display: block !important;
    }
    tr.visible-sm.visible-lg {
        display: table-row !important;
    }
    td.visible-sm.visible-lg,
    th.visible-sm.visible-lg {
        display: table-cell !important;
    }
}
@media (max-width: 767px) {
    .visible-md.visible-xs {
        display: block !important;
    }
    tr.visible-md.visible-xs {
        display: table-row !important;
    }
    td.visible-md.visible-xs,
    th.visible-md.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-md.visible-sm {
        display: block !important;
    }
    tr.visible-md.visible-sm {
        display: table-row !important;
    }
    td.visible-md.visible-sm,
    th.visible-md.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }
    tr.visible-md {
        display: table-row !important;
    }
    td.visible-md,
    th.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-md.visible-lg {
        display: block !important;
    }
    tr.visible-md.visible-lg {
        display: table-row !important;
    }
    td.visible-md.visible-lg,
    th.visible-md.visible-lg {
        display: table-cell !important;
    }
}
@media (max-width: 767px) {
    .visible-lg.visible-xs {
        display: block !important;
    }
    tr.visible-lg.visible-xs {
        display: table-row !important;
    }
    td.visible-lg.visible-xs,
    th.visible-lg.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-lg.visible-sm {
        display: block !important;
    }
    tr.visible-lg.visible-sm {
        display: table-row !important;
    }
    td.visible-lg.visible-sm,
    th.visible-lg.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-lg.visible-md {
        display: block !important;
    }
    tr.visible-lg.visible-md {
        display: table-row !important;
    }
    td.visible-lg.visible-md,
    th.visible-lg.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
    tr.visible-lg {
        display: table-row !important;
    }
    td.visible-lg,
    th.visible-lg {
        display: table-cell !important;
    }
}
.hidden-xs {
    display: block !important;
}
tr.hidden-xs {
    display: table-row !important;
}
td.hidden-xs,
th.hidden-xs {
    display: table-cell !important;
}
@media (max-width: 767px) {
    .hidden-xs,
    td.hidden-xs,
    th.hidden-xs,
    tr.hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-xs.hidden-sm,
    td.hidden-xs.hidden-sm,
    th.hidden-xs.hidden-sm,
    tr.hidden-xs.hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-xs.hidden-md,
    td.hidden-xs.hidden-md,
    th.hidden-xs.hidden-md,
    tr.hidden-xs.hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-xs.hidden-lg,
    td.hidden-xs.hidden-lg,
    th.hidden-xs.hidden-lg,
    tr.hidden-xs.hidden-lg {
        display: none !important;
    }
}
.hidden-sm {
    display: block !important;
}
tr.hidden-sm {
    display: table-row !important;
}
td.hidden-sm,
th.hidden-sm {
    display: table-cell !important;
}
@media (max-width: 767px) {
    .hidden-sm.hidden-xs,
    td.hidden-sm.hidden-xs,
    th.hidden-sm.hidden-xs,
    tr.hidden-sm.hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm,
    td.hidden-sm,
    th.hidden-sm,
    tr.hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-sm.hidden-md,
    td.hidden-sm.hidden-md,
    th.hidden-sm.hidden-md,
    tr.hidden-sm.hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-sm.hidden-lg,
    td.hidden-sm.hidden-lg,
    th.hidden-sm.hidden-lg,
    tr.hidden-sm.hidden-lg {
        display: none !important;
    }
}
.hidden-md {
    display: block !important;
}
tr.hidden-md {
    display: table-row !important;
}
td.hidden-md,
th.hidden-md {
    display: table-cell !important;
}
@media (max-width: 767px) {
    .hidden-md.hidden-xs,
    td.hidden-md.hidden-xs,
    th.hidden-md.hidden-xs,
    tr.hidden-md.hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-md.hidden-sm,
    td.hidden-md.hidden-sm,
    th.hidden-md.hidden-sm,
    tr.hidden-md.hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md,
    td.hidden-md,
    th.hidden-md,
    tr.hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-md.hidden-lg,
    td.hidden-md.hidden-lg,
    th.hidden-md.hidden-lg,
    tr.hidden-md.hidden-lg {
        display: none !important;
    }
}
.hidden-lg {
    display: block !important;
}
tr.hidden-lg {
    display: table-row !important;
}
td.hidden-lg,
th.hidden-lg {
    display: table-cell !important;
}
@media (max-width: 767px) {
    .hidden-lg.hidden-xs,
    td.hidden-lg.hidden-xs,
    th.hidden-lg.hidden-xs,
    tr.hidden-lg.hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-lg.hidden-sm,
    td.hidden-lg.hidden-sm,
    th.hidden-lg.hidden-sm,
    tr.hidden-lg.hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-lg.hidden-md,
    td.hidden-lg.hidden-md,
    th.hidden-lg.hidden-md,
    tr.hidden-lg.hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg,
    td.hidden-lg,
    th.hidden-lg,
    tr.hidden-lg {
        display: none !important;
    }
}
.visible-print,
td.visible-print,
th.visible-print,
tr.visible-print {
    display: none !important;
}
@media print {
    .visible-print {
        display: block !important;
    }
    tr.visible-print {
        display: table-row !important;
    }
    td.visible-print,
    th.visible-print {
        display: table-cell !important;
    }
    .hidden-print,
    td.hidden-print,
    th.hidden-print,
    tr.hidden-print {
        display: none !important;
    }
}
html {
    touch-action: none;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -ms-scroll-chaining: none;
}
body {
    background-color: #15d1b1;
    font-family: colfax_regularregular;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: pbs_kids_headlinebold, serif, sans-serif;
    color: #fff;
    cursor: default;
}
p {
    cursor: default;
}
a {
    cursor: pointer;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
body,
html {
    width: 100%;
    height: 100%;
    background-color: #18cfcd !important;
    padding-top: 20px;
    overflow: hidden;
}
div {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}
body.modal-open {
    overflow: auto;
    margin: 0;
}
.modal {
    position: absolute;
    width: 1024px;
    height: 768px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
}
.modal-dialog {
    position: absolute;
    margin: 0;
    padding: 0;
    top: 50%;
    left: 50%;
}
.modal-dialog .modal-content {
    -webkit-box-shadow: compact(none, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(none, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(none, false, false, false, false, false, false, false, false, false);
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: none;
}
.modal-dialog .modal-content .modal-title {
    font-family: pbs_kids_headlinebold;
}
button {
    background-color: transparent;
    border: none;
    padding: 0;
    outline: 0;
}
.kart-kingdom-logo {
    position: absolute;
    top: 0;
    left: 50%;
    width: 560px;
    height: 374px;
    margin-left: -280px;
    background: url(/images/layout/big_elements.png) 3px -363px;
}
.tip {
    position: absolute;
    top: 0;
    left: 50%;
    width: 847px;
    height: 527px;
    margin-left: -423px;
}
#blog {
    background: url(/images/tips/blog.png);
}
#exitDoors {
    background: url(/images/tips/exitDoors.png);
}
#findResources {
    background: url(/images/tips/findResources.png);
}
#kraftParts {
    background: url(/images/tips/kraftParts.png);
}
#minusRed {
    background: url(/images/tips/minusRed.png);
}
#poweringUpyourgame {
    background: url(/images/tips/poweringUpyourgame.png);
}
#teamCrafting {
    background: url(/images/tips/teamCrafting.png);
}
#unlockKartParts {
    background: url(/images/tips/unlockKartParts.png);
}
#unlockMoreKarts {
    background: url(/images/tips/unlockMoreKarts.png);
}
#unlockPowerUps {
    background: url(/images/tips/unlockPowerUps.png);
}
.ng-modal-anim.ng-enter,
.ng-modal-anim.ng-leave {
    -webkit-transition: compact(compact(opacity 0.2s linear, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(opacity 0.2s linear, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(opacity 0.2s linear, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(opacity 0.2s linear, false, false, false, false, false, false, false, false, false);
}
.ng-modal-anim.ng-enter,
.ng-modal-anim.ng-leave.ng-leave-active {
    opacity: 0;
}
.ng-modal-anim.ng-enter .dialog,
.ng-modal-anim.ng-leave.ng-leave-active .dialog {
    -webkit-transition: compact(compact(top 0.2s ease-in, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(top 0.2s ease-in, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(top 0.2s ease-in, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(top 0.2s ease-in, false, false, false, false, false, false, false, false, false);
    top: -25%;
}
.ng-modal-anim.ng-enter.ng-enter-active,
.ng-modal-anim.ng-leave {
    opacity: 1;
}
.ng-modal-anim.ng-enter.ng-enter-active .dialog,
.ng-modal-anim.ng-leave .dialog {
    -webkit-transition: compact(compact(top 0.2s ease-out, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(top 0.2s ease-out, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(top 0.2s ease-out, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(top 0.2s ease-out, false, false, false, false, false, false, false, false, false);
    top: 50%;
}
.ng-modal-lift-up-anim.ng-enter,
.ng-modal-lift-up-anim.ng-leave {
    -webkit-transition: compact(compact(opacity 0.4s linear, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(opacity 0.4s linear, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(opacity 0.4s linear, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(opacity 0.4s linear, false, false, false, false, false, false, false, false, false);
}
.ng-modal-lift-up-anim.ng-enter,
.ng-modal-lift-up-anim.ng-leave.ng-leave-active {
    opacity: 0;
}
.ng-modal-lift-up-anim.ng-enter .dialog,
.ng-modal-lift-up-anim.ng-leave.ng-leave-active .dialog {
    -webkit-transition: compact(compact(top 0.4s ease-in, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(top 0.4s ease-in, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(top 0.4s ease-in, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(top 0.4s ease-in, false, false, false, false, false, false, false, false, false);
    top: 125%;
}
.ng-modal-lift-up-anim.ng-enter.ng-enter-active,
.ng-modal-lift-up-anim.ng-leave {
    opacity: 1;
}
.ng-modal-lift-up-anim.ng-enter.ng-enter-active .dialog,
.ng-modal-lift-up-anim.ng-leave .dialog {
    -webkit-transition: compact(compact(top 0.4s ease-out, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(top 0.4s ease-out, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(top 0.4s ease-out, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(top 0.4s ease-out, false, false, false, false, false, false, false, false, false);
    top: 50%;
}
.fade-anim.ng-enter,
.fade-anim.ng-leave {
    -webkit-transition: compact(compact(opacity 0.5s linear, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(opacity 0.5s linear, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(opacity 0.5s linear, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(opacity 0.5s linear, false, false, false, false, false, false, false, false, false);
}
.fade-anim.ng-enter,
.fade-anim.ng-leave.ng-leave-active {
    opacity: 0;
}
.fade-anim.ng-enter.ng-enter-active,
.fade-anim.ng-leave {
    opacity: 1;
}
.fade-anim-fast.ng-enter,
.fade-anim-fast.ng-leave {
    -webkit-transition: compact(compact(opacity 0.2s linear, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(opacity 0.2s linear, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(opacity 0.2s linear, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(opacity 0.2s linear, false, false, false, false, false, false, false, false, false);
}
.fade-anim-fast.ng-enter,
.fade-anim-fast.ng-leave.ng-leave-active {
    opacity: 0;
}
.fade-anim-fast.ng-enter.ng-enter-active,
.fade-anim-fast.ng-leave {
    opacity: 1;
}
.ng-show-fade-anim {
    -webkit-transition: compact(compact(all linear 0.5s, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(all linear 0.5s, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(all linear 0.5s, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(all linear 0.5s, false, false, false, false, false, false, false, false, false);
    opacity: 1;
}
.ng-show-fade-anim.ng-hide-add,
.ng-show-fade-anim.ng-hide-remove {
    display: block !important;
}
.ng-show-fade-anim.ng-hide {
    opacity: 0;
}
.slide-anim.ng-enter {
    -webkit-transition: compact(compact(right 0.5s ease-out, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(right 0.5s ease-out, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(right 0.5s ease-out, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(right 0.5s ease-out, false, false, false, false, false, false, false, false, false);
}
.slide-anim.ng-leave {
    -webkit-transition: compact(compact(right 0.5s ease-in, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(right 0.5s ease-in, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(right 0.5s ease-in, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(right 0.5s ease-in, false, false, false, false, false, false, false, false, false);
}
.slide-anim.ng-enter,
.slide-anim.ng-leave.ng-leave-active {
    right: 100%;
}
.slide-anim.ng-enter.ng-enter-active,
.slide-anim.ng-leave {
    right: 0;
}
.popup-anim.ng-enter {
    -webkit-transition: compact(compact(top 0.5s ease-out, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(top 0.5s ease-out, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(top 0.5s ease-out, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(top 0.5s ease-out, false, false, false, false, false, false, false, false, false);
}
.popup-anim.ng-leave {
    -webkit-transition: compact(compact(top 0.5s ease-in, false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(top 0.5s ease-in, false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(top 0.5s ease-in, false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(top 0.5s ease-in, false, false, false, false, false, false, false, false, false);
}
.popup-anim.ng-enter,
.popup-anim.ng-leave.ng-leave-active {
    top: 100%;
}
.popup-anim.ng-enter.ng-enter-active,
.popup-anim.ng-leave {
    top: 0;
}
.ng-modal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.ng-modal.ng-modal-flexible {
    text-align: center;
}
.ng-modal.ng-modal-flexible:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.ng-modal .backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
}
.ng-modal .dialog {
    background-color: #fff;
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    margin-left: -300px;
    margin-top: -300px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
}
.ng-modal .dialog-flexible {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    height: auto;
    background-color: #fff;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
}
.app-outer-background {
    position: absolute;
    min-width: 1024px;
    min-height: 768px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    overflow: auto;
    background: url(/images/layout/app_outer_background.jpg) center repeat-x;
}
.app-container {
    position: absolute;
    width: 1024px;
    min-height: 600px;
    max-height: 768px;
    height: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    background-color: #15d1b1;
}
.app-container #scene {
    position: absolute;
    width: 100%;
    bottom: 0;
}
body.pancake.cordova {
    padding: 0;
    margin: 0;
}
.full-view {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
    will-change: transform;
}
.full-view .title-bar {
    height: 60px;
    width: 100%;
    background-color: #fe9b00;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: compact(#4a7392 0 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 0 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 0 4px 0, false, false, false, false, false, false, false, false, false);
}
.full-view .title-bar .title-bar-icon {
    position: absolute;
    top: 7px;
    left: 15px;
    float: left;
    height: 50px;
    width: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #fff;
}
.full-view .title-bar .title-bar-title {
    position: absolute;
    line-height: 60px;
    left: 80px;
    font-family: pbs_kids_headlinebold;
    font-size: 30px;
    color: #fff;
    top: 2px;
}
.full-view .title-bar .medium-close-button {
    position: absolute;
    top: 12px;
    right: 20px;
}
.full-view .full-content {
    position: absolute;
    width: 1024px;
    height: 540px;
    top: 50%;
    left: 50%;
    margin-top: -240px;
    margin-left: -512px;
}
li {
    text-align: initial;
}
#debug {
    position: absolute;
    z-index: 1;
    left: 30px;
    bottom: 30px;
    width: 700px;
    display: none;
}
#debug .time {
    font-weight: bolder;
    background-color: #fff;
    display: table;
    font-size: larger;
}
#debug .section {
    position: relative;
    clear: both;
}
#debug .btn {
    background-image: none;
    background-color: #fff;
    color: #000;
    margin-bottom: 5px;
    margin-left: 5px;
    display: inline-block;
    font-size: 12px;
    font-family: arial;
    border: none;
    outline: 0;
}
#debug .btn:hover {
    background-image: none;
    background-color: #333;
    color: #fff;
}
[class*=" smallicon-"],
[class^="smallicon-"] {
    display: block;
    width: 24px;
    height: 24px;
    background: url(/images/layout/small_icons.png) top left;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
}
.smallicon-greeting {
    background-position: 0 0;
}
.smallicon-goodbye {
    background-position: -24px 0;
}
.smallicon-question {
    background-position: -48px 0;
}
.smallicon-exclamation {
    background-position: -72px 0;
}
.smallicon-message-exclamation {
    background-position: -120px 0;
}
.smallicon-planet {
    background-position: -144px 0;
}
.smallicon-craft {
    background-position: -168px 0;
}
.smallicon-jump-map {
    background-position: -192px 0;
}
.smallicon-server-pin-full {
    background-position: -216px 0;
}
.smallicon-server-pin-full-small {
    background-position: -240px 0;
}
.smallicon-craft-left {
    background-position: 0 -24px;
}
.smallicon-craft-right {
    background-position: -24px -24px;
}
.smallicon-encyclopedia-left {
    background-position: -48px -24px;
}
.smallicon-encyclopedia-right {
    background-position: -72px -24px;
}
.smallicon-friend-add {
    background-position: -96px -24px;
}
.smallicon-sound {
    background-position: -120px -24px;
}
#options .options-button-sound.sound-muted i,
#options .options-button-sound.music-muted i,
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.sound-muted i,
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.music-muted i,
.smallicon-sound-mute {
    background-position: -144px -24px;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-craft.crafting-locked i,
.smallicon-craft-locked {
    background-position: -168px -24px;
}
.smallicon-map {
    background-position: -192px -24px;
}
.smallicon-server-pin {
    background-position: -216px -24px;
}
.smallicon-server-pin-small {
    background-position: -240px -24px;
}
.smallicon-left {
    background-position: -48px -48px;
}
.smallicon-right {
    background-position: -72px -48px;
}
.smallicon-friend-pending {
    background-position: -96px -48px;
}
#options .options-button-sound:hover i,
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound:hover i,
.smallicon-sound-hover {
    background-position: -120px -48px;
}
#options .options-button-sound.sound-muted:hover i,
#options .options-button-sound.music-muted:hover i,
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.sound-muted:hover i,
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.music-muted:hover i,
.smallicon-sound-mute-hover {
    background-position: -144px -48px;
}
.smallicon-positive {
    background-position: -168px -48px;
}
.smallicon-negative {
    background-position: -192px -48px;
}
.smallicon-fun {
    background-position: -216px -48px;
}
.smallicon-answers {
    background-position: -240px -48px;
}
.smallicon-left-orange {
    background-position: 0 -72px;
}
.smallicon-right-orange {
    background-position: -24px -72px;
}
.smallicon-tick-white {
    background-position: -48px -72px;
}
.smallicon-news {
    background-position: -72px -72px;
}
.smallicon-star {
    background-position: -96px -72px;
}
[class*=" mediumicon-"],
[class^="mediumicon-"] {
    display: block;
    width: 48px;
    height: 48px;
    background: url(/images/layout/medium_icons.png) top left;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -24px;
}
.mediumicon-chat {
    background-position: 0 0;
}
.mediumicon-quest {
    background-position: -48px 0;
}
.mediumicon-map {
    background-position: -96px 0;
}
.mediumicon-craft {
    background-position: -144px 0;
}
.mediumicon-emote {
    background-position: -192px 0;
}
.mediumicon-move {
    background-position: -240px 0;
}
.mediumicon-discovery {
    background-position: -288px 0;
}
.mediumicon-message-close {
    background-position: -432px 0;
}
.mediumicon-trophy {
    background-position: -336px 0;
}
.mediumicon-emote-happy {
    background-position: 0 -48px;
}
.mediumicon-emote-laugh {
    background-position: -48px -48px;
}
.mediumicon-emote-cool {
    background-position: -96px -48px;
}
.mediumicon-emote-shock {
    background-position: -144px -48px;
}
.mediumicon-emote-sad {
    background-position: -240px -48px;
}
.mediumicon-emote-angry {
    background-position: -192px -240px;
}
.mediumicon-emote-cynical {
    background-position: -240px -240px;
}
.mediumicon-emote-silly {
    background-position: -288px -240px;
}
.mediumicon-emote-sleepy {
    background-position: -336px -240px;
}
.mediumicon-emote-wink {
    background-position: -384px -240px;
}
.mediumicon-blue-girl {
    background-position: -288px -48px;
}
.mediumicon-paginate-arrow {
    background-position: -336px -48px;
}
.mediumicon-paginate-arrow-white {
    background-position: -384px -48px;
}
.mediumicon-message-open {
    background-position: -432px -48px;
}
.mediumicon-cave {
    background-position: -432px -192px;
    margin-left: -23px;
    margin-top: -26px;
}
.mediumicon-crystal {
    background-position: 0 -96px;
}
.mediumicon-tick {
    background-position: -48px -96px;
}
.mediumicon-random {
    background-position: -96px -96px;
}
.mediumicon-tick-white {
    background-position: -144px -96px;
}
.mediumicon-cross {
    background-position: -192px -96px;
}
.mediumicon-encyclopedia {
    background-position: -240px -96px;
}
.mediumicon-Skin {
    background-position: 0 -144px;
}
.mediumicon-Head {
    background-position: -48px -144px;
}
.mediumicon-Body {
    background-position: -96px -144px;
}
.mediumicon-Wheels {
    background-position: -144px -144px;
}
.mediumicon-Sticker {
    background-position: -192px -144px;
}
.mediumicon-stuff {
    background-position: -240px -144px;
}
.mediumicon-gadgets {
    background-position: -288px -144px;
}
.mediumicon-powerups {
    background-position: -336px -144px;
}
.mediumicon-parts {
    background-position: -384px -144px;
}
.mediumicon-finds {
    background-position: -432px -144px;
}
.mediumicon-powerup {
    background-position: -384px -192px;
}
.mediumicon-Eyes {
    background-position: 0 -192px;
}
.mediumicon-Mouth {
    background-position: -48px -192px;
}
.mediumicon-smile-bad {
    background-position: -96px -192px;
}
.mediumicon-smile-good {
    background-position: -144px -192px;
}
.mediumicon-remove {
    background-position: -192px -192px;
}
.mediumicon-remove-on {
    background-position: -240px -192px;
}
.mediumicon-new {
    background-position: -288px -192px;
}
.mediumicon-home {
    background-position: -336px -192px;
}
.mediumicon-emote-rocking {
    background-position: 0 -240px;
}
.mediumicon-emote-jump {
    background-position: -48px -240px;
}
.mediumicon-emote-hop_back {
    background-position: -96px -240px;
}
.mediumicon-emote-hop_front {
    background-position: -144px -240px;
}
.mediumicon-paginate-random {
    background-position: -288px -96px;
}
.mediumicon-paginate-random-white {
    background-position: -336px -96px;
}
[class*=" bigicon-"],
[class^="bigicon-"] {
    display: block;
    width: 50px;
    height: 50px;
    background: url(/images/layout/big_icons.png) top left;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}
.bigicon-enc-stuff {
    background-position: 0 0;
}
.bigicon-enc-gadgets {
    background-position: -50px 0;
}
.bigicon-enc-powerup {
    background-position: -50px -50px;
}
.bigicon-enc-powerups {
    background-position: -100px 0;
}
.bigicon-enc-parts {
    background-position: -150px 0;
}
.bigicon-enc-finds {
    background-position: 0 -50px;
}
@font-face {
    font-family: pbs_kids_headlinebold;
    src: url(/fonts/pbsheadline_bold/pbskidsheadline-bold-webfont.eot);
    src: url(/fonts/pbsheadline_bold/pbskidsheadline-bold-webfont.eot#iefix) format("embedded-opentype"),
        url(/fonts/pbsheadline_bold/pbskidsheadline-bold-webfont.woff) format("woff"),
        url(/fonts/pbsheadline_bold/pbskidsheadline-bold-webfont.ttf) format("truetype"),
        url(/fonts/pbsheadline_bold/pbskidsheadline-bold-webfont.svg#pbs_kids_headlinebold) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: colfaxmedium;
    src: url(/fonts/colfax_medium/colfax-medium-webfont.eot);
    src: url(/fonts/colfax_medium/colfax-medium-webfont.eot#iefix) format("embedded-opentype"),
        url(/fonts/colfax_medium/colfax-medium-webfont.woff) format("woff"),
        url(/fonts/colfax_medium/colfax-medium-webfont.ttf) format("truetype"),
        url(/fonts/colfax_medium/colfax-medium-webfont.svg#colfaxmedium) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: pbs_kids_subhead_regular;
    src: url(/fonts/pbspubheadline_regular/pbskidssubhead-regular-webfont.eot);
    src: url(/fonts/pbspubheadline_regular/pbskidssubhead-regular-webfont.eot#iefix) format("embedded-opentype"),
        url(/fonts/pbspubheadline_regular/pbskidssubhead-regular-webfont.woff) format("woff"),
        url(/fonts/pbspubheadline_regular/pbskidssubhead-regular-webfont.ttf) format("truetype"),
        url(/fonts/pbspubheadline_regular/pbskidssubhead-regular-webfont.svg#pbs_kids_subheadregular) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: pbs_kids_headlineregular;
    src: url(/fonts/pbsheadline_regular/pbskidsheadline-regular-webfont.eot);
    src: url(/fonts/pbsheadline_regular/pbskidsheadline-regular-webfont.eot#iefix) format("embedded-opentype"),
        url(/fonts/pbsheadline_regular/pbskidsheadline-regular-webfont.woff) format("woff"),
        url(/fonts/pbsheadline_regular/pbskidsheadline-regular-webfont.ttf) format("truetype"),
        url(/fonts/pbsheadline_regular/pbskidsheadline-regular-webfont.svg#pbs_kids_headlineregular) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: colfaxblack;
    src: url(/fonts/colfax_black/colfax-black-webfont.eot);
    src: url(/fonts/colfax_black/colfax-black-webfont.eot#iefix) format("embedded-opentype"),
        url(/fonts/colfax_black/colfax-black-webfont.woff) format("woff"),
        url(/fonts/colfax_black/colfax-black-webfont.ttf) format("truetype"),
        url(/fonts/colfax_black/colfax-black-webfont.svg#colfaxblack) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: colfaxbold;
    src: url(/fonts/colfax_bold/colfax-bold-webfont.eot);
    src: url(/fonts/colfax_bold/colfax-bold-webfont.eot#iefix) format("embedded-opentype"),
        url(/fonts/colfax_bold/colfax-bold-webfont.woff) format("woff"),
        url(/fonts/colfax_bold/colfax-bold-webfont.ttf) format("truetype"),
        url(/fonts/colfax_bold/colfax-bold-webfont.svg#colfaxbold) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: colfaxlight;
    src: url(/fonts/colfax_light/colfax-light-webfont.eot);
    src: url(/fonts/colfax_light/colfax-light-webfont.eot#iefix) format("embedded-opentype"),
        url(/fonts/colfax_light/colfax-light-webfont.woff) format("woff"),
        url(/fonts/colfax_light/colfax-light-webfont.ttf) format("truetype"),
        url(/fonts/colfax_light/colfax-light-webfont.svg#colfaxlight) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: colfax_regularregular;
    src: url(/fonts/colfax_regular/colfax-regular-webfont.eot);
    src: url(/fonts/colfax_regular/colfax-regular-webfont.eot#iefix) format("embedded-opentype"),
        url(/fonts/colfax_regular/colfax-regular-webfont.woff) format("woff"),
        url(/fonts/colfax_regular/colfax-regular-webfont.ttf) format("truetype"),
        url(/fonts/colfax_regular/colfax-regular-webfont.svg#colfax_regularregular) format("svg");
    font-weight: 400;
    font-style: normal;
}
.btn-save {
    color: #fff;
    background-color: #2ddb40;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    font-family: pbs_kids_headlinebold, sans-serif;
}
.btn-cancel {
    color: #fff;
    background-color: #df3f25;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    font-family: pbs_kids_headlinebold, sans-serif;
}
.btn-random {
    width: 90px;
    height: 90px;
    background-image: none;
    padding: 0;
    background-color: #fddaff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.btn-random p {
    position: absolute;
    bottom: 10px;
    margin: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #000;
}
.btn-random i {
    top: 15px;
    margin-top: 0;
}
.btn-random:hover {
    background-color: #fff;
}
.big-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    width: 55px;
    height: 55px;
    background-color: #ff6700;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.big-close-button .cross-left,
.big-close-button .cross-right {
    position: absolute;
    width: 5px;
    top: 50%;
    left: 50%;
    margin-top: -18px;
    margin-left: -4px;
    height: 36px;
    background-color: #fff;
}
.big-close-button .cross-left {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.big-close-button .cross-right {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.big-close-button:hover {
    background-color: #fff;
}
.big-close-button:hover .cross-left,
.big-close-button:hover .cross-right {
    background-color: #ff6700;
}
.big-close-button:disabled,
.big-close-button:disabled:hover {
    background-color: #d3d3d3;
}
.big-close-button:disabled:hover .cross-left,
.big-close-button:disabled:hover .cross-right {
    background-color: #fff;
}
.large-close-button {
    position: relative;
    width: 46px;
    height: 46px;
    background-color: #ff6700;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.large-close-button .cross-left,
.large-close-button .cross-right {
    position: absolute;
    width: 3px;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -2px;
    height: 30px;
    background-color: #fff;
}
.large-close-button .cross-left {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.large-close-button .cross-right {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.large-close-button:hover {
    background-color: #fff;
}
.large-close-button:hover .cross-left,
.large-close-button:hover .cross-right {
    background-color: #ff6700;
}
.large-close-button:disabled,
.large-close-button:disabled:hover {
    background-color: #d3d3d3;
}
.large-close-button:disabled:hover .cross-left,
.large-close-button:disabled:hover .cross-right {
    background-color: #fff;
}
.medium-close-button {
    position: relative;
    width: 35px;
    height: 35px;
    background-color: #ff6700;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.medium-close-button .cross-left,
.medium-close-button .cross-right {
    position: absolute;
    width: 3px;
    top: 50%;
    left: 50%;
    margin-top: -11.5px;
    margin-left: -2px;
    height: 23px;
    background-color: #fff;
}
.medium-close-button .cross-left {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.medium-close-button .cross-right {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.medium-close-button:hover {
    background-color: #fff;
}
.medium-close-button:hover .cross-left,
.medium-close-button:hover .cross-right {
    background-color: #ff6700;
}
.medium-close-button:disabled,
.medium-close-button:disabled:hover {
    background-color: #d3d3d3;
}
.medium-close-button:disabled:hover .cross-left,
.medium-close-button:disabled:hover .cross-right {
    background-color: #fff;
}
.small-close-button {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #ff6700;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.small-close-button .cross-left,
.small-close-button .cross-right {
    position: absolute;
    width: 2px;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -1px;
    height: 16px;
    background-color: #fff;
}
.small-close-button .cross-left {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.small-close-button .cross-right {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.small-close-button:hover {
    background-color: #fff;
}
.small-close-button:hover .cross-left,
.small-close-button:hover .cross-right {
    background-color: #ff6700;
}
.small-close-button:disabled,
.small-close-button:disabled:hover {
    background-color: #d3d3d3;
}
.small-close-button:disabled:hover .cross-left,
.small-close-button:disabled:hover .cross-right {
    background-color: #fff;
}
.button-cancel,
.button-ok {
    width: 240px;
    height: 65px;
    font-family: pbs_kids_headlineregular;
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
}
.button-cancel:focus,
.button-ok:focus {
    color: #fff;
}
.button-cancel:hover,
.button-ok:hover {
    margin-top: 10px;
    height: 55px;
    border-bottom: none;
    color: #fff;
}
.button-ok {
    background-color: #80db16;
    border-bottom: 10px solid #497607;
}
.button-violet {
    background-color: #992da5;
    border-bottom: 10px solid #510959;
}
.button-cancel {
    background-color: #f42d18;
    border-bottom: 10px solid #64220b;
}
.craft-button-group {
    position: absolute;
    bottom: 24px;
    left: 91px;
    min-width: 160px;
    height: 40px;
    margin-left: -80px;
}
.craft-button-group #craft-button-1,
.craft-button-group #craft-button-3,
.craft-button-group #craft-button-5 {
    position: absolute;
    bottom: 0;
    height: 40px;
    font-size: 16px;
    font-family: pbs_kids_headlinebold;
    text-transform: uppercase;
    background-color: #2ddb40;
    color: #fff;
    outline: 0;
    -webkit-box-shadow: compact(#2cad1f 0 10px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#2cad1f 0 10px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#2cad1f 0 10px 0, false, false, false, false, false, false, false, false, false);
}
.craft-button-group #craft-button-1:hover,
.craft-button-group #craft-button-3:hover,
.craft-button-group #craft-button-5:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.craft-button-group #craft-button-1:disabled,
.craft-button-group #craft-button-3:disabled,
.craft-button-group #craft-button-5:disabled {
    background-color: #d3d3d3;
    -webkit-box-shadow: compact(#898d98 0 10px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#898d98 0 10px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#898d98 0 10px 0, false, false, false, false, false, false, false, false, false);
    bottom: 0;
}
.craft-button-group #craft-button-1 span,
.craft-button-group #craft-button-3 span,
.craft-button-group #craft-button-5 span {
    font-size: 9px;
    margin-top: -5px;
}
.craft-button-group #craft-button-1 strong,
.craft-button-group #craft-button-3 strong,
.craft-button-group #craft-button-5 strong {
    font-size: 20px;
}
.craft-button-group #craft-button-1 {
    left: 0;
    width: 80px;
    -webkit-border-radius: 12px 6px 6px 12px;
    -khtml-border-radius: 12px 6px 6px 12px;
    -moz-border-radius: 12px 6px 6px 12px;
    border-radius: 12px 6px 6px 12px;
}
.craft-button-group #craft-button-3 {
    left: 85px;
    width: 35px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}
.craft-button-group #craft-button-5 {
    right: 0;
    width: 35px;
    -webkit-border-radius: 6px 12px 12px 6px;
    -khtml-border-radius: 6px 12px 12px 6px;
    -moz-border-radius: 6px 12px 12px 6px;
    border-radius: 6px 12px 12px 6px;
}
.craft-button-hover {
    bottom: -5px !important;
}
.paginator {
    margin: 10px auto;
    width: 170px;
    position: relative;
}
.paginator li {
    display: inline-block;
    font-family: colfaxbold;
    color: #fff;
}
.paginator a {
    display: block;
    border: 0;
    padding: 0;
    width: 24px;
    height: 24px;
}
.paginator .page-label {
    font-size: 14px;
    margin-top: 2px;
    margin-left: 20px;
    width: 130px;
    text-align: center;
}
.paginator .page-button-left {
    position: absolute;
    left: 0;
    top: 0;
}
.paginator .page-button-right {
    position: absolute;
    right: 0;
    top: 0;
}
.paginator .page-button-disabled {
    filter: alpha(Opacity=50);
    opacity: 0.5;
    cursor: default;
}
.preloader {
    background: url(/images/shared/preloader.gif) center no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
}
.preloader-60 {
    background: url(/images/shared/preloader_60.png) center no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    width: 60px;
    height: 60px;
}
.ribbon-orange.ribbon-45.ribbon {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 45px;
}
.ribbon-orange.ribbon-45.ribbon .ribbon-inner {
    display: inline-block;
    background-color: #f7810b;
    text-align: center;
    margin: 0 12px;
}
.ribbon-orange.ribbon-45.ribbon .ribbon-inner p {
    font-family: pbs_kids_headlinebold;
    display: inline-block;
    text-transform: uppercase;
    margin: 0 30px;
    line-height: 45px;
    color: #fff;
    font-size: 24px;
}
.ribbon-orange.ribbon-45.ribbon .ribbon-bottom-left,
.ribbon-orange.ribbon-45.ribbon .ribbon-bottom-right,
.ribbon-orange.ribbon-45.ribbon .ribbon-top-left,
.ribbon-orange.ribbon-45.ribbon .ribbon-top-right {
    position: absolute;
    background-color: #f7810b;
    width: 20px;
    height: 40px;
}
.ribbon-orange.ribbon-45.ribbon .ribbon-top-left {
    top: -10px;
    left: 7px;
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    transform: rotate(-25deg);
}
.ribbon-orange.ribbon-45.ribbon .ribbon-top-right {
    top: -10px;
    right: 7px;
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
}
.ribbon-orange.ribbon-45.ribbon .ribbon-bottom-left {
    bottom: -10px;
    left: 7px;
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
}
.ribbon-orange.ribbon-45.ribbon .ribbon-bottom-right {
    bottom: -10px;
    right: 7px;
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    transform: rotate(-25deg);
}
.ribbon-green.ribbon-60.ribbon {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 60px;
}
.ribbon-green.ribbon-60.ribbon .ribbon-inner {
    display: inline-block;
    background-color: #7ad313;
    text-align: center;
    margin: 0 16px;
}
.ribbon-green.ribbon-60.ribbon .ribbon-inner p {
    font-family: pbs_kids_headlinebold;
    display: inline-block;
    text-transform: uppercase;
    margin: 0 30px;
    line-height: 60px;
    color: #fff;
    font-size: 36px;
}
.ribbon-green.ribbon-60.ribbon .ribbon-bottom-left,
.ribbon-green.ribbon-60.ribbon .ribbon-bottom-right,
.ribbon-green.ribbon-60.ribbon .ribbon-top-left,
.ribbon-green.ribbon-60.ribbon .ribbon-top-right {
    position: absolute;
    background-color: #7ad313;
    width: 30px;
    height: 50px;
}
.ribbon-green.ribbon-60.ribbon .ribbon-top-left {
    top: -10px;
    left: 9px;
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    transform: rotate(-25deg);
}
.ribbon-green.ribbon-60.ribbon .ribbon-top-right {
    top: -10px;
    right: 9px;
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
}
.ribbon-green.ribbon-60.ribbon .ribbon-bottom-left {
    bottom: -10px;
    left: 9px;
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
}
.ribbon-green.ribbon-60.ribbon .ribbon-bottom-right {
    bottom: -10px;
    right: 9px;
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    transform: rotate(-25deg);
}
.arrow-left-white-small {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 8px 5px 0;
    border-color: transparent #fff transparent transparent;
    margin-left: -5px;
}
.arrow-right-white-small {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #fff;
    margin-left: -3px;
}
.arrow-left-white-medium {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 12px 8px 0;
    border-color: transparent #fff transparent transparent;
    margin-left: -7px;
}
.arrow-right-white-medium {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #fff;
    margin-left: -5px;
}
.paginator-nav {
    min-width: 170px;
    height: 42px;
    background-color: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.paginator-nav .paginator-nav-left,
.paginator-nav .paginator-nav-right {
    position: absolute;
    width: 46px;
    height: 46px;
    top: 50%;
    margin-top: -23px;
}
.paginator-nav .paginator-nav-left a,
.paginator-nav .paginator-nav-right a {
    width: 46px;
    height: 46px;
}
.paginator-nav .paginator-nav-left {
    left: 0;
}
.paginator-nav .paginator-nav-left a:hover i {
    border-right-color: #fb4d00;
}
.paginator-nav .paginator-nav-left a i {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 16px 10px 0;
    border-color: transparent #df4b0f transparent transparent;
    margin-left: -9px;
}
.paginator-nav .paginator-nav-right {
    right: 0;
}
.paginator-nav .paginator-nav-right a:hover i {
    border-left-color: #fb4d00;
}
.paginator-nav .paginator-nav-right a i {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #df4b0f;
    margin-left: -7px;
}
.paginator-nav .paginator-nav-label {
    font-size: 18px;
    font-family: pbs_kids_headlinebold;
    color: #000;
    width: 100%;
    height: 46px;
    line-height: 46px;
    text-align: center;
    cursor: default;
}
#authorization,
#login {
    width: 100%;
    height: 100%;
    background: url(/images/authorization/registration.jpg) center left no-repeat;
    position: absolute;
}
#authorization #input_helper {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 0;
    height: 0;
}
#login-header {
    background: url(/images/login/header.svg) center 0 no-repeat;
    position: relative;
    width: 100%;
    height: 236px;
    z-index: 10;
    margin-top: 35px;
    margin-bottom: -19px;
}
#login_iframe,
#login_panel {
    position: relative;
    border-radius: 0;
    width: 570px;
    height: 375px;
    margin: 0 auto;
    display: block;
    background: #9c0;
    border: 12px solid #9c0;
    box-sizing: content-box;
}
#login_panel .form-group {
    margin-bottom: 10px;
}
#login-progress {
    width: 450px;
    height: 80px;
    background: #98c800;
    margin: 0 auto;
    border: 7px solid #587200;
    border-top: none;
    border-radius: 0 0 20px 20px;
}
#login-progress #login-steps {
    width: 275px;
    position: relative;
    margin: -4px auto 0;
    top: 50%;
    background: #039fd2;
    height: 10px;
    border: 2px solid #7dddf7;
}
#login-progress #login-steps:after {
    content: "";
    position: absolute;
    background: url(/images/login/kart.svg) center center no-repeat;
    width: 58px;
    height: 54px;
    margin: -32px 0 0 -29px;
    top: 50%;
    left: 0;
    -webkit-transition: compact(compact(all 600ms cubic-bezier(0.49, 0.24, 0.3, 1.23), false, false, false, false, false, false, false, false, false) false false);
    -moz-transition: compact(compact(all 600ms cubic-bezier(0.49, 0.24, 0.3, 1.23), false, false, false, false, false, false, false, false, false) false false false);
    -o-transition: compact(compact(all 600ms cubic-bezier(0.49, 0.24, 0.3, 1.23), false, false, false, false, false, false, false, false, false) false false false);
    transition: compact(all 600ms cubic-bezier(0.49, 0.24, 0.3, 1.23), false, false, false, false, false, false, false, false, false);
}
#login-progress #login-steps.create-password:after {
    left: 33.333333333%;
}
#login-progress #login-steps.create-secretcode:after {
    left: 66.666666666%;
}
#login-progress #login-steps.complete-print:after {
    left: 100%;
}
#login-progress #login-steps .login-step {
    position: absolute;
    background: #812a88;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 3px solid #fff;
    margin-top: -15px;
    margin-left: -15px;
    top: 50%;
}
#login-progress #login-steps .login-step.step2 {
    margin-left: -15px;
    left: 33.333333333%;
}
#login-progress #login-steps .login-step.step3 {
    left: 66.666666666%;
}
#login-progress #login-steps .login-step.step4 {
    width: 36px;
    height: 36px;
    margin-top: -18px;
    margin-left: -16px;
    background-color: #ff4e00;
    left: 100%;
}
#serverSelection .dialog-flexible {
    width: 510px;
    height: 390px;
    background-color: #1be8cf;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
#serverSelection .dialog-flexible.servers-five {
    height: 405px;
}
#serverSelection .dialog-flexible .dialog-header {
    background-color: #00c3f7;
    height: 55px;
}
#serverSelection .dialog-flexible .dialog-header h1 {
    text-align: center;
    font-size: 25px;
    font-family: pbs_kids_headlineregular;
    text-transform: uppercase;
    line-height: 55px;
    margin: 0;
}
#serverSelection .dialog-flexible .dialog-content .server-list {
    position: relative;
    margin: 30px 0 25px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item {
    position: relative;
    width: 465px;
    height: 30px;
    background-color: #fff;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
    margin: 0 auto 6px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary {
    height: 80px;
    margin-bottom: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary .server-name {
    font-size: 20px;
    line-height: 70px;
    min-width: 110px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary .server-capacity-indicators {
    margin-top: 20px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary .server-capacity-indicators li {
    width: 11px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary .server-friends {
    position: absolute;
    bottom: 20px;
    left: 15px;
    float: none;
    line-height: normal;
    margin: 0;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary.server-no-friends .server-name {
    line-height: 80px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary.server-no-friends .server-capacity-indicators {
    margin-top: 25px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary .btn-select-server {
    min-width: 155px;
    height: 55px;
    text-align: center;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    margin-top: 13px;
    margin-right: 10px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary .btn-select-server span {
    line-height: 55px;
    font-size: 24px;
    font-family: pbs_kids_headlineregular;
    text-transform: uppercase;
    margin: 0;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item.server-primary .server-full {
    font-size: 20px;
    margin-right: 20px;
    line-height: 80px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item .server-name {
    position: relative;
    float: left;
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 0;
    font-family: pbs_kids_headlineregular;
    font-size: 14px;
    color: #77bc00;
    text-transform: uppercase;
    text-align: left;
    line-height: 30px;
    min-width: 80px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item .server-friends {
    font-family: colfaxmedium;
    color: #e8bb00;
    float: right;
    line-height: 30px;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 0;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item .btn-select-server {
    position: relative;
    display: block;
    float: right;
    width: 20px;
    height: 20px;
    margin-top: 5px;
    color: #fff;
    margin-left: 10px;
    margin-right: 8px;
    background-color: #77bc00;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item .btn-select-server:hover {
    background-color: #2cad1f;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item .server-full {
    position: relative;
    display: inline-block;
    float: right;
    font-family: pbs_kids_headlineregular;
    font-size: 14px;
    text-transform: uppercase;
    color: #d3d3d3;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 0;
    line-height: 30px;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item .server-capacity-indicators {
    position: relative;
    float: left;
}
#serverSelection .dialog-flexible .dialog-content .server-list .server-item .server-capacity-indicators li {
    position: relative;
    float: left;
    width: 8px;
    height: 30px;
}
#serverSelection .paginator-footer {
    bottom: 20px;
}
#serverSelection .paginator-footer .button-next,
#serverSelection .paginator-footer .button-previous {
    top: 5px;
    width: 26px;
    height: 26px;
    background-color: #fe9b00;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
    border-radius: 13px;
}
#serverSelection .paginator-footer .button-next:disabled,
#serverSelection .paginator-footer .button-next:disabled:hover,
#serverSelection .paginator-footer .button-previous:disabled,
#serverSelection .paginator-footer .button-previous:disabled:hover {
    background-color: #d3d3d3;
}
#serverSelection .paginator-footer .button-next:hover,
#serverSelection .paginator-footer .button-previous:hover {
    background-color: #ff7109;
}
#serverSelection .paginator-footer .button-previous {
    left: 7px;
}
#serverSelection .paginator-footer .button-next {
    right: 7px;
}
#register {
    width: 100%;
    height: 100%;
    background: url(/images/authorization/registration.jpg) center left no-repeat;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
#register.step1 {
    background-position: 0 0;
}
#register.step2 {
    background-position: -600px 0;
}
#register.step3 {
    background-position: -1200px 0;
}
#register.step4 {
    background-position: -1800px 0;
}
#register.ng-enter,
#register.ng-leave {
    -webkit-transition: none;
    transition: none;
}
#register .step {
    position: absolute;
    width: 100%;
    height: 540px;
    top: 50%;
    margin-top: -280px;
}
#register .bar {
    top: 0;
    margin: 0 auto;
    width: 965px;
    height: 162px;
    background: url(/images/authorization/bar_bg.png) center no-repeat;
}
#register .bar .registration-guide {
    position: relative;
    bottom: 9px;
    width: 158px;
    height: 170px;
    background: url(/images/authorization/registration_guide.png) center no-repeat;
}
#register .bar .step-dialog {
    position: relative;
    left: 161px;
    top: -114px;
    width: 790px;
    padding: 10px;
    height: 70px;
    background-color: #276eb0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
#register .bar .step-dialog p {
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
    font-family: colfaxbold;
}
#register .bar .step-dialog p.step-big-letters {
    font-size: 20px;
    margin-top: 10px;
}
#register .bar .step-dialog p.highlight {
    color: #bee0ff;
}
#register .bar .registration-dots {
    position: absolute;
    right: 330px;
    top: 25px;
    color: #276eb0;
}
#register .bar .registration-dots span {
    float: left;
    padding-right: 5px;
    margin-top: -5px;
    font-family: colfaxbold;
    font-size: 22px;
}
#register .bar .registration-dots li {
    float: left;
    display: block;
    margin: 3px;
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: #276eb0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    font-family: colfaxbold;
    font-size: 16px;
    text-align: center;
}
#register .bar .registration-dots li.current {
    background-color: #ff4e00;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
#register .registration-previous {
    position: absolute;
    left: 70px;
    bottom: 0;
    transition: transform 50ms;
}
#register .registration-previous:active {
    color: #f41971;
    background-color: #fff;
    transform: scale(1.1, 0.9);
    transform-origin: right;
}
#register .registration-previous:active .big-arrow-head {
    border-color: transparent transparent transparent #fff;
}
#register .registration-previous:active.big-arrow-left .big-arrow-head {
    border-color: transparent #fff transparent transparent;
}
#register .registration-next {
    position: absolute;
    right: 110px;
    bottom: 0;
    transition: transform 50ms;
    background-color: #45bb06;
}
#register .registration-next .big-arrow-head {
    border-color: transparent transparent transparent #45bb06;
}
#register .registration-next.big-arrow-left .big-arrow-head {
    border-color: transparent #45bb06 transparent transparent;
}
#register .registration-next:active {
    color: #45bb06;
    background-color: #fff;
    transform: scale(1.1, 0.9);
    transform-origin: left;
}
#register .registration-next:active .big-arrow-head {
    border-left-color: #fff;
}
#register .registration-next:active.big-arrow-left .big-arrow-head {
    border-right-color: #fff;
}
.face-picker {
    position: relative;
    width: 280px;
    margin-left: 3px;
}
.face-picker li {
    margin-top: 15px;
    position: relative;
    height: 65px;
    background-color: #a2ffec;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.face-picker .picker-text {
    position: absolute;
    top: 0;
    left: 15px;
    width: 115px;
    text-align: left;
    height: 65px;
    line-height: 65px;
}
.face-picker .picker-text p {
    margin: 0 0 4px;
    font-family: pbs_kids_headlinebold;
    color: #216c65;
    font-size: 22px;
    line-height: 22px;
    display: inline-block;
    vertical-align: middle;
}
.face-picker .picker-text b {
    font-family: pbs_kids_headlineregular;
    color: #000;
    font-size: 15px;
}
.face-picker .picker-arrows {
    position: absolute;
    top: 5px;
    right: 10px;
    left: auto;
    bottom: auto;
    width: 100px;
}
.picker-arrows {
    position: relative;
    width: 92px;
    height: 52px;
}
.picker-arrows .btn {
    position: absolute;
    display: block;
    width: 38px;
    height: 38px;
    top: 7px;
    background-color: #fff;
    -webkit-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
    -ms-border-radius: 19px;
    -o-border-radius: 19px;
    border-radius: 19px;
}
.picker-arrows .btn:hover {
    background-color: #ff7109;
}
.picker-arrows .btn:hover i {
    background-position: -384px -48px;
}
.picker-arrows .picker-arrow-left {
    left: -30px;
    background-color: #fff;
    -webkit-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 19px;
    -moz-border-radius: 19px;
    -ms-border-radius: 19px;
    -o-border-radius: 19px;
    border-radius: 19px;
}
.picker-arrows .picker-arrow-left i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.picker-arrows .picker-arrow-right {
    right: 45px;
}
.picker-arrows .picker-arrow-random {
    right: -1px;
}
.picker-arrows .picker-arrow-random:hover {
    background-color: #ff7109;
}
.picker-arrows .picker-arrow-random:hover i {
    background-position: -336px -96px;
}
.picker-arrows-vertical {
    position: relative;
    width: 52px;
    height: 92px;
}
.picker-arrows-vertical .picker-arrow-up {
    position: absolute;
    left: 7px;
    top: 7px;
}
.picker-arrows-vertical .picker-arrow-down {
    position: absolute;
    left: 7px;
    bottom: 7px;
}
.step0 .control-select {
    position: relative;
    margin: 40px auto 0;
}
.step0 .controls {
    position: relative;
    margin: 0 auto;
    width: 770px;
    height: 120px;
}
.step0 .control-new,
.step0 .control-returning {
    position: absolute;
    top: 0;
    width: 364px;
    height: 364px;
    text-align: center;
    border: 0 solid transparent;
}
.step0 .control-new .control-inner,
.step0 .control-returning .control-inner {
    width: 364px;
    height: 364px;
    position: absolute;
    left: 50%;
    margin-left: -182px;
    top: 50%;
    margin-top: -182px;
}
.step0 .control-new button,
.step0 .control-returning button {
    top: 268px;
    position: relative;
    width: 364px;
    height: 102px;
    font-family: pbs_kids_headlineregular;
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.step0 .control-new button:focus,
.step0 .control-returning button:focus {
    color: #fff;
}
.step0 .control-new button:hover,
.step0 .control-returning button:hover {
    margin-top: 10px;
    height: 92px;
    border-bottom: none;
    color: #fff;
}
.step0 .control-returning {
    right: 0;
}
.step0 .control-returning .control-inner {
    background-color: #f41971;
    -webkit-border-radius: 182px;
    -moz-border-radius: 182px;
    -ms-border-radius: 182px;
    -o-border-radius: 182px;
    border-radius: 182px;
}
.step0 .control-new {
    left: 0;
}
.step0 .control-new .control-inner {
    background-color: #65ccf3;
    -webkit-border-radius: 182px;
    -moz-border-radius: 182px;
    -ms-border-radius: 182px;
    -o-border-radius: 182px;
    border-radius: 182px;
}
.step0 .new-image,
.step0 .returning-image {
    position: absolute;
    top: 42px;
    width: 297px;
    height: 320px;
}
.step0 .returning-image {
    left: 50px;
    background: url(/images/authorization/returning.png) top left no-repeat;
}
.step0 .new-image {
    left: 17px;
    background: url(/images/authorization/new.png) top left no-repeat;
}
.step1 .gender-select {
    position: relative;
    margin: 40px auto 0;
}
.step1 .controls {
    position: relative;
    margin: 0 auto;
    width: 770px;
    height: 120px;
}
.step1 .gender-boy,
.step1 .gender-girl {
    position: absolute;
    top: 0;
    width: 325px;
    height: 325px;
    text-align: center;
    border: none;
    background-color: #fff;
    -webkit-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
    border-radius: 200px;
}
.step1 .gender-boy.selected,
.step1 .gender-girl.selected {
    width: 365px;
    height: 365px;
    border: 20px solid #fe9b00;
}
.step1 .gender-boy .gender-inner,
.step1 .gender-girl .gender-inner {
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    margin-left: -150px;
    top: 50%;
    margin-top: -150px;
}
.step1 .gender-boy p,
.step1 .gender-girl p {
    font-family: pbs_kids_headlinebold;
    font-size: 22px;
    margin-top: 275px;
    width: 74px;
    height: 45px;
    background-color: #fff;
    -webkit-border-radius: 25px 25px 0 0;
    -moz-border-radius: 25px 25px 0 0;
    -ms-border-radius: 25px 25px 0 0;
    -o-border-radius: 25px 25px 0 0;
    border-radius: 25px 25px 0 0;
    position: absolute;
    left: 50%;
    top: -15px;
    margin-left: -37px;
    padding-top: 7px;
}
.step1 .gender-boy {
    right: 0;
}
.step1 .gender-boy.selected {
    right: -20px;
    top: -20px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.step1 .gender-boy .gender-inner {
    background-color: #1ef8d9;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    border-radius: 150px;
}
.step1 .gender-boy .gender-inner p {
    color: #0071a0;
}
.step1 .gender-girl {
    left: 0;
}
.step1 .gender-girl.selected {
    left: -20px;
    top: -20px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.step1 .gender-girl .gender-inner {
    background-color: #fab393;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    border-radius: 150px;
}
.step1 .gender-girl .gender-inner p {
    color: #fb4d00;
}
.step1 .selected .gender-tick {
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    top: -55px;
    left: 50%;
    margin-left: -35px;
    background-color: #fe9b00;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    border-radius: 35px;
}
.step1 .boy-image,
.step1 .girl-image {
    position: absolute;
    top: 32px;
    left: 40px;
    width: 230px;
    height: 224px;
}
.step1 .boy-image {
    left: 55px;
    background: url(/images/authorization/boy.png) top left no-repeat;
}
.step1 .girl-image {
    background: url(/images/authorization/girl.png) top left no-repeat;
}
.step2 .customize-face {
    background-color: #fff;
    -webkit-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 163px 30px 30px 163px;
    -moz-border-radius: 163px 30px 30px 163px;
    -ms-border-radius: 163px 30px 30px 163px;
    -o-border-radius: 163px 30px 30px 163px;
    border-radius: 163px 30px 30px 163px;
    position: relative;
    margin: 10px auto 0;
    width: 630px;
    height: 335px;
    border: none;
}
.step2 .customize-face .look-preview {
    position: relative;
    width: 305px;
    height: 305px;
    float: left;
    margin: 15px;
    background-color: #fab393;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    border-radius: 150px;
}
.step2 .customize-face .look-preview #look-preview {
    position: relative;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    border-radius: 150px;
}
.step2 .customize-face .btn-random {
    position: absolute;
    left: 0;
    bottom: 15px;
}
.step2 .customize-face ul {
    float: left;
}
.step3 .select-avatar {
    margin: 162px auto 0;
    text-align: center;
    display: table;
    position: relative;
}
.step3 .select-avatar li {
    position: relative;
    text-align: center;
    width: 160px;
    height: 155px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}
.step3 .select-avatar li i {
    display: none;
}
.step3 .select-avatar li.selected {
    background-color: #fff;
    -webkit-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#34877e 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.step3 .select-avatar li.selected i {
    display: block;
    position: absolute;
    top: 0;
    width: 48px;
    height: 48px;
    background-color: #fff;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    border-radius: 24px;
}
.step3 .select-avatar li a {
    cursor: pointer;
    position: relative;
    display: block;
}
.step3 .select-avatar li a .select-avatar-message {
    display: none;
}
.step3 .select-avatar li a canvas {
    pointer-events: none;
}
.step3 .register-preloader {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 180px;
}
.step3 .notify-error {
    position: absolute;
    bottom: -50px;
    right: 250px;
    display: none;
    font-size: 13px;
    text-align: left;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
    height: auto;
    line-height: normal;
    padding: 10px;
    background-color: #df3f25;
    color: #fff;
}
.step4 .avatar {
    bottom: -180px;
    left: -50px;
    position: absolute;
}
.avatar-editor {
    background: url(/images/avatar_editor/bg.jpg) center/cover;
}
.avatar-editor .full-content {
    height: 540px;
    margin-top: -240px;
}
.avatar-editor .title-bar {
    background-color: #3fd8fc;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    position: absolute;
}
.avatar-editor .full-content .redeem-button {
    height: 54px;
    margin: 10px;
    position: relative;
}
.avatar-editor .full-content .avatar-wrapper {
    position: absolute;
    width: 460px;
    height: 370px;
    top: -100px;
    left: 130px;
}
.avatar-editor .full-content .avatar-wrapper #avatar-editor-canvas {
    width: 460px;
    height: 450px;
}
.avatar-editor .full-content .avatar-wrapper #avatar-editor-canvas .preloader-60 {
    margin-top: 50px;
}
.avatar-editor .full-content .avatar_editor_btns {
    position: absolute;
    left: 210px;
    bottom: 115px;
    width: 300px;
    height: 38px;
}
.avatar-editor .full-content .avatar_editor_btns .btn {
    position: relative;
    width: 100px;
    height: 38px;
    margin-bottom: 10px;
    font-size: 22px;
    padding: 0;
}
.avatar-editor .full-content .avatar_editor_btns .btn.btn-save {
    float: right;
}
.avatar-editor .full-content .avatar_editor_btns .btn.btn-cancel {
    float: left;
}
.avatar-editor .full-content .avatar-editor-categories {
    width: 660px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 20px;
}
.avatar-editor .full-content .avatar-editor-categories .category {
    width: 86px;
    height: 86px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    border: 7px solid transparent;
}
.avatar-editor .full-content .avatar-editor-categories .category i {
    top: 40%;
}
.avatar-editor .full-content .avatar-editor-categories .category p {
    font-family: colfaxblack, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-top: 50px;
}
.avatar-editor .full-content .avatar-editor-categories .category .product-new {
    top: 0;
    margin-left: 10px;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Skin {
    background-color: #e14dff;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Skin.selected,
.avatar-editor .full-content .avatar-editor-categories .category.category-Skin:hover {
    border: 7px solid #e14dff;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Head {
    background-color: #00dcef;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Head.selected,
.avatar-editor .full-content .avatar-editor-categories .category.category-Head:hover {
    border: 7px solid #00dcef;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Eyes {
    background-color: #ea6f02;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Eyes.selected,
.avatar-editor .full-content .avatar-editor-categories .category.category-Eyes:hover {
    border: 7px solid #ea6f02;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Mouth {
    background-color: #f70c70;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Mouth.selected,
.avatar-editor .full-content .avatar-editor-categories .category.category-Mouth:hover {
    border: 7px solid #f70c70;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Body {
    background-color: #ffb000;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Body.selected,
.avatar-editor .full-content .avatar-editor-categories .category.category-Body:hover {
    border: 7px solid #ffb000;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Wheels {
    background-color: #00d2b1;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Wheels.selected,
.avatar-editor .full-content .avatar-editor-categories .category.category-Wheels:hover {
    border: 7px solid #00d2b1;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Sticker {
    background-color: #f70c70;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.avatar-editor .full-content .avatar-editor-categories .category.category-Sticker.selected,
.avatar-editor .full-content .avatar-editor-categories .category.category-Sticker:hover {
    border: 7px solid #f70c70;
}
.avatar-editor .full-content .avatar-editor-categories .category.selected,
.avatar-editor .full-content .avatar-editor-categories .category:hover {
    background-color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.avatar-editor .full-content .avatar-editor-categories .category.selected p,
.avatar-editor .full-content .avatar-editor-categories .category:hover p {
    color: #000;
}
.avatar-editor .full-content .avatar_editor_inventory {
    position: absolute;
    width: 330px;
    height: 700px;
    top: calc(50% + 4px);
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #a2cccc;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors {
    position: absolute;
    top: 18px;
    left: -50px;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li {
    position: relative;
    background-color: #669da1;
    -moz-border-radius-topleft: 30px;
    -webkit-border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    -moz-border-radius-bottomleft: 30px;
    -webkit-border-bottom-left-radius: 30px;
    border-bottom-left-radius: 30px;
    width: 50px;
    height: 42px;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a {
    display: block;
    width: 50px;
    height: 42px;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button {
    background-color: #71afb3;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button:hover {
    background-color: #fff;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 6px;
    left: 6px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Black,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Black {
    background-color: #000;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Blue,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Blue {
    background-color: #00a2f4;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Turquoise,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Turquoise {
    background-color: #1ae8cf;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Green,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Green {
    background-color: #5ac100;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Purple,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Purple {
    background-color: #926cde;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Red,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Red {
    background-color: #ff613e;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Orange,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Orange {
    background-color: #ff9100;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Pink,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Pink {
    background-color: #ff92ea;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Yellow,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Yellow {
    background-color: #ffd300;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Special,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Special {
    background-color: #fff;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .smallicon-star {
    top: 20px;
    left: 21px;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li.selected,
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li:hover {
    background-color: #a2cccc;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-search {
    width: 295px;
    margin: 10px auto 0;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-search input {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    border: 3px solid #669da1;
    background: #fff;
    color: #216c65;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 16px;
    outline: none;
    padding: 3px 8px;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products {
    width: 295px;
    height: 430px;
    margin: 5px auto;
    overflow: hidden;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products .product-new {
    top: 25px;
    left: 25px;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products .recycle {
    width: 88px;
    height: 18px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -44px;
    text-align: center;
    color: #fff;
    background-color: #df3f25;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    font-family: pbs_kids_headlinebold, sans-serif;
    cursor: pointer;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products li {
    position: relative;
    float: left;
    background-color: #fff;
    -webkit-box-shadow: compact(#216c65 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#216c65 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#216c65 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    width: 138px;
    height: 138px;
    margin: 0 15px 8px 0;
    cursor: pointer;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products li.product-selected {
    background-color: #ffeab0;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products li .product_img {
    max-width: 138px;
    position: absolute;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products li.catalog-product .product_img {
    opacity: 0.6;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products li .avatar-item-info-button {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 8px;
    background: #139ce6;
    color: #fff;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 18px;
    line-height: 20px;
    cursor: pointer;
    z-index: 3;
    box-sizing: border-box;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products li .avatar-item-info-button:hover {
    background: #0b7fc1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products li:nth-child(even) {
    margin-right: 0;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-products li .product_qnt {
    width: 26px;
    height: 23px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-family: pbs_kids_headlinebold, sans-serif;
    background-color: #80db16;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.avatar-editor .full-content .avatar_editor_inventory .paginationArrow {
    display: block;
    width: 115px;
    height: 17px;
    margin: 0 auto;
    background: url(/images/avatar_editor/paginate_arrow.png) no-repeat;
    opacity: 0.2;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-catalog-prompt {
    position: absolute;
    top: 101px;
    left: 18px;
    width: 295px;
    height: 430px;
    box-sizing: border-box;
    padding: 142px 18px 0;
    background: rgba(162, 204, 204, 0.94);
    text-align: center;
    z-index: 4;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-catalog-prompt p {
    margin: 0 0 14px;
    color: #216c65;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 18px;
}
.avatar-editor .full-content .avatar_editor_inventory .avatar-editor-catalog-prompt .button-ok {
    width: 225px;
    font-size: 19px;
}
.avatar-editor .full-content .avatar_editor_inventory .paginationArrow:not([disabled]) {
    opacity: 1;
    cursor: pointer;
}
.avatar-editor .full-content .avatar_editor_inventory .upArrow {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-top: 10px;
}
.contacts {
    background: url(/images/contacts/bg.jpg) center/cover;
}
.contacts .title-bar {
    background-color: #99ce05;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.contacts .contacts-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 50px;
    display: inline-block;
}
.contacts .contacts-carousel .friend-avatar {
    position: absolute;
    width: 300px;
    height: 300px;
    display: inline-block;
    background-color: #fff;
    -webkit-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    border-radius: 150px;
    vertical-align: middle;
    overflow: hidden;
}
.contacts .contacts-carousel .friend-avatar div {
    display: block;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-0 {
    top: 60px;
    left: 60px;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-2 {
    top: 60px;
    right: 60px;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-0 canvas,
.contacts .contacts-carousel .friend-avatar.friend-avatar-2 canvas {
    opacity: 0.6;
    width: 300px;
    position: absolute;
    top: 20px;
    left: 0;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-0 .mediumicon-encyclopedia,
.contacts .contacts-carousel .friend-avatar.friend-avatar-2 .mediumicon-encyclopedia {
    display: none;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-0 p,
.contacts .contacts-carousel .friend-avatar.friend-avatar-2 p {
    display: block;
    width: 220px;
    left: 50%;
    margin-left: -110px;
    position: absolute;
    top: 240px;
    text-align: center;
    font-size: 16px;
    font-family: colfaxblack, sans-serif;
    color: #8462b1;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-2 canvas {
    left: 10px;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1,
.contacts .contacts-carousel .friend-avatar.single-contact {
    top: 0;
    left: 50%;
    margin-left: -200px;
    width: 400px;
    height: 400px;
    overflow: visible;
    background-color: #fff;
    -webkit-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
    border-radius: 200px;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 canvas,
.contacts .contacts-carousel .friend-avatar.single-contact canvas {
    opacity: 1;
    width: 300px;
    position: absolute;
    top: 60px;
    left: 50px;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 p,
.contacts .contacts-carousel .friend-avatar.single-contact p {
    display: block;
    width: 220px;
    left: 50%;
    margin-left: -110px;
    position: absolute;
    top: 320px;
    text-align: center;
    font-size: 22px;
    font-family: colfaxblack, sans-serif;
    color: #5a3789;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 div,
.contacts .contacts-carousel .friend-avatar.single-contact div {
    display: block;
    text-align: center;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .friend_count,
.contacts .contacts-carousel .friend-avatar.single-contact .friend_count {
    position: absolute;
    top: 20px;
    font-size: 22px;
    font-family: colfaxblack, sans-serif;
    color: #229495;
    width: 100%;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .discovery_count,
.contacts .contacts-carousel .friend-avatar.single-contact .discovery_count {
    position: absolute;
    top: 45px;
    font-size: 22px;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #ff4e00;
    width: 100%;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .mediumicon-encyclopedia,
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .mediumicon-home,
.contacts .contacts-carousel .friend-avatar.single-contact .mediumicon-encyclopedia,
.contacts .contacts-carousel .friend-avatar.single-contact .mediumicon-home {
    display: block;
    position: absolute;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .remove,
.contacts .contacts-carousel .friend-avatar.single-contact .remove {
    position: absolute;
    bottom: 19px;
    left: -115px;
    cursor: pointer;
    width: 100%;
    text-align: right;
    padding-right: 30px;
    color: #497607;
    font-size: 18px;
    font-family: colfax_regularregular, sans-serif;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .remove:hover,
.contacts .contacts-carousel .friend-avatar.single-contact .remove:hover {
    color: #000;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .remove:hover i,
.contacts .contacts-carousel .friend-avatar.single-contact .remove:hover i {
    background-position: -96px 0;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .remove .small-close-button,
.contacts .contacts-carousel .friend-avatar.single-contact .remove .small-close-button {
    display: inline-block;
    right: 0;
    margin-left: 10px;
    top: 5px;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .encyclopedia,
.contacts .contacts-carousel .friend-avatar.single-contact .encyclopedia {
    position: absolute;
    left: 40px;
    top: 30px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #f19455;
    border: 5px solid #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .encyclopedia:hover,
.contacts .contacts-carousel .friend-avatar.single-contact .encyclopedia:hover {
    background-color: #fff;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .visit-room-button,
.contacts .contacts-carousel .friend-avatar.single-contact .visit-room-button {
    position: absolute;
    right: 40px;
    top: 30px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #992da5;
    border: 5px solid #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.contacts .contacts-carousel .friend-avatar.friend-avatar-1 .visit-room-button:hover,
.contacts .contacts-carousel .friend-avatar.single-contact .visit-room-button:hover {
    background-color: #fff;
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
}
.contacts .contacts-carousel .friend-avatar.single-contact {
    left: 50%;
    margin-left: -200px;
}
.contacts .carousel-button {
    position: absolute;
    top: 200px;
    right: 10px;
    width: 43px;
    height: 43px;
    background-color: #fff;
    -webkit-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    border-radius: 21px;
    cursor: pointer;
}
.contacts .carousel-button:disabled {
    filter: alpha(Opacity=50);
    opacity: 0.5;
}
.contacts .carousel-button.carousel-button-prev {
    left: 10px;
    right: auto;
}
.contacts .carousel-button.carousel-button-prev i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.contacts .no-friends {
    width: 400px;
    height: 85px;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #ff4e00;
    font-size: 30px;
    text-align: center;
    margin: 400px auto;
}
#free_crafting,
#social_crafting {
    position: absolute;
    background-size: cover;
}
#free_crafting.free-crafting,
#free_crafting.social-crafting,
#social_crafting.free-crafting,
#social_crafting.social-crafting {
    background: url(/images/crafting/crafting_bg.jpg) center;
}
#free_crafting.part-crafting,
#social_crafting.part-crafting {
    background: url(/images/avatar_editor/bg.jpg) center;
}
#free_crafting .mini-alert {
    position: absolute;
    top: 140px;
}
.product-grid-box,
.resource-grid-box {
    text-align: initial;
}
#crafting_menu {
    position: absolute;
    background: url(/images/crafting/crafting_bg.jpg) center/cover;
    font-family: pbs_kids_headlinebold;
    text-align: center;
}
#crafting_menu h1 {
    margin-top: 60px;
    margin-bottom: 35px;
    font-size: 38px;
}
#crafting_menu li {
    display: inline-block;
    width: 145px;
}
#crafting_menu li button {
    margin: 10px;
}
#crafting_menu li button h2 {
    font-size: 18px;
    width: 115px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 15px;
}
#crafting_menu li button p {
    font-family: pbs_kids_headlineregular;
    font-size: 16px;
    color: #fff;
}
#crafting_menu li button i {
    position: relative;
    display: block;
    width: 125px;
    height: 121px;
    background: url(/images/layout/big_elements.png);
    margin-bottom: 10px;
}
#crafting_menu li button.crafting-menu-gadgets h2 {
    color: #fff;
}
#crafting_menu li button.crafting-menu-gadgets i {
    background-position: -450px 0;
}
#crafting_menu li button.crafting-menu-powerup h2 {
    color: #fff;
}
#crafting_menu li button.crafting-menu-powerup i {
    background-position: -575px 0;
}
#crafting_menu li button.crafting-menu-powerups h2 {
    color: #fff;
}
#crafting_menu li button.crafting-menu-powerups i {
    background-position: -325px 0;
}
#crafting_menu li button.crafting-menu-parts h2 {
    color: #fff;
}
#crafting_menu li button.crafting-menu-parts i {
    background-position: -325px -121px;
}
#crafting_menu li button.crafting-menu-social h2 {
    color: #fff;
}
#crafting_menu li button.crafting-menu-social i {
    background-position: -450px -121px;
}
#crafting_menu li button:hover {
    filter: alpha(Opacity=85);
    opacity: 0.85;
}
#craftBooth .player-chosen-crafting-item > div {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 70px;
    background-color: #fe9b00;
    -webkit-box-shadow: compact(#985d00 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#985d00 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#985d00 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    -ms-border-radius: 90px;
    -o-border-radius: 90px;
    border-radius: 90px;
}
#craftBooth .player-chosen-crafting-item > div i {
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    top: 10px;
    left: 50%;
    margin-left: -35px;
    background: url(/images/resources/resources_medium.png);
}
#craftBooth .player-chosen-crafting-item > div.player-1-chosen-crafting-item {
    left: 150px;
}
#craftBooth .player-chosen-crafting-item > div.player-2-chosen-crafting-item {
    left: 245px;
}
#craftBooth .player-chosen-crafting-item > div.player-3-chosen-crafting-item {
    left: 340px;
}
#craftBooth .player-chosen-crafting-item > span {
    position: absolute;
    width: 26px;
    height: 26px;
    top: 105px;
    text-align: center;
    line-height: 26px;
    font-family: colfaxbold;
    color: #fff;
    font-size: 18px;
    background-color: #fe9b00;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    -ms-border-radius: 26px;
    -o-border-radius: 26px;
    border-radius: 26px;
}
#craftBooth .player-chosen-crafting-item > span.player-chosen-plus-1 {
    left: 230px;
}
#craftBooth .player-chosen-crafting-item > span.player-chosen-plus-2 {
    left: 325px;
}
#craftBooth .player-chosen-crafting-item > span.player-chosen-equals {
    left: 420px;
}
#craftBooth .item-locked {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    margin-left: -22px;
    background-color: #2ddb40;
    -webkit-box-shadow: compact(#188a24 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#188a24 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#188a24 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
#craftBooth .item-locked.item-locked-0 {
    top: 290px;
}
#craftBooth .item-locked.item-locked-1 {
    top: 402px;
}
#craftBooth .item-locked.item-locked-2 {
    top: 514px;
}
#craftBooth .item-locked:hover {
    background-color: #59e268;
}
.dialog-box {
    position: absolute;
    top: 0;
    right: 165px;
    width: 170px;
    height: 170px;
    cursor: default;
    background-color: #ffb000;
}
.dialog-box p {
    position: absolute;
    width: 100%;
    text-align: center;
    font-family: pbs_kids_headlineregular;
    font-size: 24px;
    color: #fff;
}
.dialog-box .crafting-message-up {
    top: 20px;
}
.dialog-box .crafting-message-down {
    bottom: 10px;
}
.resource-button-down,
.resource-button-up {
    left: 130px;
}
.grid-box {
    background-color: #dcecb4;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    position: inherit;
    width: inherit;
    height: inherit;
}
.grid-list {
    position: relative;
    padding: 5px;
    width: inherit;
    height: 300px;
}
.grid-list .grid-item {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    vertical-align: top;
    margin: 5px;
}
.grid-list .grid-item .item-disabled {
    filter: alpha(Opacity=20);
    opacity: 0.2;
}
.grayscale-on {
    -webkit-filter: compact(grayscale(100%), false, false, false, false, false, false, false, false, false);
    -moz-filter: compact(grayscale(100%), false, false, false, false, false, false, false, false, false);
    filter: compact(grayscale(100%), false, false, false, false, false, false, false, false, false);
}
.grayscale-off {
    -webkit-filter: compact(grayscale(0%), false, false, false, false, false, false, false, false, false);
    -moz-filter: compact(grayscale(0%), false, false, false, false, false, false, false, false, false);
    filter: compact(grayscale(0%), false, false, false, false, false, false, false, false, false);
}
.items-grid-box {
    position: absolute;
    width: 807px;
    height: 165px;
    top: 10px;
    left: 102px;
    background-color: #fed831;
    border-style: solid;
    border-width: 9px;
    border-color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.items-grid-box .resource-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background-color: #ffb000;
    -webkit-box-shadow: compact(#fe9b00 8px 8px 0 inset, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#fe9b00 8px 8px 0 inset, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#fe9b00 8px 8px 0 inset, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}
.items-grid-box .resource-container.resource-0 {
    top: 15px;
    left: 40px;
}
.items-grid-box .resource-container.resource-1 {
    top: 15px;
    left: 220px;
}
.items-grid-box .resource-container.resource-2 {
    top: 15px;
    left: 400px;
}
.items-grid-box .resource-container.resource-container-good {
    background-color: #2ddb40;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.items-grid-box .resource-container.resource-container-good .resource-chosen-state {
    display: none;
}
.items-grid-box .resource-container.resource-container-bad {
    background-color: #ea6f02;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.items-grid-box .resource-container.resource-container-bad .resource-chosen-state {
    display: none;
}
.items-grid-box .resource-container .resource-chosen-state {
    position: absolute;
    width: 46px;
    height: 46px;
    top: -25px;
    left: 55px;
}
.items-grid-box .resource-container .resource-remove {
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 48px;
    height: 48px;
}
.items-grid-box .resource-container .resource-remove:hover i {
    background-position: -240px -192px;
}
.items-grid-box .resource-container p {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 150px;
    margin: 0 0 0 -75px;
    font-family: pbs_kids_headlinebold;
    color: #ff7109;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}
.items-grid-box .resource-container .resource-chosen i {
    position: absolute;
    display: block;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    background: url(/images/resources/resources_high.png);
}
.items-grid-box .resource-container .resource-chosen.resource-hint {
    filter: alpha(Opacity=40);
    opacity: 0.4;
    position: relative;
    top: 55px;
}
.items-grid-box .gadget-item-box {
    position: absolute;
    top: 0;
    right: 0;
}
.items-grid-box .gadget-item-box .gadget-item {
    position: absolute;
    top: 10px;
    right: 60px;
    width: 125px;
    height: 115px;
    background-color: #ffb000;
    -webkit-box-shadow: compact(#fe9b00 8px 8px 0 inset, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#fe9b00 8px 8px 0 inset, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#fe9b00 8px 8px 0 inset, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px 50px 0 0;
    -khtml-border-radius: 50px 50px 0 0;
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
}
.items-grid-box .gadget-item-box .gadget-item img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -47px;
    margin-left: -48px;
}
.items-grid-box .gadget-item-box .gadget-item .gadget-remove {
    position: absolute;
    width: 48px;
    height: 48px;
    top: -7px;
    right: -7px;
}
.items-grid-box .gadget-item-box .gadget-item .gadget-remove:hover i {
    background-position: -240px -192px;
}
.items-grid-box .gadget-item-box .gadget-item.gadget-item-can-craft {
    top: -20px;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.items-grid-box .gadget-item-box .gadget-item.gadget-item-can-craft img {
    margin-left: -52px;
}
.items-grid-box .gadget-item-box .craftable-box {
    position: absolute;
    top: -35px;
    right: 25px;
    width: 200px;
    height: 200px;
    background-color: #ffb000;
    border-style: solid;
    border-width: 9px;
    border-color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.items-grid-box .gadget-item-box .craftable-box #craft-button,
.items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part {
    position: absolute;
    bottom: 20px;
    left: 50%;
    min-width: 130px;
    height: 40px;
    margin-left: -65px;
    font-size: 24px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
    font-family: pbs_kids_headlinebold;
    text-transform: uppercase;
    background-color: #2ddb40;
    color: #fff;
    outline: 0;
    -webkit-box-shadow: compact(#2cad1f 0 10px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#2cad1f 0 10px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#2cad1f 0 10px 0, false, false, false, false, false, false, false, false, false);
}
.items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part:hover,
.items-grid-box .gadget-item-box .craftable-box #craft-button:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part:disabled,
.items-grid-box .gadget-item-box .craftable-box #craft-button:disabled {
    background-color: #d3d3d3;
    -webkit-box-shadow: compact(#898d98 0 10px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#898d98 0 10px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#898d98 0 10px 0, false, false, false, false, false, false, false, false, false);
}
.items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part:hover,
.items-grid-box .gadget-item-box .craftable-box #craft-button:hover {
    bottom: 15px;
}
.items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part:disabled,
.items-grid-box .gadget-item-box .craftable-box #craft-button:disabled {
    bottom: 20px;
}
.items-grid-box .gadget-item-box .craftable-box .kart-item-owned {
    position: absolute;
    top: -5px;
    left: -17px;
    cursor: default;
    border: 5px solid #fff94f;
    text-align: center;
    background-color: #36d936;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
.items-grid-box .gadget-item-box .craftable-box .kart-item-owned p {
    font-family: pbs_kids_headlinebold;
    text-transform: uppercase;
    font-size: 11px;
    line-height: normal;
    margin: 0;
    padding: 5px 10px;
    color: #175710;
}
.items-grid-box .gadget-item-box .craftable-box .kart-item-owned p strong {
    font-size: 14px;
}
.items-grid-box .crafting-plus-sign {
    position: absolute;
    width: 42px;
    height: 42px;
    top: 50px;
    background: url(/images/layout/big_elements.png) -240px 0;
}
.items-grid-box .crafting-plus-sign-1 {
    left: 165px;
}
.items-grid-box .crafting-plus-sign-2 {
    left: 345px;
}
.items-grid-box .crafting-equals-sign {
    position: absolute;
    width: 32px;
    height: 53px;
    right: 215px;
    top: 45px;
    background: url(/images/layout/big_elements.png) -282px 0;
}
.items-grid-box .crafting-holder {
    position: absolute;
    width: 15px;
    height: 30px;
    top: 150px;
    background-color: #fff;
}
.items-grid-box .crafting-holder-left {
    left: 80px;
}
.items-grid-box .crafting-holder-right {
    right: 80px;
}
.resource-grid-box {
    background-color: #fdcc84;
    border-style: solid;
    border-width: 9px;
    border-color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    width: 415px;
    height: 340px;
    top: 190px;
    left: 117px;
}
.resource-grid-box .resources-visible .grid-list,
.resource-grid-box .resources-visible .paginator-footer {
    display: block;
}
.resource-grid-box .grid-list {
    display: none;
    height: 280px;
    margin-left: 10px;
    margin-top: 10px;
}
.resource-grid-box .grid-list .tutorial-selected .resource-medium {
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    -ms-border-radius: 45px;
    -o-border-radius: 45px;
    border-radius: 45px;
    width: 88px;
    height: 88px;
    cursor: pointer;
}
.resource-grid-box .grid-list .tutorial-selected .resource-medium:hover {
    opacity: 1;
}
.resource-grid-box .grid-list .resource {
    position: relative;
    cursor: pointer;
    outline: 0;
}
.resource-grid-box .grid-list .resource .resource-high {
    width: 90px;
    height: 90px;
    padding: 5px;
    outline: 0;
}
.resource-grid-box .grid-list .resource:hover:not(.item-disabled) {
    filter: alpha(Opacity=90);
    opacity: 0.9;
}
.resource-grid-box .grid-list .resource:active:not(.item-disabled) {
    filter: alpha(Opacity=100);
    opacity: 1;
    z-index: 2;
}
.resource-grid-box .grid-list .resource:active:not(.item-disabled) .resource-grid-item {
    transform: scale(1.2);
}
.resource-grid-box .grid-list .resource:active:not(.item-disabled) .resource-tag {
    display: none;
}
.resource-grid-box .grid-list .resource p {
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    font-family: pbs_kids_headlineregular;
    padding: 4px 10px;
    box-sizing: content-box;
    font-size: 13px;
    height: 1em;
    line-height: 1em;
    color: #216c65;
    background-color: #fff;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    -ms-border-radius: 2em;
    -o-border-radius: 2em;
    border-radius: 2em;
}
.resource-grid-box .grid-list .drag-zone {
    width: 90px;
    height: 90px;
    position: absolute;
    top: 0;
}
.resource-grid-box .paginator-footer {
    display: none;
}
.resource-grid-box .resource-prompt {
    position: absolute;
    width: 200px;
    height: 170px;
    top: 45px;
    left: 100px;
    background: url(/images/layout/big_elements.png) -98px -98px;
}
.resource-grid-box .resource-prompt p {
    position: absolute;
    width: 250px;
    bottom: -65px;
    left: -45px;
    line-height: 26px;
    text-align: center;
    font-family: pbs_kids_headlinebold;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}
.resource-grid-item {
    border: none;
    outline: 0;
    pointer-events: none;
}
.resource-high i {
    display: block;
    width: 100px;
    height: 100px;
    background: url(/images/resources/resources_high.png);
}
.resource-medium i {
    display: block;
    width: 80px;
    height: 80px;
    background: url(/images/resources/resources_med.png);
}
.resource-small i {
    display: block;
    width: 24px;
    height: 24px;
    background: url(/images/resources/resources_low.png);
}
[ng-drop].drag-enter {
    background-color: #efd772;
}
.product-grid-box {
    position: absolute;
    width: 345px;
    height: 340px;
    top: 190px;
    left: 547px;
    background-color: #34dac3;
    border-style: solid;
    border-width: 9px;
    border-color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.product-grid-box.product-grid-bg-color-gadget {
    background-color: #34dac3;
}
.product-grid-box.product-grid-bg-color-powerup {
    background-color: #8a00f0;
}
.product-grid-box.product-grid-bg-color-clothing {
    background-color: #36d936;
}
.product-grid-box.product-grid-bg-color-backpack {
    background-color: #ed6b6d;
}
.product-grid-box .tab-header {
    text-align: center;
    color: #216c65;
    font-family: pbs_kids_headlineregular;
    font-size: 26px;
    font-weight: 700;
    padding-top: 5px;
    padding-bottom: 5px;
}
.product-grid-box .tab-header.tab-header-gadget {
    color: #216c65;
}
.product-grid-box .tab-header.tab-header-powerup {
    color: #fff;
}
.product-grid-box .tab-header.tab-header-clothing {
    color: #497607;
}
.product-grid-box .tab-header.tab-header-powerups {
    color: #64220b;
}
.product-grid-box #products-grid {
    margin-top: -20px;
}
.product-grid-box #products-grid .grid-list {
    margin: 14px 0 0 8px;
    height: 250px;
}
.product-grid-box #products-grid .grid-list .grid-item {
    margin: 0 8px 4px;
}
.product-grid-box #products-grid .grid-list .tutorial-selected {
    -webkit-border-radius: 30px 30px 0 0;
    -khtml-border-radius: 30px 30px 0 0;
    -moz-border-radius: 30px 30px 0 0;
    border-radius: 30px 30px 0 0;
    cursor: pointer;
}
.product-grid-box #products-grid .grid-list .tutorial-selected:hover {
    opacity: 1 !important;
}
.product-grid-box #products-grid .grid-list .tutorial-selected .product-item:hover {
    filter: alpha(Opacity=100);
    opacity: 1;
}
.product-grid-box #products-grid .grid-list .product-item {
    position: relative;
    cursor: pointer;
    width: 80px;
    height: 70px;
    margin: 0 2px;
    outline: 0;
}
.product-grid-box #products-grid .grid-list .product-item p {
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    font-family: pbs_kids_headlineregular;
    padding: 4px 10px;
    box-sizing: content-box;
    font-size: 13px;
    height: 1em;
    line-height: 1em;
    color: #216c65;
    background-color: #fff;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    -ms-border-radius: 2em;
    -o-border-radius: 2em;
    border-radius: 2em;
}
.product-grid-box #products-grid .grid-list .product-item:hover:not(.item-disabled) {
    filter: alpha(Opacity=90);
    opacity: 0.9;
}
.product-grid-box #products-grid .grid-list .product-item:active:not(.item-disabled) {
    filter: alpha(Opacity=100);
    opacity: 1;
}
.product-grid-box #products-grid .grid-list .product-item:active:not(.item-disabled) .product-item:not(.item-disabled) {
    transform: scale(1.2);
    z-index: 2;
}
.product-grid-box #products-grid .grid-list .product-item:active:not(.item-disabled) .product-new,
.product-grid-box #products-grid .grid-list .product-item:active:not(.item-disabled) .product-tag {
    display: none;
}
.product-grid-box #products-grid .grid-list .product-item .product-new {
    top: -20px;
    right: -17px;
    left: auto;
    margin: 0;
}
.product-grid-box #products-grid .grid-list .product-item .kart-part-owned {
    position: absolute;
    top: auto;
    left: auto;
    bottom: 5px;
    right: 5px;
    margin: 0;
}
.product-grid-box #products-grid .grid-list .product-item img {
    position: relative;
    top: 3px;
    right: 0;
    margin: 0;
}
.product-tabs {
    position: absolute;
    width: 70px;
    top: 40px;
    right: -70px;
}
.product-tabs .btn-craft {
    width: 50px;
    height: 58px;
    position: relative;
    outline: 0;
    box-sizing: content-box;
    margin-top: -10px;
    border: 10px solid #fff;
    border-left: none;
    -webkit-border-radius: 0 40px 40px 0;
    -khtml-border-radius: 0 40px 40px 0;
    -moz-border-radius: 0 40px 40px 0;
    border-radius: 0 40px 40px 0;
}
.product-tabs .btn-craft i {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -23px;
    margin-left: -27px;
    filter: alpha(Opacity=40);
    opacity: 0.4;
}
.product-tabs .btn-craft.btn-craft-gadgets {
    background-color: #34dac3;
}
.product-tabs .btn-craft.btn-craft-powerup {
    background-color: #8a00f0;
}
.product-tabs .btn-craft.btn-craft-backpack {
    background-color: #36d936;
}
.product-tabs .btn-craft.btn-craft-powerups {
    background-color: #ed6b6d;
}
.product-tabs .btn-craft.selected i,
.product-tabs .btn-craft.selected:hover i {
    filter: alpha(Opacity=100);
    opacity: 1;
}
.product-tabs .btn-craft:hover i {
    filter: alpha(Opacity=70);
    opacity: 0.7;
}
.paginator-footer {
    position: absolute;
    width: 240px;
    height: 45px;
    left: 50%;
    margin-left: -120px;
    bottom: -20px;
    background-color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.paginator-footer p {
    text-align: center;
    line-height: 45px;
    font-size: 16px;
    font-family: pbs_kids_headlineregular;
}
.paginator-footer .button-next,
.paginator-footer .button-previous {
    position: absolute;
    top: 0;
    width: 45px;
    height: 45px;
    bottom: -7px;
    display: block;
    outline: 0;
}
.paginator-footer .button-next:hover i,
.paginator-footer .button-previous:hover i {
    filter: alpha(Opacity=80);
    opacity: 0.8;
}
.paginator-footer .button-next:disabled i,
.paginator-footer .button-previous:disabled i {
    filter: alpha(Opacity=40);
    opacity: 0.4;
}
.paginator-footer .button-next {
    right: 0;
}
.paginator-footer .button-previous {
    left: 0;
}
.paginator-footer:disabled {
    opacity: 0.4;
}
.encyclopedia-button {
    position: absolute;
    bottom: -55px;
    left: 30px;
    width: 70px;
    height: 70px;
    background-color: #f19455;
    border: 6px solid #fdca81;
    outline: 0;
    overflow: visible;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}
.encyclopedia-button i {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
}
.encyclopedia-button label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -40px;
    width: 80px;
    color: #864710;
    font-family: pbs_kids_headlinebold;
    font-size: 10px;
    background-color: #fdca81;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
    padding: 2px;
}
.encyclopedia-button:hover {
    background-color: #fff;
    border-color: #fff;
}
.encyclopedia-button:hover i {
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    transform: rotate(-25deg);
}
.encyclopedia-button:hover label {
    background-color: #fff;
    color: #fb4d00;
}
.big-arrow {
    height: 40px;
    padding: 0 10px;
    font-family: pbs_kids_headlinebold;
    font-size: 24px;
    color: #fff;
    line-height: 40px;
    background-color: #f41971;
    overflow: visible;
    min-width: 90px;
}
.big-arrow.tutorial-arrow {
    position: absolute;
    top: -100px;
    left: -100px;
}
.big-arrow .big-arrow-head {
    position: absolute;
    top: -20px;
    right: -50px;
    content: " ";
    width: 50px;
    height: 0;
    border-style: solid;
    border-width: 40px 0 40px 50px;
    border-color: transparent transparent transparent #f41971;
}
.big-arrow.big-arrow-left .big-arrow-head {
    left: -50px;
    border-width: 40px 50px 40px 0;
    border-color: transparent #f41971 transparent transparent;
}
.big-arrow:disabled {
    background-color: #898d98;
}
.big-arrow:disabled .big-arrow-head {
    border-color: transparent transparent transparent #898d98;
}
.big-arrow:disabled.big-arrow-left .big-arrow-head {
    border-color: transparent #898d98 transparent transparent;
}
.huge-arrow {
    height: 209px;
    width: 200px;
    padding: 0 10px;
    line-height: 40px;
    background-image: url(/rooms/shared/click_arrow_right.png);
    overflow: hidden;
    position: absolute;
}
.mini-alert {
    display: none;
    width: 100%;
    text-align: center;
}
.mini-alert p {
    height: 60px;
    padding: 0 20px;
    line-height: 60px;
    font-size: 18px;
    font-family: pbs_kids_headlinebold;
    display: inline-block;
    color: #fff;
    background-color: #ff7109;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
}
#crafting_unlock {
    transition: all ease 0.5s;
    position: absolute;
    top: 75px;
    right: -200px;
    width: 125px;
    height: 173px;
    background: #fff;
    z-index: 1000;
}
#crafting_unlock .container {
    font-family: pbs_kids_headlinebold;
    font-size: 18px;
    margin: 10px;
}
#crafting_unlock .container .image {
    position: inherit;
    left: 0;
    width: 82px;
    margin: 10px;
}
#crafting_unlock .container .mediumicon-new {
    top: 28px;
    left: 94px;
}
#encyclopedia {
    background: url(/images/encyclopedia/encyclopedia_bg.jpg) center/cover;
}
#encyclopedia .title-bar {
    background-color: #2ea50e;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
#encyclopedia .full-content {
    width: 980px;
    position: absolute;
    left: 50%;
    margin-left: -490px;
    background-color: #c97441;
    -webkit-box-shadow: compact(#351807 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#351807 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#351807 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
#encyclopedia .full-content .encyclopedia-categories {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    height: 100px;
    text-align: center;
}
#encyclopedia .full-content .encyclopedia-categories li {
    width: 100px;
    height: 100px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    border: 7px solid transparent;
}
#encyclopedia .full-content .encyclopedia-categories li i {
    top: 45%;
}
#encyclopedia .full-content .encyclopedia-categories li .category-label {
    font-family: colfaxblack, sans-serif;
    color: #000;
    text-align: center;
    margin-top: 63px;
    font-size: 12px;
}
#encyclopedia .full-content .encyclopedia-categories li.category-resources {
    background-color: #df56fc;
    -webkit-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
#encyclopedia .full-content .encyclopedia-categories li.category-resources.selected,
#encyclopedia .full-content .encyclopedia-categories li.category-resources:hover {
    border: 7px solid #df56fc;
}
#encyclopedia .full-content .encyclopedia-categories li.category-gadgets {
    background-color: #1fdced;
    -webkit-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
#encyclopedia .full-content .encyclopedia-categories li.category-gadgets.selected,
#encyclopedia .full-content .encyclopedia-categories li.category-gadgets:hover {
    border: 7px solid #1fdced;
}
#encyclopedia .full-content .encyclopedia-categories li.category-powerup {
    background-color: #1fdced;
    -webkit-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
#encyclopedia .full-content .encyclopedia-categories li.category-powerup.selected,
#encyclopedia .full-content .encyclopedia-categories li.category-powerup:hover {
    border: 7px solid #1fdced;
}
#encyclopedia .full-content .encyclopedia-categories li.category-parts {
    background-color: #ffd400;
    -webkit-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
#encyclopedia .full-content .encyclopedia-categories li.category-parts.selected,
#encyclopedia .full-content .encyclopedia-categories li.category-parts:hover {
    border: 7px solid #ffd400;
}
#encyclopedia .full-content .encyclopedia-categories li.category-powerups {
    background-color: #ff7109;
    -webkit-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
#encyclopedia .full-content .encyclopedia-categories li.category-powerups.selected,
#encyclopedia .full-content .encyclopedia-categories li.category-powerups:hover {
    border: 7px solid #ff7109;
}
#encyclopedia .full-content .encyclopedia-categories li.category-finds {
    background-color: #99ce05;
    -webkit-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
#encyclopedia .full-content .encyclopedia-categories li.category-finds.selected,
#encyclopedia .full-content .encyclopedia-categories li.category-finds:hover {
    border: 7px solid #99ce05;
}
#encyclopedia .full-content .encyclopedia-categories li.selected,
#encyclopedia .full-content .encyclopedia-categories li:hover {
    background-color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
#encyclopedia .preloader p {
    position: absolute;
    line-height: 60px;
    left: -97%;
    top: 40px;
    font-family: pbs_kids_headlinebold;
    font-size: 30px;
    color: #fff;
}
#encyclopedia .encyclopedia-resource {
    margin: 25px;
}
#encyclopedia .encyclopedia-items {
    width: 855px;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -428px;
}
#encyclopedia .encyclopedia-items .encyclopedia-item {
    position: relative;
    float: left;
    width: 150px;
    height: 150px;
    margin: 10px;
    line-height: 150px;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: compact(#351807 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#351807 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#351807 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
#encyclopedia .encyclopedia-items .encyclopedia-item .encyclopedia-item-info {
    display: block;
    position: absolute;
    height: 25px;
    width: 25px;
    top: 10px;
    left: 10px;
    background-color: #ff7109;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
#encyclopedia .encyclopedia-items .encyclopedia-item .encyclopedia-item-info p {
    text-align: center;
    font-family: pbs_kids_headlinebold;
    font-size: 18px;
    color: #fff;
    line-height: 25px;
    cursor: pointer;
}
#encyclopedia .encyclopedia-items .encyclopedia-item .encyclopedia-item-info:hover {
    background-color: #ed1f24;
}
#encyclopedia .encyclopedia-items .encyclopedia-item .encyclopedia-image {
    padding: 25px;
}
#encyclopedia .encyclopedia-items .encyclopedia-item .encyclopedia-image div img {
    max-width: 100px;
}
#encyclopedia .encyclopedia-items .encyclopedia-item-undiscovered {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 10px;
    background-color: #dc8d5e;
    -webkit-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#864710 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    border: 8px solid #fcb88f;
    float: left;
}
#encyclopedia .encyclopedia-items .encyclopedia-item-undiscovered .encyclopedia-image-undiscovered {
    text-align: center;
    line-height: 150px;
    font-family: pbs_kids_headlinebold;
    color: #fcb88f;
    font-size: 100px;
}
#encyclopedia .encyclopedia-paginator {
    margin: 20px auto;
}
#encyclopedia .encyclopedia-paginator .page-button-left i {
    background-position: -48px -24px;
}
#encyclopedia .encyclopedia-paginator .page-button-left:hover i {
    background-position: -48px -48px;
}
#encyclopedia .encyclopedia-paginator .page-button-right {
    right: -15px;
}
#encyclopedia .encyclopedia-paginator .page-button-right i {
    background-position: -72px -24px;
}
#encyclopedia .encyclopedia-paginator .page-button-right:hover i {
    background-position: -72px -48px;
}
#encyclopedia .encyclopedia-left,
#encyclopedia .encyclopedia-right {
    position: absolute;
    display: block;
    width: 24px;
    height: 144px;
    background: url(/images/layout/big_elements.png);
}
#encyclopedia .encyclopedia-left {
    top: 150px;
    left: 35px;
    background-position: 0 0;
}
#encyclopedia .encyclopedia-left:hover {
    background-position: -48px 0;
}
#encyclopedia .encyclopedia-right {
    top: 150px;
    right: 35px;
    background-position: -24px 0;
}
#encyclopedia .encyclopedia-right:hover {
    background-position: -72px 0;
}
.jump {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/images/layout/app_inner_background.jpg) top repeat-x #15d1b1;
}
.jump .minigame-hidden {
    z-index: -1;
    position: absolute !important;
}
.jump .loading-container {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
}
.jump .loading-container .kart-kingdom-logo {
    top: 5px;
}
.jump .loading-container .tip {
    top: 30px;
}
.jump .loading-container .avatar-canvas {
    position: absolute;
    width: 1220px;
    bottom: -140px;
    left: 50%;
    margin-left: -610px;
}
.jump .loading-container .loading-text {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    margin: 0;
    text-align: center;
    color: #fff;
    font-family: pbs_kids_headlinebold;
    font-size: 40px;
}
.jump .minigame {
    position: static;
}
.jump .minigame-container {
    width: 100%;
    height: 100%;
    position: static;
}
.jump .minigame-container #jump_game {
    display: table;
    margin: 0 auto;
}
.jump .minigame-container .jump-quest-top-nav {
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    z-index: 1;
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-exit {
    left: 80px;
    background-color: #fe9b00;
    text-align: right;
    padding-right: 15px;
    position: absolute;
    top: 40px;
    width: 160px;
    height: 64px;
    font-size: 28px;
    font-family: pbs_kids_headlinebold;
    text-transform: uppercase;
    color: #fff;
    border: 5px solid #fff;
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-exit:hover {
    color: #000;
    background-color: #fff;
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-exit:hover:after,
.jump .minigame-container .jump-quest-top-nav .jump-quest-exit:hover:before {
    background-color: #fff;
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-exit:before {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 32px;
    height: 32px;
    background-color: #fe9b00;
    border-bottom: 5px solid #fff;
    left: -16px;
    border-left: 6px solid #fff;
    -webkit-transform: skewX(35deg);
    -moz-transform: skewX(35deg);
    -ms-transform: skewX(35deg);
    -o-transform: skewX(35deg);
    transform: skewX(35deg);
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-exit:after {
    content: "";
    position: absolute;
    top: -5px;
    width: 32px;
    height: 32px;
    background-color: #fe9b00;
    border-top: 5px solid #fff;
    left: -16px;
    border-left: 6px solid #fff;
    -webkit-transform: skewX(-35deg);
    -moz-transform: skewX(-35deg);
    -ms-transform: skewX(-35deg);
    -o-transform: skewX(-35deg);
    transform: skewX(-35deg);
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-exit i {
    top: 2px;
    left: auto;
    margin: 0;
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-go {
    right: 80px;
    position: absolute;
    top: 40px;
    width: 160px;
    height: 64px;
    font-size: 28px;
    font-family: pbs_kids_headlinebold;
    text-transform: uppercase;
    color: #fff;
    border: 5px solid #fff;
    background-color: #93c102;
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-go:hover {
    color: #000;
    background-color: #fff;
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-go:hover:after,
.jump .minigame-container .jump-quest-top-nav .jump-quest-go:hover:before {
    background-color: #fff;
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-go:before {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 32px;
    height: 32px;
    background-color: #93c102;
    border-bottom: 5px solid #fff;
    right: -16px;
    border-right: 6px solid #fff;
    -webkit-transform: skewX(-35deg);
    -moz-transform: skewX(-35deg);
    -ms-transform: skewX(-35deg);
    -o-transform: skewX(-35deg);
    transform: skewX(-35deg);
}
.jump .minigame-container .jump-quest-top-nav .jump-quest-go:after {
    content: "";
    position: absolute;
    top: -5px;
    width: 32px;
    height: 32px;
    background-color: #93c102;
    border-top: 5px solid #fff;
    right: -16px;
    border-right: 6px solid #fff;
    -webkit-transform: skewX(35deg);
    -moz-transform: skewX(35deg);
    -ms-transform: skewX(35deg);
    -o-transform: skewX(35deg);
    transform: skewX(35deg);
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons {
    position: absolute;
    top: 0;
    right: 20px;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump {
    position: relative;
    display: block;
    float: left;
    width: 54px;
    height: 54px;
    border: 4px solid #fff;
    margin: 3px;
    outline: 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-craft {
    position: relative;
    background-color: #15d1b1;
    overflow: visible;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-craft .product-new {
    top: -20px;
    right: 0;
    left: 15px;
    margin: 0;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-craft.crafting-locked {
    cursor: default;
    background-color: #898d98;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-craft.crafting-locked:hover {
    color: #898d98;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-map {
    background-color: #3fd8fc;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound {
    background-color: #f41971;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.sound-muted {
    background-color: #898d98;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.music-muted {
    background-color: #f4a019;
}
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.sound-muted:hover,
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.music-muted:hover,
.jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump:hover {
    background-color: #fff;
}
.jump .minigame-container .jump-quest-top-nav .tutorial-step {
    position: absolute;
    top: 150px;
    left: 310px;
}
.jump .minigame-container .jump-quest-bottom-nav {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 10px;
}
.jump .minigame-container .jump-quest-bottom-nav .quest-hud {
    display: none;
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 230px;
    height: 63px;
    font-family: pbs_kids_headlinebold;
    font-size: 31px;
    font-color: #000;
    background-color: #1ef8d9;
    -webkit-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.jump .minigame-container .jump-quest-bottom-nav .quest-hud .jump-quest-name {
    position: absolute;
    top: -1px;
    left: 70px;
    font-size: 26px;
}
.jump .minigame-container .jump-quest-bottom-nav .quest-hud .jump-quest-status {
    position: absolute;
    top: 29px;
    left: 70px;
    font-size: 25px;
}
.jump .minigame-container .jump-quest-bottom-nav .quest-hud #quest-img {
    position: absolute;
    left: 10px;
    top: 7px;
}
.jump .minigame-container .jump-quest-bottom-nav .resource-bar-canvas {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    background-color: #fff;
    -webkit-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.jump select {
    height: 34px;
    margin: 10px;
}
.jump .debug {
    position: absolute;
    top: 0;
}
#quest_rewards .backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
#quest_rewards .resource-item {
    top: 40px;
}
#quest_rewards .backdrop-jump {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    background-color: #000;
    opacity: 0.5;
}
#quest_rewards .big-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
#quest_rewards .dialog {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    position: absolute;
    width: 670px;
    height: 480px;
    left: 50%;
    top: 50%;
    margin-left: -335px;
    margin-top: -240px;
}
#quest_rewards .dialog .dialog-header {
    text-align: center;
}
#quest_rewards .dialog .dialog-header .ribbon {
    margin-top: 50px;
}
#quest_rewards .dialog .dialog-header .ribbon .ribbon-inner {
    width: 400px;
}
#quest_rewards .dialog .dialog-header .ribbon .ribbon-inner p {
    font-family: pbs_kids_headlineregular;
}
#quest_rewards .dialog .dialog-content {
    text-align: center;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container {
    position: relative;
    width: 620px;
    height: 215px;
    margin: 40px auto 20px;
    text-align: center;
    background-color: #fff761;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards {
    width: 480px;
    top: 25px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards li {
    display: inline-block;
    position: relative;
    width: 100px;
    margin: 10px;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards li i {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url(/images/resources/resources_high.png) -100px 0;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards li img {
    width: 100px;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards li p {
    font-family: pbs_kids_headlineregular;
    width: 100px;
    line-height: normal;
    font-size: 16px;
    margin-top: 5px;
    color: #555;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards li span {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: 70px;
    right: 0;
    text-align: center;
    line-height: 30px;
    font-family: colfaxmedium;
    color: #fff;
    font-size: 15px;
    background-color: #992da5;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-next,
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous {
    position: absolute;
    top: 85px;
    width: 40px;
    height: 40px;
    background-color: #992da5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-next .left-arrow,
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-next .right-arrow,
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous .left-arrow,
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous .right-arrow {
    position: absolute;
    top: 7px;
    width: 0;
    height: 0;
    border-style: solid;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-next .left-arrow,
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous .left-arrow {
    left: 5px;
    border-width: 12px 20px 12px 0;
    border-color: transparent #fff transparent transparent;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-next .right-arrow,
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous .right-arrow {
    right: 8px;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-next:disabled,
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous:disabled {
    filter: alpha(Opacity=20);
    opacity: 0.2;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-next:hover,
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous:hover {
    background-color: #510959;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous {
    left: 20px;
}
#quest_rewards .dialog .dialog-content .quest-rewards-container .button-next {
    right: 20px;
}
#quest_rewards .dialog .quest-rewards-buttons {
    position: relative;
    height: 80px;
    width: 520px;
    margin: 0 auto;
}
#quest_rewards .dialog .quest-rewards-buttons.quest-rewards-buttons-single {
    width: 260px;
}
#quest_rewards .dialog .quest-rewards-buttons button {
    margin: 0 10px;
    display: block;
    float: left;
}
#quest_rewards .dialog .quest-rewards-buttons button:hover {
    margin-top: 10px;
}
#quest_rewards .dialog .quest-rewards-buttons .button-ok {
    display: inline-block;
}
.frame-left,
.frame-top {
    position: absolute;
    background-color: #4a7392;
}
.frame-container {
    position: absolute;
    width: 1054px;
    height: 798px;
    top: -7.5px;
    left: -7.5px;
    right: -7.5px;
    bottom: -7.5px;
    margin: auto;
    background: #fff;
    overflow: hidden;
}
.invisible {
    display: none;
}
.frame-top {
    width: 1024px;
    top: 15px;
    margin-left: 15px;
    height: 5px;
}
.frame-left {
    left: 15px;
    margin-top: 15px;
    width: 5px;
    height: 768px;
}
.main-nav {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
}
.main-nav .main-nav-outer-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.main-nav .main-nav-outer-wrapper .actions-wrapper,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper {
    float: left;
    position: relative;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li {
    float: left;
    margin-right: 7px;
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #f41971;
    border: 6px solid #fff;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.grayed-out,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.grayed-out {
    background-color: #d3d3d3 !important;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-contacts,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts {
    background-color: #80db16;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-contacts:hover .main-nav-no-contacts,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts:hover .main-nav-no-contacts {
    display: block;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts {
    display: none;
    position: absolute;
    bottom: -100px;
    left: -85px;
    width: 235px;
    min-height: 80px;
    padding: 5px;
    background-color: #fff;
    -webkit-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts p,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts p {
    margin-top: 20px;
    float: left;
    font-family: colfaxbold;
    color: #898d98;
    font-size: 13px;
    text-align: center;
    line-height: 15px;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts .actions-arrow,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts .actions-arrow {
    position: absolute;
    top: -12px;
    right: 112px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 12px;
    border-color: transparent transparent #fff;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-quest,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-quest {
    background-color: #f41971;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-map,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-map {
    background-color: #15d1b1;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-craft,
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-editor,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-craft,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-editor {
    background-color: #3fd8fc;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-leaderboard,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-leaderboard {
    background-color: #8c00ef;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-tracker,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-tracker {
    background-color: #ffce00;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-tracker button,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-tracker button {
    padding: 0 !important;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.active,
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li:hover,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.active,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li:hover {
    background-color: #fff;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li button,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li button {
    position: relative;
    width: 58px;
    height: 58px;
    display: block;
    outline: 0;
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li .mobileBtn,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li .mobileBtn {
    width: 102px;
    height: 102px;
    transform: scale(1.5);
}
.main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li:last-child,
.main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li:last-child {
    margin-right: 0;
}
.main-nav .version {
    position: absolute;
    top: -20px;
    left: 0;
    background-color: #fff;
    color: #888;
    font-size: 18px;
    padding: 0.25em 0.5em;
    cursor: pointer;
}
.main-nav .version b {
    color: #000;
}
.actions {
    float: left;
    left: 100px;
    position: absolute;
    bottom: 25px;
    will-change: transform;
}
.actions ul .action-item {
    float: left;
    position: relative;
    margin-right: 7px;
    width: 58px;
    height: 58px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #f41971;
    border: 6px solid #fff;
}
.actions ul .action-item.actions-emote {
    background-color: #f953d2;
}
.actions ul .action-item.actions-dance {
    background-color: #ffd400;
}
.actions ul .action-item.active,
.actions ul .action-item:hover {
    background-color: #fff;
}
.actions ul .action-item a {
    position: relative;
    width: 44px;
    height: 44px;
    display: block;
}
.actions ul .action-item a img {
    width: 36px;
    height: 36px;
    margin-left: 5px;
    margin-top: 5px;
}
.actions ul .action-item .actions-container {
    display: block;
    position: absolute;
    bottom: 63px;
    left: -10px;
    width: 100px;
    padding: 5px;
    background-color: #fff;
    -webkit-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.actions ul .action-item .actions-container li {
    float: left;
}
.actions ul .action-item .actions-container .actions-arrow {
    position: absolute;
    bottom: -12px;
    left: 50px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 5px 0;
    border-color: #fff transparent transparent;
}
.actions ul .action-item .emotes-container {
    width: 230px;
}
.actions ul .action-item .dance-arrow {
    right: -60px;
}
.map .title-bar {
    background-color: #99ce05;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    z-index: 1;
}
.map .map-inner {
    position: relative;
    margin-left: 6px;
    top: 6px;
    border-bottom: 15px solid #fff;
    height: 92%;
}
.map .map-inner .map-item {
    position: relative;
    width: 245px;
    height: 100%;
    margin: 4px;
    color: #fff;
    display: inline-block;
}
.map .map-inner .map-item .map-activity {
    position: absolute;
    width: 245px;
    height: 183px;
    top: 33px;
    background-position: top center;
    background-repeat: no-repeat;
}
.map .map-inner .map-item .map-activity-race {
    background-image: url(/images/events/regularActivities/race_tag.png);
}
.map .map-inner .map-item .map-activity-totalizer {
    background-image: url(/images/events/regularActivities/give_n_get.png);
}
.map .map-inner .map-item .map-activity-clanky-caverns {
    background-image: url(/images/events/regularActivities/clanky_caverns.png);
}
.map .map-inner .map-item.map-item-mount_snow .map-item-label h1 {
    color: #f41a71;
}
.map .map-inner .map-item.map-item-mount_snow.map-item-off .map-item-label h1 {
    color: #8a8888;
}
.map .map-inner .map-item.current,
.map .map-inner .map-item:hover {
    text-shadow: 2px 2px #000;
}
.map .map-inner .map-item:before {
    content: "";
    position: absolute;
    width: 245px;
    height: 250px;
    top: 0;
    left: 0;
}
.map .map-inner .map-item .map-item-sound {
    position: relative;
    width: 100%;
    height: 100%;
}
.map .map-inner .map-item .map-item-image {
    position: absolute;
    width: 245px;
    height: 398px;
    left: 0;
    top: 50%;
    margin-top: -239px;
    background: url(/images/layout/map_spritesheet.jpg);
}
.map .map-inner .map-item.map-item-the_deep {
    background-color: #01b1ae;
}
.map .map-inner .map-item.map-item-the_deep .map-item-image {
    background-position: -735px 0;
}
.map .map-inner .map-item.map-item-the_deep.map-item-off {
    background-color: #8b8b8b;
}
.map .map-inner .map-item.map-item-the_deep.map-item-off .map-item-image {
    background-position: -735px -398px;
}
.map .map-inner .map-item.map-item-the_deep.map-item-off:before {
    background-color: #d8d8d8;
}
.map .map-inner .map-item.map-item-the_deep:before {
    background-color: #d4ed18;
}
.map .map-inner .map-item.map-item-grand_glade {
    background-color: #6dd607;
}
.map .map-inner .map-item.map-item-grand_glade .map-item-image {
    background-position: -490px 0;
}
.map .map-inner .map-item.map-item-grand_glade.map-item-off {
    background-color: #b1b1b1;
}
.map .map-inner .map-item.map-item-grand_glade.map-item-off .map-item-image {
    background-position: -490px -398px;
}
.map .map-inner .map-item.map-item-grand_glade.map-item-off:before {
    background-color: #c1c1c1;
}
.map .map-inner .map-item.map-item-grand_glade:before {
    background-color: #fec200;
}
.map .map-inner .map-item.map-item-bug_garden {
    background-color: #cb7015;
}
.map .map-inner .map-item.map-item-bug_garden .map-item-image {
    background-position: 0 0;
}
.map .map-inner .map-item.map-item-bug_garden.map-item-off {
    background-color: #7d7d7d;
}
.map .map-inner .map-item.map-item-bug_garden.map-item-off .map-item-image {
    background-position: 0 -398px;
}
.map .map-inner .map-item.map-item-bug_garden.map-item-off:before {
    background-color: #c8c8c8;
}
.map .map-inner .map-item.map-item-bug_garden:before {
    background-color: #29f3f3;
}
.map .map-inner .map-item.map-item-mount_snow {
    background-color: #ccf8eb;
}
.map .map-inner .map-item.map-item-mount_snow .map-item-image {
    background-position: -245px 0;
}
.map .map-inner .map-item.map-item-mount_snow.map-item-off {
    background-color: #e3e3e3;
}
.map .map-inner .map-item.map-item-mount_snow.map-item-off .map-item-image {
    background-position: -245px -398px;
}
.map .map-inner .map-item.map-item-mount_snow.map-item-off:before {
    background-color: #bbb;
}
.map .map-inner .map-item.map-item-mount_snow:before {
    background-color: #1ce8cf;
}
.map .map-inner .map-item .map-item-label {
    position: absolute;
    width: 245px;
    height: 200px;
    left: 0;
    bottom: 50%;
    margin-bottom: -350px;
    text-align: center;
}
.map .map-inner .map-item .map-item-label #own-avatar-on-map {
    position: absolute;
    width: 160px;
    height: 140px;
    bottom: 140px;
    left: 50%;
    margin-left: -80px;
}
.map .map-inner .map-item .map-item-label h1 {
    position: absolute;
    left: 30px;
    bottom: 50px;
    width: 75%;
    font-size: 46px;
    cursor: pointer;
}
.map .map-inner .map-item .map-item-label .map-new-location {
    position: absolute;
    display: block;
    width: 78px;
    height: 78px;
    top: auto;
    left: 165px;
    bottom: 130px;
    margin: 0;
    background: url(/images/layout/big_elements.png) -93px -283px;
    -webkit-animation: blink 1s linear 0 3;
    -moz-animation: blink 1s linear 0 3;
    animation: blink 1s linear 0 3;
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.new-unlock-animation {
    -webkit-animation: fade 2s linear;
    -moz-animation: fade 2s linear;
    animation: fade 2s linear;
}
@keyframes fade {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}
@-webkit-keyframes fade {
    0% {
        -webkit-filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
    }
}
@-moz-keyframes fade {
    0% {
        -moz-filter: grayscale(100%);
    }
    100% {
        -moz-filter: grayscale(0%);
    }
}
#messages_bar {
    position: absolute;
    bottom: 23px;
    right: 20px;
    overflow: hidden;
    height: auto;
    width: 55px;
}
#messages_bar .hud-messages-container {
    position: relative;
    height: auto;
    bottom: 5px;
    right: 5px;
}
#messages_bar .hud-messages-container .hud-message-wrapper {
    position: relative;
    margin-top: 8px;
}
#messages_bar .hud-messages-container .hud-message-wrapper .message-btn {
    display: block;
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    margin-left: 5px;
    background-color: #fff;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
#messages_bar .hud-messages-container .hud-message-wrapper .message-btn.active .mediumicon-message-close,
#messages_bar .hud-messages-container .hud-message-wrapper .message-btn:hover .mediumicon-message-close {
    background-position: -432px -48px;
}
#messages_bar .hud-messages-container .hud-message-wrapper .smallicon-message-exclamation {
    position: absolute;
    top: 1px;
    left: 10px;
}
#messages_bar .hud-messages-container .hud-message-wrapper .mediumicon-message-close {
    position: relative;
}
.animation.ng-enter,
.animation.ng-leave {
    -webkit-transition: 400ms ease all;
    -moz-transition: 400ms ease all;
    -ms-transition: 400ms ease all;
    -o-transition: 400ms ease all;
    transition: 400ms ease all;
    position: relative;
    display: block;
}
.animation.ng-enter {
    opacity: 0;
    height: 0;
}
.animation.ng-enter.ng-enter-active,
.animation.ng-leave {
    opacity: 1;
    height: 42px;
}
.animation.ng-leave.ng-leave-active {
    opacity: 0;
    height: 0;
}
.message_container {
    position: absolute;
    right: 85px;
}
.message_container .message {
    width: 290px;
    background-color: #fff;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
}
.message_container .message .message-header {
    min-height: 50px;
    overflow: hidden;
}
.message_container .message .message-header .mediumicon-message-open {
    position: absolute;
    left: 10px;
    top: 1px;
    margin: 0;
}
.message_container .message .message-header h1 {
    margin: 15px 40px 10px 60px;
    font-size: 18px;
    font-weight: 700;
    color: #f7810b;
    width: 190px;
    line-height: normal;
}
.message_container .message .message-header .small-close-button {
    position: absolute;
    top: 12px;
    right: 15px;
}
.message_container .message .message-content {
    position: relative;
    min-height: 105px;
    overflow: hidden;
}
.message_container .message .message-content .message-box {
    display: flex;
    margin: 10px;
}
.message_container .message .message-content p {
    width: 160px;
    min-height: 60px;
    float: none;
    padding-left: 15px;
    font-size: 14px;
    color: #898d98;
}
.message_container .message .message-content p.message-full-text {
    width: auto;
    padding-right: 15px;
}
.message_container .message .message-content .message-image-avatar,
.message_container .message .message-content .message-image-product,
.message_container .message .message-content .message-image-resource {
    position: absolute;
    top: 0;
    right: 15px;
}
.message_container .message .message-content .message-buttons {
    float: left;
    margin: 0 0 10px 15px;
}
.message_container .message .message-content .message-buttons .message-action-accept,
.message_container .message .message-content .message-buttons .message-action-reject {
    min-width: 54px;
    height: 28px;
    line-height: 25px;
    font-family: pbs_kids_headlineregular;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 0;
    margin-right: 6px;
}
.message_container .message .message-content .message-buttons .message-action-accept:hover,
.message_container .message .message-content .message-buttons .message-action-reject:hover {
    margin-top: 3px;
    height: 25px;
    border-bottom: none;
    color: #fff;
}
.message_container .message .message-content .message-buttons .message-action-accept {
    background-color: #80db16;
    border-bottom: 3px solid #497607;
}
.message_container .message .message-content .message-buttons .message-action-decline,
.message_container .message .message-content .message-buttons .message-action-reject {
    background-color: #f42d18;
    border-bottom: 3px solid #64220b;
}
#options {
    position: absolute;
    right: 20px;
    top: 20px;
    will-change: transform;
}
#options .large-close-button,
#options .options-button-sound {
    position: relative;
    float: left;
    outline: 0;
    margin: 2px;
}
#options .large-close-button {
    border: 5px solid #fff;
}
#options .options-button-sound {
    width: 46px;
    height: 46px;
    border: 5px solid #fff;
}
#options .options-button-sound:hover {
    background-color: #fff;
}
#options .options-button-sound {
    background-color: #f41971;
    -webkit-border-radius: 46px;
    -moz-border-radius: 46px;
    -ms-border-radius: 46px;
    -o-border-radius: 46px;
    border-radius: 46px;
}
#options .options-button-sound.sound-muted {
    background-color: #898d98;
}
#options .options-button-sound.sound-muted:hover {
    background-color: #fff;
}
#options .options-button-sound.music-muted {
    background-color: #f4a019;
}
#options .options-button-sound.music-muted:hover {
    background-color: #fff;
}
#options .options-button-logout {
    background-color: #516da1;
    -webkit-border-radius: 46px;
    -moz-border-radius: 46px;
    -ms-border-radius: 46px;
    -o-border-radius: 46px;
    border-radius: 46px;
}
#options .options-button-logout:hover i {
    background-position: -144px -48px;
}
#options > iframe {
    display: none;
}
.alert-dialog {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    align-items: center;
    justify-content: center;
}
.alert-dialog .backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.5;
}
.alert-dialog .dialog-flexible {
    width: 480px;
    margin: 0;
    text-align: center;
}
.alert-dialog .dialog-flexible img {
    margin: 30px auto -15px;
}
.alert-dialog .dialog-flexible .dialog-title {
    position: relative;
    width: 360px;
    margin: 30px auto 20px;
    font-family: pbs_kids_headlinebold;
    font-size: 30px;
    color: #f7810b;
}
.alert-dialog .dialog-flexible .dialog-content .alert-message {
    position: relative;
    font-family: pbs_kids_headlinebold;
    width: 280px;
    margin: 0 auto 10px;
    font-size: 16px;
    color: #898d98;
}
.alert-dialog .dialog-flexible .dialog-content .alert-message p {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}
.alert-dialog .dialog-flexible .dialog-content .alert-message-buttons {
    position: relative;
    height: 80px;
    will-change: transform;
    margin-bottom: 20px;
}
.alert-dialog .dialog-flexible .dialog-content .alert-message-buttons .button-cancel,
.alert-dialog .dialog-flexible .dialog-content .alert-message-buttons .button-ok {
    width: 150px;
    margin-left: 10px;
    margin-right: 10px;
}
#avatar_item_info_popup {
    z-index: 10000;
}
#avatar_item_info_popup .dialog-flexible {
    width: 500px;
    max-height: 690px;
    overflow: hidden;
    padding-bottom: 24px;
    box-sizing: border-box;
    border-radius: 16px;
}
#avatar_item_info_popup .big-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}
#avatar_item_info_popup .dialog-title {
    padding-right: 0;
}
#avatar_item_info_popup .dialog-content {
    padding: 0 34px;
    max-height: 595px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    font-family: colfaxblack, sans-serif;
    color: #5c6470;
}
#avatar_item_info_popup .avatar-item-info-image {
    display: block;
    max-width: 150px;
    max-height: 150px;
    margin: 0 auto 8px;
}
#avatar_item_info_popup h2 {
    margin: 4px auto 12px;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 28px;
    color: #f7810b;
}
#avatar_item_info_popup .avatar-item-info-default {
    display: inline-block;
    margin: -4px auto 10px;
    padding: 4px 10px;
    border-radius: 8px;
    background: #139ce6;
    color: #fff;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 14px;
}
#avatar_item_info_popup h3 {
    margin: 12px 0 6px;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 18px;
    color: #139ce6;
}
#avatar_item_info_popup p {
    margin: 3px 0;
    font-size: 13px;
}
#avatar_item_info_popup ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#avatar_item_info_popup li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 0;
    border-top: 1px solid #dbe8eb;
    font-size: 13px;
    text-align: left;
}
#avatar_item_info_popup li.empty {
    display: block;
    color: #898d98;
}
#avatar_item_info_popup li span {
    color: #898d98;
}
#avatar_item_info_popup .avatar-item-info-actions {
    margin: 14px auto 6px;
}
#avatar_item_info_popup .avatar-item-info-button-frame {
    position: relative;
    width: 290px;
    height: 76px;
    margin: 0 auto;
}
#avatar_item_info_popup .avatar-item-info-report,
#avatar_item_info_popup .avatar-item-info-get {
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 290px;
    margin: 0;
    font-size: 20px;
    display: block;
    box-sizing: border-box;
}
#avatar_item_info_popup .avatar-item-info-report:hover,
#avatar_item_info_popup .avatar-item-info-get:hover {
    margin-top: 10px;
}
#avatar_item_info_popup .avatar-item-info-report:disabled,
#avatar_item_info_popup .avatar-item-info-get:disabled {
    opacity: 0.55;
    cursor: default;
}
#avatar_item_info_popup .avatar-item-info-status {
    min-height: 18px;
    font-size: 13px;
    color: #898d98;
}
#avatar_item_info_popup .avatar-item-info-status.success {
    color: #198c53;
}
#avatar_item_info_popup .avatar-item-info-status.error {
    color: #d6452f;
}
.dialog-world {
    left: 35px;
    bottom: 130px;
}
.dialog-jump {
    left: 35px;
    bottom: 210px;
}
.backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.backdrop-jump {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    background-color: #000;
    opacity: 0.5;
    left: 0;
}
.dialog-container {
    height: 100px;
    position: absolute;
}
.dialog-container .bar {
    width: 958px;
    height: 206px;
    background: url(/images/info/info_bg.png) 0 0/100% no-repeat;
}
.dialog-container .bar .portrait-image {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 70px;
    height: 70px;
    float: left;
}
.dialog-container .bar .text-container {
    top: 38px;
    position: relative;
    margin-left: 243px;
    width: 640px;
    float: left;
}
.dialog-container .bar .text-container p {
    margin-bottom: 5px;
    text-align: center;
    font-family: colfaxbold;
}
.dialog-container .bar .text-container p.title {
    font-size: 24px;
}
.dialog-container .bar .text-container p.body {
    font-size: 19px;
}
.dialog-container .bar .text-container p.highlight {
    color: #926cde;
}
.dialog-container .bar .button-container {
    right: 15px;
    position: absolute;
    bottom: -70px;
}
.dialog-container .bar .button-container button {
    width: 145px;
    height: 50px;
}
.dialog-container .bar .button-container button:hover {
    height: 40px;
}
.item-popup .dialog-flexible {
    width: 480px;
    text-align: center;
}
.item-popup .dialog-flexible .dialog-header {
    position: relative;
}
.item-popup .dialog-flexible .dialog-header .item-title {
    position: relative;
    width: 360px;
    margin: 30px auto 20px;
    font-family: pbs_kids_headlinebold;
    font-size: 30px;
    color: #f7810b;
}
.item-popup .dialog-flexible .dialog-header .big-arrow {
    left: 540px;
    top: -10px;
}
.item-popup .dialog-flexible .item-image {
    position: relative;
    width: 100px;
    margin: 0 auto 15px;
}
.item-popup .dialog-flexible .item-image img {
    max-width: 100px;
}
.item-popup .dialog-flexible .item-image .encyclopedia-image {
    text-align: center;
}
.item-popup .dialog-flexible .item-image .item-count {
    position: absolute;
    top: -10px;
    left: -10px;
    display: block;
    font-family: pbs_kids_headlineregular;
    padding: 4px 15px;
    color: #216c65;
    font-size: 16px;
    background-color: #77f0e0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}
.item-popup .dialog-flexible .item-image .item-icon-image {
    display: inline-block;
    background-size: auto;
    width: 100px;
    height: 100px;
}
.item-popup .dialog-flexible .ribbon-orange {
    margin-bottom: 20px;
}
.item-popup .dialog-flexible .item-enc-unlocked {
    position: relative;
    height: 40px;
    width: 360px;
    line-height: 40px;
    font-size: 20px;
    margin: 0 auto 20px;
    font-family: colfaxbold;
    color: #fff;
    background-color: #df3f25;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
}
.item-popup .dialog-flexible .item-enc-unlocked i {
    left: 10px;
    margin-left: 0;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
}
.item-popup .dialog-flexible .item-enc-unlocked p {
    padding-left: 50px;
}
.item-popup .dialog-flexible .item-description {
    width: 350px;
    margin: 10px auto 45px;
    text-align: center;
    font-family: colfax_regularregular;
    font-size: 15px;
    color: #8a8888;
}
#room_preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/layout/app_inner_background.jpg) top repeat-x;
    z-index: 2;
}
#room_preloader .full-content {
    height: 600px;
    margin-top: -300px;
}
#room_preloader .full-content .kart-kingdom-logo {
    top: 40px;
}
#room_preloader .full-content .room-preloader-bar {
    position: absolute;
    top: 420px;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    height: 300px;
}
#room_preloader .full-content .room-preloader-bar p {
    font-family: pbs_kids_headlinebold;
    text-align: center;
    color: #fff;
    width: 100%;
}
#room_preloader .full-content .room-preloader-bar .room-preloader-loading {
    position: absolute;
    top: 60px;
    font-size: 46px;
}
#room_preloader .full-content .room-preloader-bar .room-preloader-bar-holder {
    position: absolute;
    top: 130px;
    width: 300px;
    height: 30px;
    background-color: #99ce05;
    -webkit-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
#room_preloader .full-content .room-preloader-bar .room-preloader-bar-holder .room-preloader-bar-progress {
    position: absolute;
    display: block;
    bottom: 0;
    height: 30px;
    background-color: #f41a71;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
#room_preloader .full-content .room-preloader-bar .room-preloader-percentage {
    position: absolute;
    bottom: 125px;
    font-size: 26px;
}
#sounds_preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/layout/app_inner_background.jpg) top repeat-x;
    z-index: 2;
}
#sounds_preloader .full-content {
    height: 600px;
    margin-top: -300px;
}
#sounds_preloader .full-content .kart-kingdom-logo {
    top: 40px;
}
#sounds_preloader .full-content .sounds-preloader-bar {
    position: absolute;
    top: 420px;
    left: 50%;
    margin-left: -250px;
    width: 500px;
    height: 300px;
}
#sounds_preloader .full-content .sounds-preloader-bar p {
    font-family: pbs_kids_headlinebold;
    text-align: center;
    color: #fff;
    width: 100%;
}
#sounds_preloader .full-content .sounds-preloader-bar .sounds-preloader-loading {
    position: absolute;
    top: 60px;
    font-size: 46px;
}
#sounds_preloader .full-content .sounds-preloader-bar .sounds-preloader-bar-holder {
    position: absolute;
    top: 130px;
    left: 100px;
    width: 300px;
    height: 30px;
    background-color: #99ce05;
    -webkit-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#497607 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
#sounds_preloader .full-content .sounds-preloader-bar .sounds-preloader-bar-holder .sounds-preloader-bar-progress {
    position: absolute;
    display: block;
    bottom: 0;
    height: 30px;
    background-color: #f41a71;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
#sounds_preloader .full-content .sounds-preloader-bar .sounds-preloader-percentage {
    position: absolute;
    bottom: 125px;
    font-size: 26px;
}
#quickchat_nav {
    position: absolute;
    bottom: 20px;
    left: 25px;
    will-change: transform;
}
#quickchat_nav ul li {
    float: left;
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    background-color: #f41971;
    border: 6px solid #fff;
}
#quickchat_nav ul li.active,
#quickchat_nav ul li:hover {
    background-color: #fff;
}
#quickchat_nav ul li button {
    position: relative;
    width: 58px;
    height: 58px;
    display: block;
    outline: 0;
}
.quickchat {
    position: absolute;
    overflow: visible;
    left: 25px;
    bottom: 110px;
    background-color: transparent;
    font-family: colfaxbold;
    will-change: transform;
}
.quickchat .quick-chat-root {
    position: relative;
    width: 175px;
    padding: 10px 0;
    background-color: #fff;
    -webkit-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.quickchat .quick-chat-root .quickchat-subtitle {
    height: 28px;
    cursor: default;
}
.quickchat .quick-chat-root .quickchat-subtitle p {
    font-size: 14px;
    line-height: 28px;
    margin-left: 15px;
}
.quickchat .quick-chat-root .quickchat-item {
    cursor: pointer;
}
.quickchat .quick-chat-root .quickchat-item .menu-item {
    width: 150px;
    margin-left: 10px;
    text-align: left;
    padding: 0 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.quickchat .quick-chat-root .quickchat-item .menu-item .menu-item-icon {
    position: relative;
    float: left;
    width: 32px;
    height: 32px;
    margin-left: 0;
    margin-right: 6px;
}
.quickchat .quick-chat-root .quickchat-item .menu-item .menu-item-icon-visible {
    display: block;
}
.quickchat .quick-chat-root .quickchat-item .menu-item .menu-item-text {
    width: auto;
    font-size: 13px;
    font-weight: 700;
    line-height: 32px;
    color: #42ba10;
}
.quickchat .quick-chat-root .quickchat-item .menu-item:hover {
    background-color: #80db16;
}
.quickchat .quick-chat-root .quickchat-item .menu-item:hover .menu-item-text {
    color: #fff;
}
.quickchat .quick-chat-root .quickchat-item .submenu {
    max-height: 650px;
    max-width: 650px;
    position: absolute;
    left: 185px;
    overflow: visible;
    bottom: 0;
    background-color: #fff;
    -webkit-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.quickchat .quick-chat-root .quickchat-item .submenu li {
    padding: 0 10px;
    margin: 2px 0;
}
.quickchat .quick-chat-root .quickchat-item .submenu li .menu-item {
    display: block;
    margin-left: 0;
    padding: 5px 10px;
}
.quickchat .quick-chat-root .quickchat-item .submenu li .menu-item .menu-item-text {
    display: inline-block;
    line-height: 15px;
}
.quickchat .quick-chat-root .quickchat-item .submenu li:first-child {
    margin-top: 10px;
}
.quickchat .quick-chat-root .quickchat-item .submenu li:last-child {
    margin-bottom: 10px;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-1 li .menu-item-text,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-5 li .menu-item-text {
    color: #15d1b1;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-1 li .menu-item:hover,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-5 li .menu-item:hover {
    background-color: #15d1b1;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-1 li .menu-item:hover .menu-item-text,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-5 li .menu-item:hover .menu-item-text {
    color: #fff;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-3 li .menu-item-text,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-6 li .menu-item-text {
    color: #f2825b;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-3 li .menu-item:hover,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-6 li .menu-item:hover {
    background-color: #f2825b;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-3 li .menu-item:hover .menu-item-text,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-6 li .menu-item:hover .menu-item-text {
    color: #fff;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-0 li .menu-item-text,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-7 li .menu-item-text {
    color: #50b4e0;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-0 li .menu-item:hover,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-7 li .menu-item:hover {
    background-color: #50b4e0;
}
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-0 li .menu-item:hover .menu-item-text,
.quickchat .quick-chat-root .quickchat-item .submenu.submenu-7 li .menu-item:hover .menu-item-text {
    color: #fff;
}
.quickchat .quick-chat-root:before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 5px 0;
    border-color: #fff transparent transparent;
}
.quickchat .submenu-visible {
    display: block;
}
.go-button {
    position: relative;
    left: 0;
    top: 0;
    width: 128px;
    height: 54px;
    background: url(/images/crafting/craft_button.png) top left;
    display: block;
}
.quest_low_image .sprite {
    width: 50px;
    height: 50px;
    display: inline-block;
    overflow: hidden;
    background-repeat: no-repeat;
    background-image: url(/images/quests/quest_low_image.png);
}
.quest_low_image .bug_1 {
    width: 50px;
    height: 50px;
    background-position: -2px -2px;
}
.quest_low_image .bug_2 {
    width: 50px;
    height: 50px;
    background-position: -54px -2px;
}
.quest_low_image .bug_3 {
    width: 50px;
    height: 50px;
    background-position: -106px -2px;
}
.quest_low_image .bug_4 {
    width: 50px;
    height: 50px;
    background-position: -158px -2px;
}
.quest_low_image .bug_5 {
    width: 50px;
    height: 50px;
    background-position: -210px -2px;
}
.quest_low_image .glade_1 {
    width: 50px;
    height: 50px;
    background-position: -2px -54px;
}
.quest_low_image .glade_2 {
    width: 50px;
    height: 50px;
    background-position: -54px -54px;
}
.quest_low_image .glade_3 {
    width: 50px;
    height: 50px;
    background-position: -106px -54px;
}
.quest_low_image .glade_4 {
    width: 50px;
    height: 50px;
    background-position: -158px -54px;
}
.quest_low_image .glade_5 {
    width: 50px;
    height: 50px;
    background-position: -210px -54px;
}
.quest_low_image .sea_1 {
    width: 50px;
    height: 50px;
    background-position: -2px -106px;
}
.quest_low_image .sea_2 {
    width: 50px;
    height: 50px;
    background-position: -54px -106px;
}
.quest_low_image .sea_3 {
    width: 50px;
    height: 50px;
    background-position: -106px -106px;
}
.quest_low_image .sea_4 {
    width: 50px;
    height: 50px;
    background-position: -158px -106px;
}
.quest_low_image .sea_5 {
    width: 50px;
    height: 50px;
    background-position: -210px -106px;
}
.quest_low_image .snow_1 {
    width: 50px;
    height: 50px;
    background-position: -2px -158px;
}
.quest_low_image .snow_2 {
    width: 50px;
    height: 50px;
    background-position: -54px -158px;
}
.quest_low_image .snow_3 {
    width: 50px;
    height: 50px;
    background-position: -106px -158px;
}
.quest_low_image .snow_4 {
    width: 50px;
    height: 50px;
    background-position: -158px -158px;
}
.quest_low_image .snow_5 {
    width: 50px;
    height: 50px;
    background-position: -210px -158px;
}
.quest_high_image .sprite {
    width: 100px;
    height: 100px;
    display: inline-block;
    overflow: hidden;
    background-repeat: no-repeat;
    background-image: url(/images/quests/quest_high_image.png);
}
.quest_high_image .bug_1 {
    width: 100px;
    height: 100px;
    background-position: 0 0;
}
.quest_high_image .bug_2 {
    width: 100px;
    height: 100px;
    background-position: -100px 0;
}
.quest_high_image .bug_3 {
    width: 100px;
    height: 100px;
    background-position: -200px 0;
}
.quest_high_image .bug_4 {
    width: 100px;
    height: 100px;
    background-position: -300px 0;
}
.quest_high_image .bug_5 {
    width: 100px;
    height: 100px;
    background-position: -400px 0;
}
.quest_high_image .glade_1 {
    width: 100px;
    height: 100px;
    background-position: 0 -100px;
}
.quest_high_image .glade_2 {
    width: 100px;
    height: 100px;
    background-position: -100px -100px;
}
.quest_high_image .glade_3 {
    width: 100px;
    height: 100px;
    background-position: -200px -100px;
}
.quest_high_image .glade_4 {
    width: 100px;
    height: 100px;
    background-position: -300px -100px;
}
.quest_high_image .glade_5 {
    width: 100px;
    height: 100px;
    background-position: -400px -100px;
}
.quest_high_image .sea_1 {
    width: 100px;
    height: 100px;
    background-position: 0 -200px;
}
.quest_high_image .sea_2 {
    width: 100px;
    height: 100px;
    background-position: -100px -200px;
}
.quest_high_image .sea_3 {
    width: 100px;
    height: 100px;
    background-position: -200px -200px;
}
.quest_high_image .sea_4 {
    width: 100px;
    height: 100px;
    background-position: -300px -200px;
}
.quest_high_image .sea_5 {
    width: 100px;
    height: 100px;
    background-position: -400px -200px;
}
.quest_high_image .snow_1 {
    width: 100px;
    height: 100px;
    background-position: 0 -300px;
}
.quest_high_image .snow_2 {
    width: 100px;
    height: 100px;
    background-position: -100px -300px;
}
.quest_high_image .snow_3 {
    width: 100px;
    height: 100px;
    background-position: -200px -300px;
}
.quest_high_image .snow_4 {
    width: 100px;
    height: 100px;
    background-position: -300px -300px;
}
.quest_high_image .snow_5 {
    width: 100px;
    height: 100px;
    background-position: -400px -300px;
}
.minigame {
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.minigame .stage {
    position: absolute;
    top: 60px;
    bottom: 0;
    width: 100%;
    background: #000;
}
.minigame .stage .game {
    width: 100%;
    height: 100%;
}
.minigame .control-panel {
    height: 100%;
    background: #f2825b;
    padding: 10px;
}
.minigame .control-panel .input-url {
    width: 70%;
    height: 34px;
}
.monkey-minigame {
    position: absolute;
    background: #76c2e9;
    width: 100%;
    height: 100%;
}
.monkey-minigame .stage {
    height: 575px;
    top: 125px;
    background: #000;
    position: relative;
}
.monkey-minigame .stage .game {
    width: 100%;
    height: 100%;
}
.monkey-minigame .control-panel {
    height: 100%;
    background: #f2825b;
    padding: 10px;
}
.monkey-minigame .control-panel .input-url {
    width: 70%;
    height: 34px;
}
#games {
    background-color: #ff6700;
}
#games .full-content {
    height: 600px;
    margin-top: -368px;
}
#games .full-content .games-table {
    position: relative;
    width: 320px;
    height: 180px;
    margin: 0 auto;
    background: url(/images/games/games_spritesheet.png) -172px 0;
}
#games .full-content .games-table .jolly-arrow {
    position: absolute;
    width: 62px;
    height: 62px;
    top: 25px;
    left: 122px;
    background: url(/images/games/games_spritesheet.png) -494px -93px;
}
#games .full-content .games-wrapper {
    position: relative;
    width: 692px;
    margin: 0 auto;
}
#games .full-content .games-wrapper .game-preview {
    position: relative;
    display: inline-block;
    width: 326px;
    height: 190px;
    background-color: #fff;
    margin: 10px;
}
#games .full-content .games-wrapper .game-preview img {
    position: relative;
    display: block;
    width: 310px;
    height: 174px;
    margin: 8px;
}
#games .full-content .games-wrapper .game-preview.game-preview-soon img {
    filter: alpha(Opacity=30);
    opacity: 0.3;
}
#games .full-content .games-wrapper .game-preview:hover:not(.game-preview-soon) img {
    filter: alpha(Opacity=90);
    opacity: 0.9;
}
#games .full-content .games-wrapper .game-coming-soon {
    position: absolute;
    width: 280px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -140px;
    background: url(/images/games/games_spritesheet.png) -212px -183px;
}
#games .full-content .games-wrapper .game-coming-soon p {
    font-family: pbs_kids_headlinebold;
    color: #fff;
    font-size: 26px;
    line-height: 60px;
    text-transform: uppercase;
    text-align: center;
}
#games .full-content .games-wrapper .game-new {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 62px;
    height: 62px;
    background-color: #00c3f7;
    -webkit-border-radius: 31px;
    -moz-border-radius: 31px;
    -ms-border-radius: 31px;
    -o-border-radius: 31px;
    border-radius: 31px;
}
#games .full-content .games-wrapper .game-new p {
    margin-top: 15px;
    font-family: pbs_kids_headlinebold;
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    -webkit-transform: rotate(-12deg);
    -moz-transform: rotate(-12deg);
    -ms-transform: rotate(-12deg);
    -o-transform: rotate(-12deg);
    transform: rotate(-12deg);
}
#games .full-content .paginator-nav {
    position: absolute;
    bottom: -60px;
    left: 50%;
    margin-left: -85px;
}
#games .spotlight-shadow-left,
#games .spotlight-shadow-right {
    position: absolute;
    height: 800px;
    width: 200px;
    top: 50%;
    margin-top: -400px;
    background-color: #000;
    -webkit-backface-visibility: hidden;
    filter: alpha(Opacity=40);
    opacity: 0.4;
}
#games .spotlight-shadow-left {
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -o-transform: rotate(8deg);
    transform: rotate(8deg);
    left: -100px;
}
#games .spotlight-shadow-right {
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
    transform: rotate(-8deg);
    right: -100px;
}
#games .curtain-left,
#games .curtain-right {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -250px;
    background-color: #00c3f7;
}
#games .curtain-left {
    left: 0;
    -webkit-border-radius: 0 0 400px;
    -khtml-border-radius: 0 0 400px 0;
    -moz-border-radius: 0 0 400px;
    border-radius: 0 0 400px;
}
#games .curtain-right {
    right: 0;
    -webkit-border-radius: 0 0 0 400px;
    -khtml-border-radius: 0 0 0 400px;
    -moz-border-radius: 0 0 0 400px;
    border-radius: 0 0 0 400px;
}
#games .cool-dude {
    position: absolute;
    width: 168px;
    height: 253px;
    bottom: 0;
    left: 0;
    background: url(/images/games/games_spritesheet.png);
}
#games .cool-dude-chat-bubble {
    position: absolute;
    width: 280px;
    height: 215px;
    bottom: 180px;
    left: 80px;
    background-color: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
#games .cool-dude-chat-bubble .medium-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
}
#games .cool-dude-chat-bubble p {
    position: absolute;
    width: 220px;
    top: 55px;
    left: 50%;
    margin-left: -110px;
    font-family: pbs_kids_headlinebold;
    color: #0849af;
    font-size: 28px;
    line-height: 28px;
    text-transform: uppercase;
    text-align: center;
}
#games .cool-dude-chat-bubble .cool-dude-chat-bubble-arrow {
    position: absolute;
    width: 55px;
    height: 45px;
    bottom: -30px;
    left: 95px;
    background: url(/images/games/games_spritesheet.png) -495px -164px;
}
#games .big-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
}
#racing {
    position: absolute;
    background: #ffe000;
    width: 100%;
    height: 100%;
}
#racing .title-bar {
    background-color: #8c00ef;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    z-index: 1;
}
#racing .floor {
    width: 100%;
    background: #ff8b00;
    position: absolute;
    height: 294px;
    bottom: 0;
}
#racing .gadgets-tab {
    width: 410px;
    height: 243px;
    position: absolute;
    bottom: 27px;
    left: 30px;
    border-radius: 20px;
    border: #fff;
    border-width: 8px;
    border-style: solid;
    background: #fff;
}
#racing .gadgets-tab .gadgets-inner {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    border-color: #fff;
    border-style: solid;
    background: #ffb000;
    border-width: 2px;
}
#racing .gadgets-tab .gadgets-inner p {
    font-family: pbs_kids_headlinebold;
    color: #fff;
    margin: 5px;
    font-size: 26px;
}
#racing .gadgets-tab .gadgets-inner .gadgets {
    display: flex;
    height: 74%;
    flex-wrap: wrap;
    margin-left: 19px;
}
#racing .gadgets-tab .gadgets-inner .gadgets .gadget {
    width: 76px;
    height: 74px;
    margin: 5px;
    cursor: pointer;
}
#racing .gadgets-tab .gadgets-inner .gadgets .gadget .disabled {
    opacity: 0.5;
}
#racing .gadgets-tab .gadgets-inner .gadgets .gadget img {
    width: 100%;
}
#racing .gadgets-tab .gadgets-inner .gadgets .gadget p {
    display: block;
    font-family: pbs_kids_headlineregular;
    padding: 4px 10px;
    box-sizing: content-box;
    font-size: 13px;
    height: 1em;
    line-height: 1em;
    color: #216c65;
    background-color: #fff;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    -ms-border-radius: 2em;
    -o-border-radius: 2em;
    border-radius: 2em;
    position: relative;
    top: -81px;
    left: -10px;
    width: 10px;
}
#racing .break {
    display: flex;
    margin-left: 13px;
    height: 30px;
}
#racing .break .line {
    width: 190px;
    height: 3px;
    background: #fff;
    margin: 10px;
    position: relative;
}
#racing .break .vs {
    font-family: pbs_kids_headlinebold;
    color: #fff;
    text-transform: uppercase;
    font-size: 27px;
    margin: 10px;
    top: -18px;
    position: relative;
}
#racing .gadget-slot {
    position: absolute;
    left: 266px;
    top: 107px;
}
#racing .gadget-slot .gadget {
    left: -122px;
    top: -15px;
    position: relative;
    width: 102px;
}
#racing .gadget-slot .remove-gadget {
    left: 116px;
    top: -13px;
    position: absolute;
}
#racing .avatar {
    position: absolute;
    top: 170px;
    left: -3px;
}
#racing .track {
    width: 526px;
    height: 645px;
    background: #fff;
    position: absolute;
    top: 95px;
    right: 32px;
    border: 13px;
    border-color: #fff;
    border-style: solid;
}
#racing .track .nicks-left,
#racing .track .nicks-right {
    position: absolute;
    top: 0;
}
#racing .track .nicks-left::after,
#racing .track .nicks-left::before,
#racing .track .nicks-right::after,
#racing .track .nicks-right::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}
#racing .track .nicks-left {
    left: -14px;
}
#racing .track .nicks-left::after,
#racing .track .nicks-left::before {
    left: 0;
}
#racing .track .nicks-left::before {
    top: 220px;
    border-left: 12px solid #ffe000;
}
#racing .track .nicks-left::after {
    top: 570px;
    border-left: 12px solid #ff8b00;
}
#racing .track .nicks-right {
    right: -14px;
}
#racing .track .nicks-right::after,
#racing .track .nicks-right::before {
    right: 0;
    border-right: 12px solid #ffe000;
}
#racing .track .nicks-right::before {
    top: 50px;
}
#racing .track .nicks-right::after {
    top: 310px;
}
#racing .track .track-name {
    font-family: pbs_kids_headlinebold;
    color: #fff;
    text-transform: uppercase;
    font-size: 44px;
    margin-top: 11px;
    margin-bottom: 3px;
}
#racing .track .bots {
    display: flex;
    margin: 2px 10px 10px;
}
#racing .track .bots .bot {
    box-sizing: content-box;
    border: 8px;
    border-color: #fff;
    border-style: solid;
    margin: 7px;
}
#racing .track .bots .bot p {
    font-family: pbs_kids_headlinebold;
    font-size: 23px;
}
#racing .cave-background {
    background: #a6bab8;
}
#racing .beach-background {
    background: #00bfbf;
}
#racing .spooky-background {
    background: #737373;
}
#racing .snow-background {
    background: #f41971;
}
#racing .desert-background {
    background: #ff7300;
}
#racing .glade-background {
    background: #8f58bb;
}
#racing .background {
    left: 0;
    position: absolute;
}
#racing .prize-bar {
    display: flex;
    margin-left: 17px;
    margin-top: 25px;
    margin-bottom: 24px;
}
#racing .prize-bar .prize {
    width: 105px;
    height: 70px;
    background: #fff;
    margin-left: 6px;
    border-radius: 16px;
}
#racing .prize-bar .prize div {
    display: block;
    margin: auto;
    top: 10px;
    position: relative;
    height: 48px;
}
#racing .prize-bar .prize .medal {
    position: relative;
    top: -15px;
    left: 37px;
}
#racing .prize-bar .prize .racing-icon-resources {
    top: 18px;
}
#racing .prize-bar .prize .racing-icon-kart {
    top: 5px;
}
#racing .prize-bar .prize .won {
    opacity: 0.5;
}
#racing .prize-bar .tag {
    width: 130px;
    position: relative;
}
#racing .prize-bar .tag .box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 20px;
    background: #fff;
}
#racing .prize-bar .tag .triangle {
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    right: 0;
    border-top: 35px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 35px solid transparent;
}
#racing .prize-bar .tag p {
    position: absolute;
    left: 0;
    top: 16px;
    right: 14px;
    text-align: center;
    font-family: pbs_kids_headlinebold;
    font-size: 27px;
}
#racing .cave-text {
    color: #a6bab8;
}
#racing .beach-text {
    color: #00bfbf;
}
#racing .snow-text {
    color: #f41971;
}
#racing .desert-text {
    color: #ff7300;
}
#racing .glade-text {
    color: #8f58bb;
}
#racing .stage {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
}
#racing .stage .game {
    width: 100%;
    height: 100%;
}
#racing .start-button {
    width: 350px;
    height: 110px;
    font-size: 50px;
    background-color: #10d800;
    font-family: pbs_kids_headlinebold;
    border-bottom: 19px solid #497607;
}
#race_leaderboard {
    background-color: #ffdf00;
    cursor: default;
}
#race_leaderboard .title-bar {
    background-color: #8c00ef;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    z-index: 1;
}
#race_leaderboard .page-button {
    width: 225px;
    height: 55px;
    background-color: #ff9d00;
    border-radius: 18px;
    font-family: pbs_kids_headlinebold;
    font-size: 22pt;
    color: #fff;
    line-height: 54px;
    position: absolute;
}
#race_leaderboard .next-button {
    right: 50px;
    bottom: 20px;
}
#race_leaderboard .prev-button {
    left: 50px;
    bottom: 20px;
}
#race_leaderboard .toggle-button {
    background-color: #fff;
    width: 77px;
    height: 35px;
    position: absolute;
    bottom: 24px;
    left: 489px;
    border-radius: 18px;
    cursor: pointer;
}
#race_leaderboard .toggle-button .button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #3e3e3b;
    transition: left 0.2s ease-in-out;
    margin: 5px;
    position: relative;
    left: 2px;
}
#race_leaderboard .toggle-button .button-toggled {
    left: 40px;
}
#race_leaderboard .title {
    font-family: pbs_kids_headlinebold;
    font-size: 37pt;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: -77px;
}
#race_leaderboard .title-week {
    left: 240px;
}
#race_leaderboard .title-last-week {
    left: 1225px;
}
#race_leaderboard .container-toggle {
    left: -980px !important;
}
#race_leaderboard .container {
    top: 85px;
    position: relative;
    min-width: 2200px;
    left: 8px;
    text-align: left;
    transition: left 0.6s cubic-bezier(0.94, -0.27, 0, 1.08);
    font-family: pbs_kids_headlinebold;
}
#race_leaderboard .container .scores-container {
    position: relative;
    display: inline-table;
}
#race_leaderboard .container .track {
    width: 320px;
    height: 530px;
    display: inline-table;
    margin-left: 10px;
    text-align: center;
}
#race_leaderboard .container .track .personal-best {
    display: flex;
    background-color: #fff;
    margin: 10px 15px 15px;
    padding: 12px;
    font-size: 12pt;
}
#race_leaderboard .container .track .personal-best .text {
    width: 60%;
    text-align: left;
}
#race_leaderboard .container .track .personal-best .score {
    color: #f41971;
    width: 100%;
    text-align: right;
}
#race_leaderboard .container .track .track-title {
    font-size: 28px;
    top: 7px;
    position: relative;
    text-transform: uppercase;
    color: #fff;
}
#race_leaderboard .container .track .entry {
    background-color: #fff;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 5px;
    font-family: pbs_kids_headlineregular;
    font-size: 24px;
}
#race_leaderboard .container .track .first-entry .entry-info .name {
    top: -19px;
    text-align: center !important;
    position: relative;
}
#race_leaderboard .container .track .first-entry .entry-info .position {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    line-height: 36px !important;
    font-size: 30px !important;
    text-align: center !important;
    top: -4px !important;
    left: 1px;
}
#race_leaderboard .container .track .first-entry .entry-info .score {
    top: 11px;
    right: 2px;
    position: relative;
    line-height: 25px !important;
}
#race_leaderboard .container .track .last-week-entry {
    height: 355px;
}
#race_leaderboard .container .track .last-week-entry .avatar {
    top: 40px;
    position: relative;
}
#race_leaderboard .container .track .last-week-entry .entry-info .name {
    display: block !important;
    font-size: 15pt;
}
#race_leaderboard .container .track .last-week-entry .entry-info .score {
    color: #f41971;
    font-size: 38px;
    top: -12px;
    position: relative;
}
#race_leaderboard .container .track .week-entry .entry-info {
    height: 42px;
    display: flex;
    width: 100%;
    padding: 5px;
}
#race_leaderboard .container .track .week-entry .entry-info .position {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #5d5d5d;
    min-width: 25px;
    color: #fff;
    line-height: 28px;
    font-size: 23px;
    top: 4px;
    position: relative;
}
#race_leaderboard .container .track .week-entry .entry-info .name {
    font-size: 17px;
    text-align: left;
    margin-left: 20px;
    width: 100%;
    line-height: 34px;
}
#race_leaderboard .container .track .week-entry .entry-info .score {
    color: #f41971;
    font-size: 19px;
    line-height: 34px;
}
#race_leaderboard .container .track-snow {
    background-color: #f41971;
}
#race_leaderboard .container .track-desert {
    background-color: #ff7300;
}
#race_leaderboard .container .track-cave {
    background-color: #a6bab8;
}
#race_leaderboard .container .track-glade {
    background-color: #8f58bb;
}
#race_leaderboard .container .track-beach {
    background-color: #00bfbf;
}
#race_leaderboard .container .track-spooky {
    background-color: #737373;
}
#race_leaderboard .toggle-button-text {
    font-family: pbs_kids_headlinebold;
    position: absolute;
    bottom: 24px;
    font-size: 17pt;
    color: #fff;
}
#race_leaderboard .toggle-button-text .everyone {
    left: 360px;
    bottom: 0;
    position: absolute;
    white-space: nowrap;
}
#race_leaderboard .toggle-button-text .friends {
    left: 580px;
    bottom: 0;
    position: absolute;
    white-space: nowrap;
}
#race_leaderboard .scope-toggle-text {
    bottom: 8px;
}
#race_leaderboard .scope-toggle-text .everyone {
    left: 360px;
}
#race_leaderboard .scope-toggle-text .friends {
    left: 580px;
}
#race_leaderboard .scope-toggle {
    bottom: 8px;
}
#race_leaderboard .powerup-toggle {
    bottom: 48px;
    left: 489px;
}
#race_leaderboard .powerup-toggle-text {
    bottom: 48px;
    font-size: 13pt;
}
#race_leaderboard .powerup-toggle-text .everyone {
    left: 355px;
    white-space: nowrap;
}
#race_leaderboard .powerup-toggle-text .friends {
    left: 572px;
    white-space: nowrap;
}
.racing-icon {
    background-image: url(/images/race/icons.png);
    background-repeat: no-repeat;
    display: block;
}
.racing-icon-kart {
    width: 77px;
    height: 56px;
    background-position: 0 0;
}
.racing-icon-resource {
    width: 48px;
    height: 48px;
    background-position: -77px 0;
}
.racing-icon-resources {
    width: 59px;
    height: 36px;
    background-position: -77px -48px;
}
.racer {
    width: 130px;
    height: 145px;
    background-image: url(/images/race/racers.png);
    background-repeat: no-repeat;
    background-size: 700%;
    position: relative;
    display: block;
}
.racer.racer-ace {
    background-position: 0 0;
}
.racer.racer-armstrong {
    background-position: 16.6666666667% 0;
}
.racer.racer-aurora {
    background-position: 33.3333333333% 0;
}
.racer.racer-chaz {
    background-position: 50% 0;
}
.racer.racer-daisy {
    background-position: 66.6666666667% 0;
}
.racer.racer-daze {
    background-position: 0 33.3333333333%;
}
.racer.racer-diesel {
    background-position: 16.6666666667% 33.3333333333%;
}
.racer.racer-fang {
    background-position: 33.3333333333% 33.3333333333%;
}
.racer.racer-flash {
    background-position: 50% 33.3333333333%;
}
.racer.racer-four {
    background-position: 66.6666666667% 33.3333333333%;
}
.racer.racer-frostbite {
    background-position: 0 66.6666666667%;
}
.racer.racer-jane {
    background-position: 16.6666666667% 66.6666666667%;
}
.racer.racer-lucky {
    background-position: 33.3333333333% 66.6666666667%;
}
.racer.racer-lucy {
    background-position: 50% 66.6666666667%;
}
.racer.racer-maxine {
    background-position: 66.6666666667% 66.6666666667%;
}
.racer.racer-phantom {
    background-position: 0 100%;
}
.racer.racer-pierre {
    background-position: 16.6666666667% 100%;
}
.racer.racer-pinewood {
    background-position: 33.3333333333% 100%;
}
.racer.racer-pops {
    background-position: 50% 100%;
}
.racer.racer-princess_wonderful {
    background-position: 66.6666666667% 100%;
}
.racer.racer-ram {
    background-position: 83.3333333333% 0;
}
.racer.racer-slide {
    background-position: 83.3333333333% 33.3333333333%;
}
.racer.racer-titan {
    background-position: 83.3333333333% 66.6666666667%;
}
.racer.racer-violet {
    background-position: 83.3333333333% 100%;
}
.racer.racer-nature_cat {
    background-position: 100% 0;
}
.racer.racer-bad_dog_bart {
    background-position: 100% 33.3333333333%;
}
.racer.racer-gwendolyn {
    background-position: 100% 66.6666666667%;
}
#give_and_get .dialog {
    position: absolute;
    width: 620px;
    height: 330px;
    left: 50%;
    top: 50%;
    margin-left: -310px;
    margin-top: -165px;
    background-color: #fb0;
    border: 8px solid #fff;
}
#give_and_get .close-button {
    top: 5px;
    right: 5px;
    position: absolute;
}
#give_and_get .dialog-content {
    position: relative;
    height: 100%;
}
#give_and_get .dialog-content .get-block p,
#give_and_get .dialog-content .give-block p {
    font-family: pbs_kids_headlinebold;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 50px;
    color: #fff;
}
#give_and_get .dialog-content .get-block,
#give_and_get .dialog-content .give-block {
    position: absolute;
    top: 40px;
    width: 120px;
    text-align: center;
}
#give_and_get .dialog-content .get-block i,
#give_and_get .dialog-content .give-block i {
    display: inline-block;
}
#give_and_get .dialog-content .give-block {
    left: 30px;
}
#give_and_get .dialog-content .get-block {
    right: 1px;
}
#give_and_get .dialog-content .get-block .get-text {
    right: 24px;
    position: relative;
}
#give_and_get .dialog-content .product-background {
    width: 100px;
    height: 100px;
    background: url(/images/layout/big_elements.png) -556px 381px;
    position: absolute;
    left: -12px;
    top: 48px;
}
#give_and_get .dialog-content .product-container {
    position: absolute;
}
#give_and_get .craft-button-group {
    position: absolute;
    bottom: 40px;
    left: 55px;
    height: 35px;
    margin: 0;
}
#give_and_get .craft-button-group #craft-button-1,
#give_and_get .craft-button-group #craft-button-3,
#give_and_get .craft-button-group #craft-button-5 {
    height: 35px;
}
#give_and_get .totaliser-boy-bubble {
    position: absolute;
    bottom: 28px;
    right: 140px;
    padding: 5px 20px;
    background-color: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
#give_and_get .totaliser-boy-bubble p {
    display: inline-block;
    font-family: pbs_kids_headlinebold;
    font-size: 14px;
    margin: 0;
    color: #0849af;
    text-transform: uppercase;
}
#give_and_get .totaliser-boy-bubble .totaliser-boy-bubble-tail {
    position: absolute;
    right: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #fff;
}
#give_and_get .totaliser-boy-head {
    position: absolute;
    bottom: 20px;
    right: 55px;
    width: 64px;
    height: 76px;
    background: url(/images/layout/big_elements.png) 0 -282px;
}
#give_and_get .totaliser-bar {
    position: absolute;
    top: 115px;
    left: 120px;
    width: 360px;
    height: 50px;
    background-color: #dfdfdf;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
}
#give_and_get .totaliser-bar .totaliser-bar-filled {
    background-color: #fb4d00;
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 0;
}
#give_and_get .totaliser-bar .totaliser-bar-meter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 360px;
    height: 8px;
    background: url(/images/layout/totalizer_meter_segment.png);
}
#redeem {
    font-family: pbs_kids_headlinebold;
}
#redeem .dialog {
    position: absolute;
    width: 620px;
    height: 330px;
    left: 50%;
    top: 50%;
    margin-left: -310px;
    margin-top: -165px;
    background-color: #fff;
    border: 8px solid #fff;
}
#redeem .big-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
#redeem .dialog-header {
    text-align: center;
}
#redeem .dialog-header .ribbon {
    margin-top: 50px;
}
#redeem .dialog-header .ribbon .ribbon-inner {
    width: 400px;
}
#redeem .dialog-header .ribbon .ribbon-inner p {
    font-family: pbs_kids_headlineregular;
}
#redeem .dialog-content {
    position: relative;
}
#redeem .dialog-content input {
    font-size: 40px;
    color: currentColor;
    border-color: gray;
    border-style: dashed;
    padding: 10px;
    margin: 15px;
    text-align: center;
    outline: 0;
}
#redeem .dialog-content p {
    font-size: 50px;
    text-transform: uppercase;
    line-height: 50px;
    color: #000;
}
#rescue_reward .big-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
#rescue_reward .vertical-overflow {
    overflow-y: visible;
}
#rescue_reward .horizontal-overflow {
    overflow: hidden;
}
#rescue_reward .dialog {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    position: absolute;
    width: 458px;
    height: 367px;
    left: 50%;
    top: 50%;
    margin-left: -229px;
    margin-top: -183px;
}
#rescue_reward .dialog .text-container p {
    position: relative;
    color: #f7810b;
}
#rescue_reward .dialog .text-container .title {
    width: 458px;
    margin: 45px auto 0;
    font-size: 28px;
    font-family: pbs_kids_headlinebold;
}
#rescue_reward .dialog .text-container .body {
    width: 458px;
    margin: -10px auto 20px;
    font-size: 17px;
    font-family: pbs_kids_headlineregular;
}
#rescue_reward .dialog #kratts-team {
    position: absolute;
    bottom: 0;
    right: 10px;
}
#rescue_reward .dialog #animal {
    position: absolute;
}
#rescue_reward .dialog .cheetah {
    bottom: -8px;
    right: 180px;
    background-image: url(/images/events/wildKratts/popUpCheetah.png);
    width: 366px;
    height: 231px;
}
#rescue_reward .dialog .ferret {
    bottom: 20px;
    right: 209px;
    background-image: url(/images/events/wildKratts/popUpFerret.png);
    width: 296px;
    height: 166px;
}
#rescue_reward .dialog .koala {
    bottom: 25px;
    right: 276px;
    background-image: url(/images/events/wildKratts/popUpKoala.png);
    width: 137px;
    height: 180px;
}
#rescue_reward .dialog .orangutan {
    bottom: -2px;
    right: 242px;
    background-image: url(/images/events/wildKratts/popUpOrangutan.png);
    width: 180px;
    height: 206px;
}
#rescue_reward .dialog .redpanda {
    bottom: 17px;
    right: 225px;
    background-image: url(/images/events/wildKratts/popUpRedPanda.png);
    width: 379px;
    height: 149px;
}
#rescue_reward .dialog .spidermonkey {
    bottom: -10px;
    right: 245px;
    background-image: url(/images/events/wildKratts/popUpSpiderMonkey.png);
    width: 153px;
    height: 226px;
}
#rescue_reward .dialog .wombat {
    bottom: 10px;
    right: 225px;
    background-image: url(/images/events/wildKratts/popUpWombat.png);
    width: 295px;
    height: 161px;
}
#tortoga_popup .big-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
#tortoga_popup .dialog {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    position: absolute;
    width: 452px;
    height: 251px;
    left: 50%;
    top: 50%;
    margin-left: -226px;
    margin-top: -125px;
}
#tortoga_popup .dialog .text-container p {
    position: relative;
    color: #f7810b;
    width: 201px;
    margin-bottom: -8px;
    font-size: 31px;
    font-family: pbs_kids_headlinebold;
    top: 90px;
    left: 40px;
    text-align: left;
}
#tortoga_popup .dialog #tortoga-image {
    position: absolute;
    bottom: 69px;
    right: 33px;
}
#nature_cat_activation .dialog {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    position: absolute;
    width: 826px;
    height: 550px;
    left: 50%;
    top: 50%;
    margin-left: -413px;
    margin-top: -275px;
}
#nature_cat_activation .dialog .text-container p {
    position: relative;
    color: #f7810b;
    font-size: 21px;
    font-family: pbs_kids_headlinebold;
    text-align: center;
}
#nature_cat_activation .dialog #nature-cat-image {
    position: relative;
    margin-top: 33px;
    margin-bottom: 10px;
}
#explore_vote .big-close-button,
#vote_process .big-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
#explore_vote .rewards-text,
#vote_process .rewards-text {
    font-size: 24px;
}
#explore_vote .firefly,
#explore_vote .sunflower,
#explore_vote .venus,
#vote_process .firefly,
#vote_process .sunflower,
#vote_process .venus {
    background: #80db16;
}
#explore_vote .wolf,
#vote_process .wolf {
    background: #fff;
}
#explore_vote .archerfish,
#explore_vote .pelican,
#vote_process .archerfish,
#vote_process .pelican {
    background: #fedf00;
}
#explore_vote .clue,
#vote_process .clue {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 55px;
}
#explore_vote .question-mark-container,
#vote_process .question-mark-container {
    background: #fff;
}
#explore_vote .question-mark,
#vote_process .question-mark {
    top: 21px;
    position: relative;
}
#explore_vote .clues,
#vote_process .clues {
    position: relative;
    display: flex;
    left: 75px;
}
#explore_vote .clues p,
#vote_process .clues p {
    position: relative;
    font-size: 82px;
}
#explore_vote .dialog,
#vote_process .dialog {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    width: 750px;
    height: 410px;
    left: 50%;
    top: 50%;
    margin-left: -375px;
    margin-top: -205px;
    background-color: #fb0;
    border-color: #fff;
    border-style: solid;
    border-width: 8px;
}
#explore_vote .dialog .text-container p,
#vote_process .dialog .text-container p {
    color: #fff;
    font-family: pbs_kids_headlinebold;
}
#explore_vote .dialog .text-container .question,
#vote_process .dialog .text-container .question {
    margin-top: 35px;
    font-size: 60px;
}
#explore_vote .dialog .text-container .rewards-question,
#vote_process .dialog .text-container .rewards-question {
    font-size: 50px;
    margin-top: 24px;
}
#explore_vote .dialog .text-container .congratulation,
#vote_process .dialog .text-container .congratulation {
    font-size: 47px;
    margin-top: 55px;
}
#explore_vote .dialog .answers-container,
#vote_process .dialog .answers-container {
    display: inline-block;
    position: relative;
    top: 20px;
}
#explore_vote .dialog .answers-container .answer,
#vote_process .dialog .answers-container .answer {
    float: left;
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #fff;
    margin-left: 10px;
    margin-right: 10px;
}
#explore_vote .dialog .answers-container .answer.non-active-answer,
#vote_process .dialog .answers-container .answer.non-active-answer {
    opacity: 0.5;
}
#explore_vote .dialog .answers-container .answer img,
#vote_process .dialog .answers-container .answer img {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
#explore_vote .dialog .answers-container .answer img.voted-badge,
#vote_process .dialog .answers-container .answer img.voted-badge {
    top: 180px;
}
#explore_vote .dialog .answers-container .answer .vote-element,
#vote_process .dialog .answers-container .answer .vote-element {
    position: absolute;
    transform: translate(-50%);
    bottom: -60px;
    width: 60px;
    border-radius: 10px;
}
#explore_vote .dialog .answers-container .answer .vote-button,
#vote_process .dialog .answers-container .answer .vote-button {
    background-color: #80db16;
    margin-bottom: 10px;
    color: #fff;
}
#explore_vote .dialog .answers-container .answer .vote-button:hover,
#vote_process .dialog .answers-container .answer .vote-button:hover {
    margin-bottom: 0;
}
#explore_vote .dialog .answers-container .answer .vote-background,
#vote_process .dialog .answers-container .answer .vote-background {
    background-color: #497607;
    height: 30px;
}
#vote_winner .dialog {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    width: 600px;
    height: 370px;
    left: 50%;
    top: 50%;
    margin-left: -300px;
    margin-top: -185px;
    background-color: #fb0;
    border-color: #fff;
    border-style: solid;
    border-width: 8px;
}
#vote_winner .dialog .text-container p {
    color: #fff;
    width: 100%;
    font-family: pbs_kids_headlinebold;
    text-align: center;
}
#vote_winner .dialog .text-container .header {
    margin-top: 15px;
    font-size: 75px;
}
#vote_winner .dialog .text-container .winner-code {
    font-size: 47px;
}
#explore_clue h1 {
    color: #000;
    margin-top: 30px;
}
#explore_clue p {
    font-size: 18px;
}
#explore_clue .dialog {
    position: absolute;
    width: 500px;
    height: 320px;
    left: 50%;
    top: 50%;
    margin-left: -250px;
    margin-top: -160px;
}
#explore_clue .firefly,
#explore_clue .sunflower,
#explore_clue .venus {
    background: #80db16;
}
#explore_clue .wolf {
    background: #fff;
}
#explore_clue .archerfish,
#explore_clue .pelican {
    background: #fedf00;
}
#explore_clue .clue {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 55px;
}
#explore_activation .dialog {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    position: absolute;
    width: 826px;
    height: 550px;
    left: 50%;
    top: 50%;
    margin-left: -413px;
    margin-top: -275px;
}
#explore_activation .dialog .text-container p {
    position: relative;
    color: #f7810b;
    font-size: 21px;
    font-family: pbs_kids_headlinebold;
    text-align: center;
}
#explore_activation .dialog #explore-image {
    position: relative;
    margin-top: 33px;
    margin-bottom: 10px;
}
#explore_prompt h1 {
    color: #000;
    margin-top: 30px;
}
#explore_prompt .dialog {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    position: absolute;
    width: 826px;
    height: 570px;
    left: 50%;
    top: 50%;
    margin-left: -413px;
    margin-top: -285px;
}
#explore_prompt .dialog .text-container {
    margin-top: 10px;
}
#explore_prompt .dialog .text-container p {
    position: relative;
    color: #f7810b;
    font-size: 21px;
    font-family: pbs_kids_headlinebold;
    text-align: center;
}
#explore_prompt .dialog #explore-image {
    position: relative;
    margin-top: 33px;
    margin-bottom: 10px;
}
#explore_rewards .big-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
#explore_rewards .rewards-text {
    font-size: 24px;
}
#explore_rewards .firefly,
#explore_rewards .sunflower,
#explore_rewards .venus {
    background: #80db16;
}
#explore_rewards .wolf {
    background: #fff;
}
#explore_rewards .archerfish,
#explore_rewards .pelican {
    background: #fedf00;
}
#explore_rewards .clue {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 55px;
}
#explore_rewards .question-mark-container {
    background: #fff;
}
#explore_rewards .question-mark {
    top: 21px;
    position: relative;
}
#explore_rewards .clues {
    position: relative;
    display: flex;
    left: 75px;
}
#explore_rewards .clues p {
    position: relative;
    font-size: 82px;
}
#explore_rewards .dialog {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    width: 750px;
    height: 390px;
    left: 50%;
    top: 50%;
    margin-left: -375px;
    margin-top: -195px;
    background-color: #fb0;
    border-color: #fff;
    border-style: solid;
    border-width: 8px;
}
#explore_rewards .dialog .text-container p {
    color: #fff;
    font-family: pbs_kids_headlinebold;
}
#explore_rewards .dialog .text-container .question {
    margin-top: 35px;
    font-size: 60px;
}
#explore_rewards .dialog .text-container .rewards-question {
    font-size: 50px;
    margin-top: 24px;
}
#explore_rewards .dialog .text-container .congratulation {
    font-size: 47px;
    margin-top: 55px;
}
#explore_rewards .dialog .answers-container {
    display: inline-block;
    position: relative;
    top: 20px;
}
#explore_rewards .dialog .answers-container .answer {
    float: left;
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #fff;
    margin-left: 10px;
    margin-right: 10px;
}
#explore_rewards .dialog .answers-container .answer.non-active-answer {
    opacity: 0.5;
}
#explore_rewards .dialog .answers-container .answer img {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    transform: translate(-50%, -50%);
}
#explore_rewards .dialog .answers-container .answer img.voted-badge {
    top: 180px;
}
#explore_rewards .dialog .answers-container .answer .vote-element {
    position: absolute;
    transform: translate(-50%);
    bottom: -60px;
    width: 60px;
    border-radius: 10px;
}
#explore_rewards .dialog .answers-container .answer .vote-button {
    background-color: #80db16;
    margin-bottom: 10px;
    color: #fff;
}
#explore_rewards .dialog .answers-container .answer .vote-button:hover {
    margin-bottom: 0;
}
#explore_rewards .dialog .answers-container .answer .vote-background {
    background-color: #497607;
    height: 30px;
}
#splash .background {
    top: 0;
    pointer-events: none;
    left: 50%;
    position: relative;
    margin-left: -512px;
}
#splash .play {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    position: fixed;
    bottom: 20px;
    left: 50%;
    margin-left: -210px;
    width: 420px;
    height: 120px;
    font-size: 64px;
    background-color: #812685;
    border-bottom: 10px solid #501b59;
}
#splash .play:active,
#splash .play:disabled {
    margin-top: 10px;
    height: 110px;
    border-bottom: none;
    opacity: 1;
}
#splash .play:disabled {
    pointer-events: none;
}
#splash .link {
    position: absolute;
    top: 550px;
    left: 300px;
    font-size: 500%;
}
#trampoline {
    pointer-events: none;
}
#trampoline .help,
#trampoline .more-apps,
#trampoline .parents,
#trampoline .settings {
    pointer-events: auto;
}
@-webkit-keyframes panel-bounce {
    0%,
    to {
        -webkit-transform: translateY(0);
    }
    20% {
        -webkit-transform: translatey(-70px);
    }
    60% {
        -webkit-transform: translateY(25px);
    }
}
@keyframes panel-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    20% {
        transform: translatey(-70px);
    }
    60% {
        transform: translateY(25px);
    }
}
#trampoline section.help {
    width: 100%;
    height: 100%;
    position: fixed;
    transform: translate3d(0, 100%, 0);
    z-index: 3;
    transition: transform 0.2s ease-out;
    overflow: hidden;
    background-color: #ffdf00;
    pointer-events: none;
}
#trampoline section.help .help-wrapper {
    background-color: #ffdf00;
    height: 100%;
}
#trampoline section.help.active {
    pointer-events: all;
    transform: translate3d(0, 0, 0);
    background: linear-gradient(to bottom, transparent, transparent 80px, #ffdf00 81px, #ffdf00);
}
#trampoline section.help.active .help-wrapper {
    -webkit-animation-name: panel-bounce;
    animation-name: panel-bounce;
    height: 100%;
    animation-delay: 0.15s;
    animation-duration: 0.4s;
}
#trampoline section.help nav {
    z-index: 4;
    background-color: #f5bc19;
    height: 50px;
    width: 100%;
    line-height: 50px;
}
#trampoline section.help nav.sticky {
    position: fixed;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}
#trampoline section.help nav .pbskids-logo {
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 50%;
    margin: -8px 8px;
    vertical-align: baseline;
    background-size: 100% !important;
    background: url(/trampoline/dist/img/icons/PBS_KIDS_circle.svg),
        url(/trampoline/dist/img/icons/PBS_KIDS_circle.png), no-repeat;
}
#trampoline section.help nav h1 {
    display: inline-block;
    margin-left: 15px;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    font-family: PBS_KIDS_Headline_Bold;
    letter-spacing: 0.05em;
}
#trampoline section.help nav .close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    right: 0;
    vertical-align: middle;
    margin: 6px 10px;
    border: none;
    border-radius: 50%;
    background-size: 100% !important;
    background-image: url(/trampoline/dist/img/icons/icon-close.svg), url(/trampoline/dist/img/icons/icon-close.png);
}
#trampoline section.help nav .close:hover {
    cursor: pointer;
}
#trampoline section.help .content-wrapper {
    overflow-y: scroll;
    height: calc(100% - 50px);
}
#trampoline section.help .content-wrapper .content {
    width: calc(100% - 50px);
    margin: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 15px;
}
#trampoline section.help .content-wrapper .content .panel {
    background: #fff;
    max-width: 750px;
    margin: 15px auto 0;
    padding: 20px;
}
#trampoline section.help .content-wrapper .content .panel:first-child {
    margin-top: 0;
}
#trampoline section.help .content-wrapper .content .panel h1 {
    color: #802a84;
    font-size: 36px;
    font-family: PBS_Kids_Headline;
}
#trampoline section.help .content-wrapper .content .panel article h2 {
    color: #10bab9;
    font-size: 18px;
    font-family: Colfax-Medium;
    margin: 1em 0 0.4em;
}
#trampoline section.help .content-wrapper .content .panel article p {
    color: #000;
    font-family: Colfax-Regular;
    line-height: 1.45em;
    font-size: 16px;
    margin-bottom: 1em;
}
#studio {
    background-color: #0869b2;
}
#studio #main {
    display: flex;
}
#studio #main #menu .button {
    width: 100%;
    padding: 10px;
}
#studio #main #menu a.button {
    font-size: 36px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
#studio #main #menu a.button p {
    cursor: pointer;
}
#studio #main #view {
    flex-shrink: 0;
    width: 884px;
    height: 519px;
    border: #fff;
    border-style: solid;
    border-width: 5px;
}
#studio #main #view canvas {
    left: 0;
}
#studio #tools-bar {
    height: 190px;
    display: flex;
}
#studio #tools-bar .scroll-menu,
#studio #tools-bar .tools-menu {
    display: flex;
    width: 100%;
}
#studio #tools-bar .scroll-menu .brush-sizes,
#studio #tools-bar .tools-menu .brush-sizes {
    width: 205px;
    margin: 10px;
}
#studio #tools-bar .scroll-menu .brush-sizes p,
#studio #tools-bar .tools-menu .brush-sizes p {
    width: 100%;
    text-align: left;
    padding-left: 20px;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #fff;
    font-size: 25px;
    margin-bottom: -8px;
}
#studio #tools-bar .scroll-menu .brush-sizes .size-circle,
#studio #tools-bar .tools-menu .brush-sizes .size-circle {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #004966;
    position: relative;
}
#studio #tools-bar .scroll-menu .brush-sizes .circle-5,
#studio #tools-bar .tools-menu .brush-sizes .circle-5 {
    width: 5px;
    height: 5px;
    left: 12px;
}
#studio #tools-bar .scroll-menu .brush-sizes .circle-10,
#studio #tools-bar .tools-menu .brush-sizes .circle-10 {
    width: 10px;
    height: 10px;
    left: 9px;
}
#studio #tools-bar .scroll-menu .brush-sizes .circle-15,
#studio #tools-bar .tools-menu .brush-sizes .circle-15 {
    width: 15px;
    height: 15px;
    left: 7px;
}
#studio #tools-bar .scroll-menu .brush-sizes .circle-20,
#studio #tools-bar .tools-menu .brush-sizes .circle-20 {
    width: 20px;
    height: 20px;
    left: 4px;
}
#studio #tools-bar .scroll-menu .brush-sizes .circle-25,
#studio #tools-bar .tools-menu .brush-sizes .circle-25 {
    width: 25px;
    height: 25px;
    left: 1px;
}
#studio #tools-bar .scroll-menu .brush-sizes .circle-30,
#studio #tools-bar .tools-menu .brush-sizes .circle-30 {
    width: 30px;
    height: 30px;
    left: -2px;
}
#studio #tools-bar .scroll-menu .brushs-container p,
#studio #tools-bar .tools-menu .brushs-container p {
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #fff;
    font-size: 25px;
    text-align: left;
    margin-bottom: 4px;
    margin-top: 6px;
}
#studio #tools-bar .scroll-menu .brushs-container .brushs,
#studio #tools-bar .tools-menu .brushs-container .brushs {
    width: 800px;
    display: -webkit-box;
    position: relative;
    height: 178px;
    background: #004966;
    top: -6px;
}
#studio #tools-bar .scroll-menu .brushs-container .brushs .brush,
#studio #tools-bar .tools-menu .brushs-container .brushs .brush {
    margin-left: 17px;
    position: relative;
    bottom: -34px;
    cursor: pointer;
    transition: all ease 0.5s;
}
#studio #tools-bar .scroll-menu .brushs-container .brushs .brush:hover,
#studio #tools-bar .tools-menu .brushs-container .brushs .brush:hover {
    bottom: -24px;
    opacity: 1;
}
#studio #tools-bar .colors {
    border-radius: 50%;
    width: 376px;
    height: 376px;
    background: #4dd5f9;
    left: 656px;
    bottom: -215px;
    position: absolute;
    border-width: 6px;
    border-color: #004966;
    border-style: solid;
}
#studio #tools-bar .colors .color-selected {
    border: #004966;
    border-width: 4px;
    border-style: solid;
}
#studio #tools-bar .colors .colors-center {
    border-radius: 50%;
    width: 190px;
    height: 190px;
    background: #004966;
    left: 85px;
    top: 80px;
    position: absolute;
}
#studio #tools-bar .colors .color {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: #00f;
    position: absolute;
    cursor: pointer;
}
#studio .scroll-menu {
    height: 150px;
    margin-top: 40px;
}
#studio .btn {
    margin: 3px;
}
#studio .svg svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.45);
    fill: inherit;
}
#studio .svg-fill svg {
    top: 19px;
    left: 24px;
}
#studio .svg-marker svg {
    top: 2.5px;
    left: 13px;
}
#studio .svg-spray svg {
    top: 25px;
    left: 14px;
}
#studio .svg-pencil svg {
    top: 6px;
    left: 5px;
}
#studio .button {
    border: 0;
    border-radius: 0;
    width: 100px;
    height: 74.2px;
    background-color: #4dd5f9;
    border-bottom: 6px solid #004966;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #fff;
}
#studio .button:hover {
    margin-top: 6px;
    border-bottom: none;
    height: 68.2px !important;
}
#studio .button.button-selected {
    background-color: #f41971;
    border-bottom-color: #a00e56;
}
#studio .size-button {
    border: 0;
    border-radius: 0;
    height: 67px;
    background-color: #4dd5f9;
    border-bottom: 6px solid #004966;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #fff;
    width: 52px;
}
#studio .size-button:hover {
    margin-top: 6px;
    border-bottom: none;
    height: 61px !important;
}
#studio .size-button.button-selected {
    background-color: #004966;
    margin-top: 6px;
    border-bottom: none;
    height: 61px !important;
}
#studio .size-button.button-selected div {
    background: #ff0 !important;
}
#studio .alpha {
    opacity: 0.5;
}
#studio .menu-background,
#studio .menu-brush,
#studio .menu-car,
#studio .menu-fire,
#studio .menu-undo,
#studio .menu-wheel {
    display: inline-block;
    background: url(/images/kreator/menu_icons.png) no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    text-align: left;
}
#studio .menu-background {
    background-position: 0 0;
    width: 63px;
    height: 29px;
}
#studio .menu-car {
    background-position: 0 -29px;
    width: 50px;
    height: 28px;
}
#studio .menu-fire {
    background-position: 0 -57px;
    width: 38px;
    height: 34px;
}
#studio .menu-brush {
    background-position: 0 -91px;
    width: 34px;
    height: 33px;
}
#studio .menu-wheel {
    background-position: 0 -124px;
    width: 32px;
    height: 32px;
}
#studio .menu-undo {
    background-position: -32px -124px;
    width: 31px;
    height: 28px;
}
#studio .brush-eraser,
#studio .brush-fill,
#studio .brush-marker,
#studio .brush-pencil,
#studio .brush-spray {
    display: inline-block;
    background: url(/images/kreator/brush_icons.png) no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    text-align: left;
}
#studio .brush-fill {
    background-position: 0 0;
    width: 97px;
    height: 87px;
}
#studio .brush-spray {
    background-position: 0 -87px;
    width: 91px;
    height: 128px;
}
#studio .brush-eraser {
    background-position: 0 -215px;
    width: 86px;
    height: 109px;
}
#studio .brush-marker {
    background-position: 0 -324px;
    width: 34px;
    height: 122px;
}
#studio .brush-pencil {
    background-position: -34px -324px;
    width: 28px;
    height: 126px;
}
#studio .colors-left {
    border: 0;
    border-radius: 9em 0 0;
    background-color: #ffb000;
    border-bottom: 6px solid #b75d04;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #fff;
    cursor: pointer;
    width: 87px;
    height: 89px;
    position: absolute;
    left: 90px;
    top: 85px;
    border-bottom-width: 25px;
}
#studio .colors-left:hover {
    margin-top: 6px;
    border-bottom: none;
    height: 84px !important;
}
#studio .colors-left.button-selected {
    background-color: #f41971;
    border-bottom-color: #a00e56;
}
#studio .colors-right {
    border: 0;
    border-radius: 0 9em 0 0;
    background-color: #ffb000;
    border-bottom: 6px solid #b75d04;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #fff;
    cursor: pointer;
    width: 87px;
    height: 89px;
    position: absolute;
    left: 183px;
    top: 85px;
    border-bottom-width: 25px;
}
#studio .colors-right:hover {
    margin-top: 6px;
    border-bottom: none;
    height: 84px !important;
}
#studio .colors-right.button-selected {
    background-color: #f41971;
    border-bottom-color: #a00e56;
}
#studio .colors-right-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
    left: 25px;
    top: 30px;
    position: relative;
}
#studio .colors-left-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #fff transparent transparent;
    left: 45px;
    top: 30px;
    position: relative;
}
#studio .left-button {
    border: 0;
    border-radius: 0;
    width: 100px;
    height: 150px;
    background-color: #ffb000;
    border-bottom: 6px solid #b75d04;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #fff;
}
#studio .left-button:hover {
    margin-top: 6px;
    border-bottom: none;
    height: 144px !important;
}
#studio .left-button.button-selected {
    background-color: #f41971;
    border-bottom-color: #a00e56;
}
#studio .left-button .left-button-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 30px 0;
    border-color: transparent #fff transparent transparent;
    left: 23px;
    top: 45px;
    position: relative;
}
#studio .right-button {
    border: 0;
    border-radius: 0;
    width: 100px;
    height: 150px;
    background-color: #ffb000;
    border-bottom: 6px solid #b75d04;
    font-family: pbs_kids_headlinebold, sans-serif;
    color: #fff;
}
#studio .right-button:hover {
    margin-top: 6px;
    border-bottom: none;
    height: 144px !important;
}
#studio .right-button.button-selected {
    background-color: #f41971;
    border-bottom-color: #a00e56;
}
#studio .right-button .right-button-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 30px 30px;
    border-color: transparent transparent transparent #fff;
    left: 30px;
    top: 45px;
    position: relative;
}
#studio .stickers {
    background: #004966;
    padding: 10px;
    width: 100%;
}
#studio .stickers img {
    margin: 0 -16px -16px;
    width: 100%;
}
#studio .sticker {
    cursor: pointer;
    width: 119px;
    height: 119px;
    display: inline-block;
    float: left;
}
#studio .sticker .preloader {
    position: relative;
}
#studio .selected-sticker {
    opacity: 0.5;
}
#room-editor-view {
    position: absolute;
    background-color: transparent;
    pointer-events: none;
}
#room-editor-view .toggle-mode-btn {
    background-image: url(/images/user_room/edit.png);
    width: 85px;
    height: 85px;
    position: absolute;
    top: 21px;
    left: 27px;
    pointer-events: auto;
}
#room-editor-view .title-bar {
    background-color: #992da5;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    position: absolute;
    pointer-events: auto;
}
#room-editor-view .product-item img,
#room-editor-view .product-item.full-size-img img {
    width: 150px;
}
#room-editor-view .invalid {
    opacity: 0.5;
}
#room-editor-view .redeem-button {
    height: 54px;
    margin: 20px;
    position: relative;
}
#room-editor-view .inventory-holder {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 60px;
}
#room-editor-view .navigationRightArrow {
    position: absolute;
    bottom: 10px;
    left: 200px;
    width: 150px;
    height: 136px;
    background: url(/images/user_room/nav_arrow.png);
    pointer-events: auto;
}
#room-editor-view .navigationLeftArrow {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 150px;
    height: 136px;
    background: url(/images/user_room/nav_arrow.png);
    transform: scaleX(-1);
    pointer-events: auto;
}
#room-editor-view .avatar_editor_inventory {
    display: inline-block;
    position: relative;
    pointer-events: auto;
    width: 330px;
    height: auto;
    background-color: #a2cccc;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-search {
    width: 295px;
    margin: 10px auto 0;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-search input {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    border: 3px solid #669da1;
    background: #fff;
    color: #216c65;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 16px;
    outline: none;
    padding: 3px 8px;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products {
    width: 295px;
    height: 430px;
    margin: 5px auto;
    overflow: hidden;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products .product-new {
    top: 25px;
    left: 25px;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products .recycle {
    width: 88px;
    height: 18px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -44px;
    text-align: center;
    color: #fff;
    background-color: #df3f25;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    font-family: pbs_kids_headlinebold, sans-serif;
    cursor: pointer;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div {
    position: relative;
    float: left;
    background-color: #fff;
    -webkit-box-shadow: compact(#a2cccc 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#a2cccc 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#a2cccc 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    width: 138px;
    height: 138px;
    margin: 0 15px 8px 0;
    cursor: pointer;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div .product_img {
    position: absolute;
    top: 50%;
    left: 10px;
    width: calc(100% - 20px);
    max-height: 100%;
    transform: translateY(-50%);
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div.catalog-product .product_img:not(.hidden_product) {
    opacity: 0.6;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div .kartie-product {
    height: calc(100% - 20px);
    top: 10px;
    transform: translateX(-50%);
    width: auto;
    max-width: 100%;
    left: 50%;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div .hidden_product {
    opacity: 0.01;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div .avatar-item-info-button {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 8px;
    background: #139ce6;
    color: #fff;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 18px;
    line-height: 20px;
    cursor: pointer;
    z-index: 5;
    box-sizing: border-box;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div .avatar-item-info-button:hover {
    background: #0b7fc1;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div:nth-child(even) {
    margin-right: 0;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div .product_qnt {
    width: 26px;
    height: 23px;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-family: pbs_kids_headlinebold, sans-serif;
    background-color: #80db16;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products div .preloader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-products .drag-product-div {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-catalog-prompt {
    position: absolute;
    top: 72px;
    left: 18px;
    width: 295px;
    height: 430px;
    box-sizing: border-box;
    padding: 142px 18px 0;
    background: rgba(162, 204, 204, 0.94);
    text-align: center;
    z-index: 6;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-catalog-prompt p {
    margin: 0 0 14px;
    color: #216c65;
    font-family: pbs_kids_headlinebold, sans-serif;
    font-size: 18px;
}
#room-editor-view .avatar_editor_inventory .avatar-editor-catalog-prompt .button-ok {
    width: 225px;
    font-size: 19px;
}
#room-editor-view .avatar_editor_inventory .paginationArrow {
    display: block;
    width: 115px;
    height: 17px;
    margin: 0 auto 12px;
    background: url(/images/avatar_editor/paginate_arrow.png) no-repeat;
    opacity: 0.2;
}
#room-editor-view .avatar_editor_inventory .paginationArrow:not([disabled]) {
    opacity: 1;
    cursor: pointer;
}
#room-editor-view .avatar_editor_inventory .upArrow {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-top: 14px;
}
#room-editor-view .categories {
    display: inline-block;
    vertical-align: top;
    pointer-events: auto;
}
#room-editor-view .categories .category-option {
    width: 100%;
    display: block;
    text-align: right;
    position: relative;
    background-color: #669da1;
    -moz-border-radius-topleft: 30px;
    -webkit-border-top-left-radius: 30px;
    border-top-left-radius: 30px;
    -moz-border-radius-bottomleft: 30px;
    -webkit-border-bottom-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 42px;
    padding: 6px;
}
#room-editor-view .categories .category-option.active {
    background-color: #a2cccc;
}
#room-editor-view .categories .category-option.active .icon-holder {
    background-color: #71afb3;
}
#room-editor-view .categories .category-option .icon-holder {
    width: 31px;
    height: 31px;
    border-radius: 15px;
}
#room-editor-view .categories .category-option .icon-holder .icon {
    position: absolute;
    width: 31px;
    height: 31px;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -15px;
    background-size: cover;
}
#room-editor-view .categories .category-option .icon-holder .furniture {
    background-image: url(/images/user_room/furniture.png);
}
#room-editor-view .categories .category-option .icon-holder .rugs {
    background-image: url(/images/user_room/rug.png);
}
#room-editor-view .categories .category-option .icon-holder .posters {
    background-image: url(/images/user_room/poster.png);
}
#room-editor-view .categories .category-option .icon-holder .floor {
    background-image: url(/images/user_room/floor.png);
}
#room-editor-view .categories .category-option .icon-holder .lamps {
    background-image: url(/images/user_room/lamps.png);
}
#room-editor-view .categories .category-option .icon-holder .plants {
    background-image: url(/images/user_room/plants.png);
}
#room-editor-view .categories .category-option .icon-holder .games {
    background-image: url(/images/user_room/games.png);
}
#room-editor-view .categories .category-option .icon-holder .artifacts {
    background-image: url(/images/user_room/artifacts.png);
}
#room-editor-view .categories .category-option .icon-holder .weird {
    background-image: url(/images/user_room/weird.png);
}
#room-editor-view .drag-preview {
    pointer-events: auto;
    position: absolute !important;
}
#room-editor-view [ng-drop].drag-enter {
    background-color: #e04b00;
}
#room-editor-view [ng-drop].drag-enter .bin {
    background: url(/images/user_room/bin_hover.png);
    width: 60px;
    height: 50px;
}
#room-editor-view .delete-drop {
    position: relative;
    width: 293px;
    height: 70px;
    background-color: #659da1;
    margin: 5px auto auto;
}
#room-editor-view .delete-drop .bin {
    width: 46px;
    height: 46px;
    margin: auto;
    background: url(/images/user_room/bin.png);
}
#blueprint {
    position: absolute;
    background: #443d47;
    width: 100%;
    height: 100%;
}
#blueprint .blueprint-content {
    position: absolute;
    width: 100%;
    top: 74px;
    bottom: 74px;
}
#blueprint-select {
    font-family: pbs_kids_headlineregular;
    color: #fff;
}
#blueprint-select .blueprint-title {
    text-transform: uppercase;
    width: 100%;
    font-size: 55px;
}
#blueprint-select .large-close-button {
    position: absolute;
    right: 30px;
}
#blueprint-select .blueprint-view {
    height: 390px;
}
#blueprint-select .blueprint-view .blueprint-scroller {
    position: absolute;
    top: 0;
}
#blueprint-select .blueprint-view .blueprint-item {
    position: absolute;
    top: 86px;
    height: 390px;
    width: 768px;
    background-color: #23a6e8;
}
#blueprint-select .blueprint-view .item-0 {
    left: 0;
}
#blueprint-select .blueprint-view .item-1 {
    left: 810px;
}
#blueprint-select .blueprint-view .item-2 {
    left: 1620px;
}
#blueprint-select .blueprint-view .blueprint-resource-container {
    display: inline-block;
    height: 100%;
    width: 266px;
    background-color: #258ee5;
    font-size: 55px;
    vertical-align: top;
}
#blueprint-select .blueprint-view .blueprint-resource-view {
    height: inherit;
    width: inherit;
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-header {
    text-transform: uppercase;
    font-size: 24px;
    padding-top: 21px;
    margin-bottom: 28px;
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 6px 28px;
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-available,
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-unavailable {
    width: 40px;
    height: 40px;
    margin: 0 6px;
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-available {
    background-color: #7ad313;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    display: block;
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-available i {
    position: relative;
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-unavailable {
    background-color: #1e72c6;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-icon {
    position: relative;
    width: 83px;
    height: 83px;
    margin: 0 6px;
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-icon i {
    display: block;
    width: 80px;
    height: 80px;
    background: url(/images/resources/resources_med.png);
}
#blueprint-select .blueprint-view .blueprint-resource-view .blueprint-resource-quantity {
    font-size: 35px;
    text-align: left;
}
#blueprint-select .blueprint-view .blueprint-preview-container {
    height: inherit;
    width: 502px;
    display: inline-block;
}
#blueprint-select .blueprint-view .blueprint-preview-container .blueprint-preview-view {
    height: inherit;
    width: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
#blueprint-select .blueprint-view .blueprint-preview-container .blueprint-preview-view img {
    display: block;
}
#blueprint-select .nav-buttons {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 31px;
}
#blueprint-select .nav-buttons button {
    width: 300px;
    height: 105px;
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #9043c9;
    border-bottom: 14px solid #492170;
    margin: 0 10px;
}
#blueprint-select .nav-buttons button:focus {
    color: #fff;
}
#blueprint-select .nav-buttons button:hover:enabled {
    margin-top: 14px;
    height: 91px;
    border-bottom: none;
    color: #fff;
}
#blueprint-select .nav-buttons button:disabled {
    background-color: #63407b;
    color: #8f8b91;
    border-color: #463258;
}
#blueprint-select .nav-buttons .small-button {
    width: 120px;
}
#blueprint-build .large-close-button {
    position: absolute;
    right: 30px;
}
#blueprint-build .blueprint {
    position: relative;
    left: calc((100% - 830px) / 2);
    width: 830px;
    height: 620px;
    background-color: #23a6e8;
    overflow: hidden;
    vertical-align: top;
}
#blueprint-build .blueprint:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 87px 87px 0;
    border-style: solid;
    border-color: #443d47 #443d47 #3ecdf9 #3ecdf9;
    background-color: #3ecdf9;
}
#blueprint-build .blueprint #blueprint-materials-container {
    width: 316px;
    height: inherit;
    background-color: #258ee5;
    padding: 18px;
    display: inline-block;
}
#blueprint-build .blueprint #blueprint-materials-container:before {
    content: "";
    position: absolute;
    left: 316px;
    top: 286px;
    border-top: 27px solid transparent;
    border-bottom: 27px solid transparent;
    border-left: 27px solid #258ee5;
}
#blueprint-build .blueprint #blueprint-materials-container .blueprint-materials {
    position: relative;
    height: 100%;
    background-size: 42px 42px;
    background-image: linear-gradient(to right, #23a6e8 2px, transparent 2px), linear-gradient(to bottom, #23a6e8 2px, transparent 2px);
    background-position: -8px -2px;
}
#blueprint-build .blueprint #blueprint-materials-container .blueprint-materials .blueprint-piece {
    position: absolute;
    opacity: 0;
}
#blueprint-build .blueprint #blueprint-materials-container .blueprint-materials .blueprint-piece.dragging {
    opacity: 0;
}
#blueprint-build .blueprint #blueprint-materials-container .blueprint-materials .blueprint-piece img {
    display: inline-block;
    pointer-events: none;
}
#blueprint-build .blueprint #blueprint-materials-container .blueprint-materials .blueprint-victory {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: inherit;
    width: inherit;
}
#blueprint-build .blueprint #blueprint-materials-container .blueprint-materials .blueprint-victory .blueprint-big-tick {
    display: block;
    width: 249px;
    height: 249px;
    background: url(/images/blueprints/big_tick.png) center;
}
#blueprint-build .blueprint #blueprint-materials-container .blueprint-materials .blueprint-victory p {
    text-transform: uppercase;
    font-family: pbs_kids_headlineregular;
    color: #fff;
    font-size: 70px;
}
#blueprint-build .blueprint #blueprint-wireframe-container {
    width: 514px;
    height: inherit;
    display: inline-block;
    vertical-align: top;
}
#blueprint-build .blueprint #blueprint-wireframe-container .blueprint-wireframe-image {
    position: relative;
    height: 514px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#blueprint-build .blueprint #blueprint-wireframe-container .blueprint-wireframe-image img {
    position: absolute;
    display: block;
}
#blueprint-build .blueprint #blueprint-wireframe-container [ng-drop].drag-enter {
    background-color: transparent;
}
#blueprint-build .blueprint #blueprint-wireframe-container .blueprint-placed-piece {
    position: absolute;
}
#blueprint-build .blueprint #blueprint-wireframe-container #blueprint-name .blueprint-title {
    text-transform: uppercase;
    font-family: pbs_kids_headlineregular;
    font-size: 40px;
    color: #fff;
}
#blueprint-build .red-circle {
    position: absolute;
    border: 2px solid red;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: inline-block;
}
.clanky-caverns-popup {
    font-family: pbs_kids_headlineregular;
    color: #fff;
    background: url(/images/user_room/background.png) center/cover no-repeat;
}
.clanky-caverns-popup .title-bar {
    background-color: #992da5;
    -webkit-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000 4px 4px 0, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    z-index: 1;
}
.clanky-caverns-popup .popup-button {
    position: absolute;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 105px;
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #9043c9;
    border-bottom: 14px solid #492170;
}
.clanky-caverns-popup .popup-button:focus {
    color: #fff;
}
.clanky-caverns-popup .popup-button:hover:enabled {
    margin-top: 14px;
    height: 91px;
    border-bottom: none;
    color: #fff;
}
.clanky-caverns-popup .popup-button:disabled {
    background-color: #63407b;
    color: #8f8b91;
    border-color: #463258;
}
#image_load_debug {
    background: #d3d3d3;
}
#image_load_debug #accordion {
    height: calc(100% - 60px);
    overflow: auto;
}
#image_load_debug label {
    margin-right: 10px;
}
#image_load_debug p {
    text-align: left;
    margin: 0;
}
#image_load_debug a {
    float: left;
}
#image_load_debug ul {
    list-style-type: disc;
    padding: inherit;
}
#image_load_debug table,
#image_load_debug td,
#image_load_debug th {
    border: 1px solid #000;
    padding: 5px;
    text-align: center;
}
#image_load_debug table {
    width: 100%;
}
#image_load_debug table.load-information {
    margin-bottom: 15px;
}
#image_load_debug table .valid {
    background: #66cc91;
}
#image_load_debug table .invalid {
    background: #ed4337;
}
#image_load_debug td,
#image_load_debug th {
    width: 200px;
}
#image_load_debug td.url,
#image_load_debug th.url {
    width: auto;
}
#image_load_debug .panel-heading,
#image_load_debug .panel-heading p {
    cursor: pointer;
}
#image_load_debug .title {
    font-size: 20px;
    font-weight: 700;
}
#image_load_debug .product-holder {
    margin-top: 15px;
}
#image_load_debug .product-holder img {
    height: 50px;
    margin-right: 10px;
    float: left;
}
#image_load_debug .no-padding {
    padding: 0;
}
#image_load_debug .margin-left-right {
    margin-left: 15px;
    margin-right: 15px;
}
