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

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(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: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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; }

/*!
 * Bootstrap v3.0.0
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
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:focus {
  outline: thin dotted; }

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

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

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

b,
strong {
  font-weight: bold; }

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"; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 0; }

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

legend {
  border: 0;
  padding: 0; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button,
input {
  line-height: normal; }

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;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

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

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: transparent !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: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 2cm .5cm; }
  p,
  h2,
  h3 {
    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 th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent; }

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

input,
button,
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:hover, a:focus {
    color: #2a6496;
    text-decoration: underline; }
  a:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    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 #eeeeee; }

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

.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: normal;
    line-height: 1;
    color: #999999; }

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, .h3 small,
h4 small, .h4 small {
  font-size: 14px; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none; }

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

dl {
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.428571429; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; }
    .dl-horizontal dd:before, .dl-horizontal dd:after {
      content: " ";
      /* 1 */
      display: table;
      /* 2 */ }
    .dl-horizontal dd:after {
      clear: both; } }

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

abbr.initialism {
  font-size: 90%;
  text-transform: uppercase; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee; }
  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: #999999; }
    blockquote small:before {
      content: '\2014 \00A0'; }
  blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eeeeee;
    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'; }

q:before,
q:after,
blockquote:before,
blockquote:after {
  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: #333333;
  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:before, .container:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .container:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .row:after {
    clear: both; }

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11 {
  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-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11 {
    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-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11 {
    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-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11 {
    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 thead > tr > th,
  .table thead > tr > td,
  .table tbody > tr > th,
  .table tbody > tr > td,
  .table tfoot > tr > th,
  .table tfoot > tr > td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table caption + thead tr:first-child th, .table caption + thead tr:first-child td,
  .table colgroup + thead tr:first-child th,
  .table colgroup + thead tr:first-child td,
  .table thead:first-child tr:first-child th,
  .table thead:first-child tr:first-child td {
    border-top: 0; }
  .table tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #555; }

.table-condensed thead > tr > th,
.table-condensed thead > tr > td,
.table-condensed tbody > tr > th,
.table-condensed tbody > tr > td,
.table-condensed tfoot > tr > th,
.table-condensed tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5; }

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

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

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td {
  background-color: #d0e9c6;
  border-color: #c9e2b3; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
  border-color: #eed3d7; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td {
  background-color: #ebcccc;
  border-color: #e6c1c7; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
  border-color: #fbeed5; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td {
  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 > thead > tr > th,
      .table-responsive > .table > thead > tr > td,
      .table-responsive > .table > tbody > tr > th,
      .table-responsive > .table > tbody > tr > td,
      .table-responsive > .table > tfoot > tr > th,
      .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap; }
    .table-responsive > .table-bordered {
      border: 0; }
      .table-responsive > .table-bordered > thead > tr > th:first-child,
      .table-responsive > .table-bordered > thead > tr > td:first-child,
      .table-responsive > .table-bordered > tbody > tr > th:first-child,
      .table-responsive > .table-bordered > tbody > tr > td:first-child,
      .table-responsive > .table-bordered > tfoot > tr > th:first-child,
      .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0; }
      .table-responsive > .table-bordered > thead > tr > th:last-child,
      .table-responsive > .table-bordered > thead > tr > td:last-child,
      .table-responsive > .table-bordered > tbody > tr > th:last-child,
      .table-responsive > .table-bordered > tbody > tr > td:last-child,
      .table-responsive > .table-bordered > tfoot > tr > th:last-child,
      .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0; }
      .table-responsive > .table-bordered > thead > tr:last-child > th,
      .table-responsive > .table-bordered > thead > tr:last-child > td,
      .table-responsive > .table-bordered > tbody > tr:last-child > th,
      .table-responsive > .table-bordered > tbody > tr:last-child > td,
      .table-responsive > .table-bordered > tfoot > tr:last-child > th,
      .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        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: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  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="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  height: auto; }

.form-control:-moz-placeholder {
  color: #999999; }

.form-control::-moz-placeholder {
  color: #999999; }

.form-control:-ms-input-placeholder {
  color: #999999; }

.form-control::-webkit-input-placeholder {
  color: #999999; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  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: #eeeeee; }

textarea.form-control {
  height: auto; }

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

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

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px; }

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

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

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

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

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

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

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn {
  height: auto; }

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

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 45px;
  line-height: 45px; }

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn {
  height: auto; }

.has-warning .help-block,
.has-warning .control-label {
  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 .help-block,
.has-error .control-label {
  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 .help-block,
.has-success .control-label {
  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 .radio, .navbar-form .radio,
  .form-inline .checkbox, .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0; }
  .form-inline .radio input[type="radio"], .navbar-form .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"], .navbar-form .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0; } }

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

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .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: normal;
  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: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus {
    color: #333;
    text-decoration: none;
    outline: none; }
  .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:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
    color: #333;
    background-color: #ebebeb;
    border-color: #adadad; }
  .open .btn-default.dropdown-toggle {
    color: #333;
    background-color: #ebebeb;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active {
    background-image: none; }
  .open .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active,
  fieldset[disabled] .btn-default,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default:active,
  fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc; }

.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
    color: #fff;
    background-color: #3276b1;
    border-color: #285e8e; }
  .open .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #3276b1;
    border-color: #285e8e; }
  .btn-primary:active, .btn-primary.active {
    background-image: none; }
  .open .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active,
  fieldset[disabled] .btn-primary,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary:active,
  fieldset[disabled] .btn-primary.active {
    background-color: #428bca;
    border-color: #357ebd; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
    color: #fff;
    background-color: #ed9c28;
    border-color: #d58512; }
  .open .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ed9c28;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active {
    background-image: none; }
  .open .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active,
  fieldset[disabled] .btn-warning,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning:active,
  fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
    color: #fff;
    background-color: #d2322d;
    border-color: #ac2925; }
  .open .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #d2322d;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active {
    background-image: none; }
  .open .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active,
  fieldset[disabled] .btn-danger,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger:active,
  fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
    color: #fff;
    background-color: #47a447;
    border-color: #398439; }
  .open .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #47a447;
    border-color: #398439; }
  .btn-success:active, .btn-success.active {
    background-image: none; }
  .open .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active,
  fieldset[disabled] .btn-success,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success:active,
  fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
    color: #fff;
    background-color: #39b3d7;
    border-color: #269abc; }
  .open .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #39b3d7;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active {
    background-image: none; }
  .open .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active,
  fieldset[disabled] .btn-info,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info:active,
  fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da; }

.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #2a6496;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #999999;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn,
.btn-xs,
.btn-group-xs > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px; }

.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 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: normal;
  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: normal;
    line-height: 1.428571429;
    color: #333333;
    white-space: nowrap; }

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

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

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

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

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

.open > a {
  outline: 0; }

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

.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-primary .caret,
.btn-success .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret {
  border-top-color: #fff; }

.dropup .btn-default .caret {
  border-bottom-color: #333; }

.dropup .btn-primary .caret,
.dropup .btn-success .caret,
.dropup .btn-warning .caret,
.dropup .btn-danger .caret,
.dropup .btn-info .caret {
  border-bottom-color: #fff; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .btn.active {
      z-index: 2; }
    .btn-group > .btn:focus,
    .btn-group-vertical > .btn:focus {
      outline: none; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.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 > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .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-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .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:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.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="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  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-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  background-color: #eeeeee;
  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="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .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:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  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:hover, .input-group-btn > .btn:active {
    z-index: 2; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .nav:before, .nav:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: #999999; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #999999;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    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: #eeeeee #eeeeee #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #555555;
      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:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #428bca; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified, .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:before, .tabbable:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.tabbable:after {
  clear: both; }

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none; }

.tab-content > .active,
.pill-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:before, .navbar:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.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:before, .navbar-collapse:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .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-header,
.container > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse {
      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-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      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 15px;
  font-size: 18px;
  line-height: 20px; }
  .navbar-brand:hover, .navbar-brand:focus {
    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 > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

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

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }
  @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:hover, .navbar-default .navbar-brand:focus {
      color: #5e5e5e;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #ccc; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #e6e6e6; }
  .navbar-default .navbar-nav > .dropdown > a:hover .caret,
  .navbar-default .navbar-nav > .dropdown > a:focus .caret {
    border-top-color: #333;
    border-bottom-color: #333; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555; }
    .navbar-default .navbar-nav > .open > a .caret, .navbar-default .navbar-nav > .open > a:hover .caret, .navbar-default .navbar-nav > .open > a:focus .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:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #e7e7e7; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  .navbar-inverse .navbar-brand {
    color: #999999; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #999999; }
  .navbar-inverse .navbar-nav > li > a {
    color: #999999; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090909;
    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: #999999;
    border-bottom-color: #999999; }
  .navbar-inverse .navbar-nav > .open > a .caret, .navbar-inverse .navbar-nav > .open > a:hover .caret, .navbar-inverse .navbar-nav > .open > a:focus .caret {
    border-top-color: #fff;
    border-bottom-color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #999999; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  .navbar-inverse .navbar-link {
    color: #999999; }
    .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: #999999; }

.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:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    background-color: #eeeeee; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
    cursor: default; }
  .pagination > .disabled > span,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #999999;
    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:before, .pager:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .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:hover,
    .pager li > a:focus {
      text-decoration: none;
      background-color: #eeeeee; }
  .pager .next > a,
  .pager .next > span {
    float: right; }
  .pager .previous > a,
  .pager .previous > span {
    float: left; }
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: #999999;
    background-color: #fff;
    cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label[href]:hover, .label[href]:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer; }
  .label:empty {
    display: none; }

.label-default {
  background-color: #999999; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: gray; }

.label-primary {
  background-color: #428bca; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #3071a9; }

.label-success {
  background-color: #5cb85c; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #999999;
  border-radius: 10px; }
  .badge:empty {
    display: none; }

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

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

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

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

.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 200;
  line-height: 2.1428571435;
  color: inherit;
  background-color: #eeeeee; }
  .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:hover,
a.thumbnail:focus {
  border-color: #428bca; }

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

.thumbnail .caption {
  padding: 9px;
  color: #333333; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

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

.alert-success {
  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:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #428bca;
    border-color: #428bca; }
    .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading {
      color: inherit; }
    .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
      color: #e1edf7; }

a.list-group-item {
  color: #555; }
  a.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:hover, a.list-group-item:focus {
    text-decoration: none;
    background-color: #f5f5f5; }

.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:before, .panel-body:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .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: #333333;
    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: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

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

.modal-open {
  overflow: hidden; }
  .modal-open .navbar-fixed-top,
  .modal-open .navbar-fixed-bottom {
    margin-right: 15px; }

body.modal-open {
  margin-right: 15px; }

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  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 {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  padding: 10px;
  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: none; }

.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.428571429px; }

.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:before, .modal-footer:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .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: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover .arrow, .popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover .arrow {
  border-width: 11px; }

.popover .arrow:after {
  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 > img,
    .carousel-inner > .item > a > 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:hover, .carousel-control:focus {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    font-family: serif; }
  .carousel-control .icon-prev:before {
    content: '\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-prev,
  .carousel-control .icon-next {
    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:before, .clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.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-xs {
  display: none !important; }

tr.visible-xs {
  display: none !important; }

th.visible-xs,
td.visible-xs {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important; }
  tr.visible-xs.visible-sm {
    display: table-row !important; }
  th.visible-xs.visible-sm,
  td.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; }
  th.visible-xs.visible-md,
  td.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; }
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important; } }

.visible-sm {
  display: none !important; }

tr.visible-sm {
  display: none !important; }

th.visible-sm,
td.visible-sm {
  display: none !important; }

@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important; }
  tr.visible-sm.visible-xs {
    display: table-row !important; }
  th.visible-sm.visible-xs,
  td.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; }
  th.visible-sm,
  td.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; }
  th.visible-sm.visible-md,
  td.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; }
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important; } }

.visible-md {
  display: none !important; }

tr.visible-md {
  display: none !important; }

th.visible-md,
td.visible-md {
  display: none !important; }

@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important; }
  tr.visible-md.visible-xs {
    display: table-row !important; }
  th.visible-md.visible-xs,
  td.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; }
  th.visible-md.visible-sm,
  td.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; }
  th.visible-md,
  td.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; }
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important; } }

.visible-lg {
  display: none !important; }

tr.visible-lg {
  display: none !important; }

th.visible-lg,
td.visible-lg {
  display: none !important; }

@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important; }
  tr.visible-lg.visible-xs {
    display: table-row !important; }
  th.visible-lg.visible-xs,
  td.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; }
  th.visible-lg.visible-sm,
  td.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; }
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

.hidden-xs {
  display: block !important; }

tr.hidden-xs {
  display: table-row !important; }

th.hidden-xs,
td.hidden-xs {
  display: table-cell !important; }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; }
  tr.hidden-xs {
    display: none !important; }
  th.hidden-xs,
  td.hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-xs.hidden-sm {
    display: none !important; }
  tr.hidden-xs.hidden-sm {
    display: none !important; }
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-xs.hidden-md {
    display: none !important; }
  tr.hidden-xs.hidden-md {
    display: none !important; }
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-xs.hidden-lg {
    display: none !important; }
  tr.hidden-xs.hidden-lg {
    display: none !important; }
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important; } }

.hidden-sm {
  display: block !important; }

tr.hidden-sm {
  display: table-row !important; }

th.hidden-sm,
td.hidden-sm {
  display: table-cell !important; }

@media (max-width: 767px) {
  .hidden-sm.hidden-xs {
    display: none !important; }
  tr.hidden-sm.hidden-xs {
    display: none !important; }
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; }
  tr.hidden-sm {
    display: none !important; }
  th.hidden-sm,
  td.hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-sm.hidden-md {
    display: none !important; }
  tr.hidden-sm.hidden-md {
    display: none !important; }
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-sm.hidden-lg {
    display: none !important; }
  tr.hidden-sm.hidden-lg {
    display: none !important; }
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important; } }

.hidden-md {
  display: block !important; }

tr.hidden-md {
  display: table-row !important; }

th.hidden-md,
td.hidden-md {
  display: table-cell !important; }

@media (max-width: 767px) {
  .hidden-md.hidden-xs {
    display: none !important; }
  tr.hidden-md.hidden-xs {
    display: none !important; }
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md.hidden-sm {
    display: none !important; }
  tr.hidden-md.hidden-sm {
    display: none !important; }
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; }
  tr.hidden-md {
    display: none !important; }
  th.hidden-md,
  td.hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-md.hidden-lg {
    display: none !important; }
  tr.hidden-md.hidden-lg {
    display: none !important; }
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important; } }

.hidden-lg {
  display: block !important; }

tr.hidden-lg {
  display: table-row !important; }

th.hidden-lg,
td.hidden-lg {
  display: table-cell !important; }

@media (max-width: 767px) {
  .hidden-lg.hidden-xs {
    display: none !important; }
  tr.hidden-lg.hidden-xs {
    display: none !important; }
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-lg.hidden-sm {
    display: none !important; }
  tr.hidden-lg.hidden-sm {
    display: none !important; }
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg.hidden-md {
    display: none !important; }
  tr.hidden-lg.hidden-md {
    display: none !important; }
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; }
  tr.hidden-lg {
    display: none !important; }
  th.hidden-lg,
  td.hidden-lg {
    display: none !important; } }

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

tr.visible-print {
  display: none !important; }

th.visible-print,
td.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; }
  .hidden-print {
    display: none !important; }
  tr.hidden-print {
    display: none !important; }
  th.hidden-print,
  td.hidden-print {
    display: none !important; } }

body {
  background-color: #15d1b1;
  font-family: 'colfax_regularregular'; }

h1, h2, h3, h4, h5 {
  font-family: 'pbs_kids_headlinebold',serif,sans-serif;
  color: white;
  cursor: default; }

p {
  cursor: default; }

a {
  cursor: pointer; }

ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }

html, body {
  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;
  /* These user-select properties are inheritable, used to prevent text selection */
  -webkit-user-select: none;
  -ms-user-select: none;
  /* From IE10 only */
  user-select: none;
  /* Not valid CSS yet, as of July 2012 */
  -webkit-user-drag: none;
  /* Prevents dragging of images/divs etc */
  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: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    border: none; }
    .modal-dialog .modal-content .modal-title {
      font-family: 'pbs_kids_headlinebold'; }

button {
  background-color: transparent;
  border: none;
  padding: 0;
  outline: none; }

.hidden {
  display: none; }

.kart-kingdom-logo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 560px;
  height: 374px;
  margin-left: -280px;
  background: url("images/layout/big_elements.png");
  background-position: 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;
      /* Adjusts for spacing */ }
  .ng-modal .backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    opacity: 0.8; }
  .ng-modal .dialog {
    background-color: #ffffff;
    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: #ffffff;
    -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: 0px auto;
  overflow: auto;
  background: url("images/layout/app_outer_background.jpg") repeat-x center; }

.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: 0px; }

body.pancake.cordova {
  padding: 0;
  margin: 0; }

.full-view {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
  text-align: center;
  will-change: transform; }
  .full-view .title-bar {
    height: 60px;
    width: 100%;
    background-color: #fe9b00;
    -webkit-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: compact(#4a7392 0px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 0px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 0px 4px 0px, false, false, false, false, false, false, false, false, false); }
    .full-view .title-bar .title-bar-icon {
      position: absolute;
      top: 5px;
      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: #ffffff; }
    .full-view .title-bar .title-bar-title {
      position: absolute;
      line-height: 60px;
      left: 80px;
      font-family: 'pbs_kids_headlinebold';
      font-size: 30px;
      color: #ffffff; }
    .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: white;
    display: table;
    font-size: larger; }
  #debug .section {
    position: relative;
    clear: both; }
  #debug .btn {
    background-image: none;
    background-color: #ffffff;
    color: #000000;
    margin-bottom: 5px;
    margin-left: 5px;
    display: inline-block;
    font-size: 12px;
    font-family: "arial";
    border: none;
    outline: none; }
    #debug .btn:hover {
      background-image: none;
      background-color: #333333;
      color: #ffffff; }

[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; }

.smallicon-sound-mute, .jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.sound-muted i, #options .options-button-sound.sound-muted i {
  background-position: -144px -24px; }

.smallicon-craft-locked, .jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-craft.crafting-locked i {
  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; }

.smallicon-sound-hover, .jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound:hover i, #options .options-button-sound:hover i {
  background-position: -120px -48px; }

.smallicon-sound-mute-hover, .jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump.btn-jump-sound.sound-muted:hover i, #options .options-button-sound.sound-muted:hover i {
  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-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-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-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: 0px 0px; }

.bigicon-enc-gadgets {
  background-position: -50px 0px; }

.bigicon-enc-powerups {
  background-position: -100px 0px; }

.bigicon-enc-parts {
  background-position: -150px 0px; }

.bigicon-enc-finds {
  background-position: 0px -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: normal;
  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: normal;
  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: normal;
  font-style: normal; }

/*

@font-face {
  font-family: 'pbs_kids_headline_condensedBd';
  src: url('fonts/pbsheadline_condensed_bold/pbskidsheadlinecondensed-bold-webfont.eot');
  src: url('fonts/pbsheadline_condensed_bold/pbskidsheadlinecondensed-bold-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/pbsheadline_condensed_bold/pbskidsheadlinecondensed-bold-webfont.woff') format('woff'),
  url('fonts/pbsheadline_condensed_bold/pbskidsheadlinecondensed-bold-webfont.ttf') format('truetype'),
  url('fonts/pbsheadline_condensed_bold/pbskidsheadlinecondensed-bold-webfont.svg#pbs_kids_headline_condensedBd') format('svg');
  font-weight: normal;
  font-style: normal;
}

*/
/*

@font-face {
  font-family: 'pbs_kids_headline_condensedRg';
  src: url('fonts/pbsheadline_condensed_regular/pbskidsheadlinecondensed-reg-webfont.eot');
  src: url('fonts/pbsheadline_condensed_regular/pbskidsheadlinecondensed-reg-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/pbsheadline_condensed_regular/pbskidsheadlinecondensed-reg-webfont.woff') format('woff'),
  url('fonts/pbsheadline_condensed_regular/pbskidsheadlinecondensed-reg-webfont.ttf') format('truetype'),
  url('fonts/pbsheadline_condensed_regular/pbskidsheadlinecondensed-reg-webfont.svg#pbs_kids_headline_condensedRg') format('svg');
  font-weight: normal;
  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: normal;
  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: normal;
  font-style: normal; }

/*

@font-face {
  font-family: 'colfaxblack_italic';
  src: url('fonts/colfax_black_italic/colfax-blackitalic-webfont.eot');
  src: url('fonts/colfax_black_italic/colfax-blackitalic-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/colfax_black_italic/colfax-blackitalic-webfont.woff') format('woff'),
  url('fonts/colfax_black_italic/colfax-blackitalic-webfont.ttf') format('truetype'),
  url('fonts/colfax_black_italic/colfax-blackitalic-webfont.svg#colfaxblack_italic') format('svg');
  font-weight: normal;
  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: normal;
  font-style: normal; }

/*

@font-face {
  font-family: 'colfaxbold_italic';
  src: url('fonts/colfax_bold_italic/colfax-bolditalic-webfont.eot');
  src: url('fonts/colfax_bold_italic/colfax-bolditalic-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/colfax_bold_italic/colfax-bolditalic-webfont.woff') format('woff'),
  url('fonts/colfax_bold_italic/colfax-bolditalic-webfont.ttf') format('truetype'),
  url('fonts/colfax_bold_italic/colfax-bolditalic-webfont.svg#colfaxbold_italic') format('svg');
  font-weight: normal;
  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: normal;
  font-style: normal; }

/*

@font-face {
  font-family: 'colfaxlight_italic';
  src: url('fonts/colfax_light_italic/colfax-lightitalic-webfont.eot');
  src: url('fonts/colfax_light_italic/colfax-lightitalic-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/colfax_light_italic/colfax-lightitalic-webfont.woff') format('woff'),
  url('fonts/colfax_light_italic/colfax-lightitalic-webfont.ttf') format('truetype'),
  url('fonts/colfax_light_italic/colfax-lightitalic-webfont.svg#colfaxlight_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}

*/
/*

@font-face {
  font-family: 'colfaxmedium_italic';
  src: url('fonts/colfax_medium_italic/colfax-mediumitalic-webfont.eot');
  src: url('fonts/colfax_medium_italic/colfax-mediumitalic-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/colfax_medium_italic/colfax-mediumitalic-webfont.woff') format('woff'),
  url('fonts/colfax_medium_italic/colfax-mediumitalic-webfont.ttf') format('truetype'),
  url('fonts/colfax_medium_italic/colfax-mediumitalic-webfont.svg#colfaxmedium_italic') format('svg');
  font-weight: normal;
  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: normal;
  font-style: normal; }

/*

@font-face {
  font-family: 'colfaxregular_italic';
  src: url('fonts/colfax_regular_italic/colfax-regularitalic-webfont.eot');
  src: url('fonts/colfax_regular_italic/colfax-regularitalic-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/colfax_regular_italic/colfax-regularitalic-webfont.woff') format('woff'),
  url('fonts/colfax_regular_italic/colfax-regularitalic-webfont.ttf') format('truetype'),
  url('fonts/colfax_regular_italic/colfax-regularitalic-webfont.svg#colfaxregular_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}

*/
/*

@font-face {
  font-family: 'colfaxthin';
  src: url('fonts/colfax_thin/colfax-thin-webfont.eot');
  src: url('fonts/colfax_thin/colfax-thin-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/colfax_thin/colfax-thin-webfont.woff') format('woff'),
  url('fonts/colfax_thin/colfax-thin-webfont.ttf') format('truetype'),
  url('fonts/colfax_thin/colfax-thin-webfont.svg#colfaxthin') format('svg');
  font-weight: normal;
  font-style: normal;
}

*/
/*

@font-face {
  font-family: 'colfaxthin_italic';
  src: url('fonts/colfax_thin_italic/colfax-thinitalic-webfont.eot');
  src: url('fonts/colfax_thin_italic/colfax-thinitalic-webfont.eot#iefix') format('embedded-opentype'),
  url('fonts/colfax_thin_italic/colfax-thinitalic-webfont.woff') format('woff'),
  url('fonts/colfax_thin_italic/colfax-thinitalic-webfont.ttf') format('truetype'),
  url('fonts/colfax_thin_italic/colfax-thinitalic-webfont.svg#colfaxthin_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}

*/
.btn-save {
  color: #ffffff;
  background-color: #2ddb40;
  -webkit-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -moz-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  font-family: 'pbs_kids_headlinebold', sans-serif; }

.btn-cancel {
  color: #ffffff;
  background-color: #df3f25;
  -webkit-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -moz-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  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: #000000; }
  .btn-random i {
    top: 15px;
    margin-top: 0; }
  .btn-random:hover {
    background-color: #ffffff; }

.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: #ffffff; }
  .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: #ffffff; }
    .big-close-button:hover .cross-left, .big-close-button:hover .cross-right {
      background-color: #ff6700; }
  .big-close-button:disabled {
    background-color: #d3d3d3; }
    .big-close-button:disabled:hover {
      background-color: #d3d3d3; }
      .big-close-button:disabled:hover .cross-left, .big-close-button:disabled:hover .cross-right {
        background-color: #ffffff; }

.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: #ffffff; }
  .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: #ffffff; }
    .large-close-button:hover .cross-left, .large-close-button:hover .cross-right {
      background-color: #ff6700; }
  .large-close-button:disabled {
    background-color: #d3d3d3; }
    .large-close-button:disabled:hover {
      background-color: #d3d3d3; }
      .large-close-button:disabled:hover .cross-left, .large-close-button:disabled:hover .cross-right {
        background-color: #ffffff; }

.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: #ffffff; }
  .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: #ffffff; }
    .medium-close-button:hover .cross-left, .medium-close-button:hover .cross-right {
      background-color: #ff6700; }
  .medium-close-button:disabled {
    background-color: #d3d3d3; }
    .medium-close-button:disabled:hover {
      background-color: #d3d3d3; }
      .medium-close-button:disabled:hover .cross-left, .medium-close-button:disabled:hover .cross-right {
        background-color: #ffffff; }

.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: #ffffff; }
  .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: #ffffff; }
    .small-close-button:hover .cross-left, .small-close-button:hover .cross-right {
      background-color: #ff6700; }
  .small-close-button:disabled {
    background-color: #d3d3d3; }
    .small-close-button:disabled:hover {
      background-color: #d3d3d3; }
      .small-close-button:disabled:hover .cross-left, .small-close-button:disabled:hover .cross-right {
        background-color: #ffffff; }

.button-ok, .button-cancel {
  width: 240px;
  height: 65px;
  font-family: "pbs_kids_headlineregular";
  font-size: 30px;
  text-transform: uppercase;
  color: #ffffff; }
  .button-ok:focus, .button-cancel:focus {
    color: #ffffff; }
  .button-ok:hover, .button-cancel:hover {
    margin-top: 10px;
    height: 55px;
    border-bottom: none;
    color: #ffffff; }

.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: #ffffff;
    outline: none;
    -webkit-box-shadow: compact(#2cad1f 0px 10px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#2cad1f 0px 10px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#2cad1f 0px 10px 0px, 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 0px 10px 0px, false, false, false, false, false, false, false, false, false);
      -moz-box-shadow: compact(#898d98 0px 10px 0px, false, false, false, false, false, false, false, false, false);
      box-shadow: compact(#898d98 0px 10px 0px, false, false, false, false, false, false, false, false, false); }
    .craft-button-group #craft-button-1:disabled, .craft-button-group #craft-button-3:disabled, .craft-button-group #craft-button-5:disabled {
      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: #ffffff; }
  .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: 0px;
    top: 0px; }
  .paginator .page-button-right {
    position: absolute;
    right: 0px;
    top: 0px; }
  .paginator .page-button-disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
    cursor: default; }

.preloader {
  background: url("images/shared/preloader.gif") no-repeat center;
  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") no-repeat center;
  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: 0px 12px; }
    .ribbon-orange.ribbon-45.ribbon .ribbon-inner p {
      font-family: 'pbs_kids_headlinebold';
      display: inline-block;
      text-transform: uppercase;
      margin: 0px 30px;
      line-height: 45px;
      color: #ffffff;
      font-size: 24px; }
  .ribbon-orange.ribbon-45.ribbon .ribbon-top-left, .ribbon-orange.ribbon-45.ribbon .ribbon-top-right, .ribbon-orange.ribbon-45.ribbon .ribbon-bottom-left, .ribbon-orange.ribbon-45.ribbon .ribbon-bottom-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: 0px 16px; }
    .ribbon-green.ribbon-60.ribbon .ribbon-inner p {
      font-family: 'pbs_kids_headlinebold';
      display: inline-block;
      text-transform: uppercase;
      margin: 0px 30px;
      line-height: 60px;
      color: #ffffff;
      font-size: 36px; }
  .ribbon-green.ribbon-60.ribbon .ribbon-top-left, .ribbon-green.ribbon-60.ribbon .ribbon-top-right, .ribbon-green.ribbon-60.ribbon .ribbon-bottom-left, .ribbon-green.ribbon-60.ribbon .ribbon-bottom-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: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 8px 5px 0;
  border-color: transparent #ffffff transparent transparent;
  margin-left: -5px; }

.arrow-right-white-small {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 0px 5px 8px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: -3px; }

.arrow-left-white-medium {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #ffffff transparent transparent;
  margin-left: -7px; }

.arrow-right-white-medium {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 0px 8px 12px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: -5px; }

.paginator-nav {
  min-width: 170px;
  height: 42px;
  background-color: #ffffff;
  -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: 0px;
      height: 0px;
      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: 0px;
      height: 0px;
      border-style: solid;
      border-width: 10px 0px 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: #000000;
    width: 100%;
    height: 46px;
    line-height: 46px;
    text-align: center;
    cursor: default; }

#login {
  width: 100%;
  height: 100%;
  background: url("images/authorization/registration.jpg") no-repeat center left;
  position: absolute; }

#authorization {
  width: 100%;
  height: 100%;
  background: url("images/authorization/registration.jpg") no-repeat center left;
  position: absolute; }

#login-header {
  background: url("images/login/header.svg") no-repeat center 0;
  position: relative;
  width: 100%;
  height: 236px;
  z-index: 10;
  margin-top: 35px;
  margin-bottom: -19px; }

#login_panel, #login_iframe {
  position: relative;
  border-radius: 0px;
  width: 570px;
  height: 375px;
  margin: 0 auto;
  display: block;
  background: #9C0;
  border: 12px solid #99cc00;
  box-sizing: content-box; }

#login_panel .form-group {
  margin-bottom: 10px; }

#login-progress {
  width: 450px;
  height: 80px;
  background: #98C800;
  margin: 0px auto 0;
  border: solid 7px #587200;
  border-top: none;
  border-radius: 0 0 20px 20px; }
  #login-progress #login-steps {
    width: 275px;
    position: relative;
    margin: 0 auto;
    top: 50%;
    background: #039FD2;
    height: 10px;
    margin-top: -4px;
    border: solid 2px #7DDDF7; }
    #login-progress #login-steps:after {
      content: "";
      position: absolute;
      background: url("images/login/kart.svg") no-repeat center center;
      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: solid #FFFFFF 3px;
      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: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px; }
  #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: 0px; }
  #serverSelection .dialog-flexible .dialog-content .server-list {
    position: relative;
    margin: 30px 0px 25px 0px; }
    #serverSelection .dialog-flexible .dialog-content .server-list .server-item {
      position: relative;
      width: 465px;
      height: 30px;
      background-color: #ffffff;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
      border-radius: 12px;
      margin: 0px auto 6px auto; }
      #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: 0px; }
        #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: 0px; }
        #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: 0px; }
      #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: #ffffff;
        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-bottom: 0px;
        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-previous, #serverSelection .paginator-footer .button-next {
    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-previous:disabled, #serverSelection .paginator-footer .button-next:disabled {
      background-color: #d3d3d3; }
      #serverSelection .paginator-footer .button-previous:disabled:hover, #serverSelection .paginator-footer .button-next:disabled:hover {
        background-color: #d3d3d3; }
    #serverSelection .paginator-footer .button-previous:hover, #serverSelection .paginator-footer .button-next: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") no-repeat center left;
  -webkit-transition: all 400ms ease;
  /*safari and chrome */
  -moz-transition: all 400ms ease;
  /* firefox */
  -o-transition: all 400ms ease;
  /* opera */
  transition: all 400ms ease; }
  #register.step1 {
    background-position: 0px 0px; }
  #register.step2 {
    background-position: -600px 0px; }
  #register.step3 {
    background-position: -1200px 0px; }
  #register.step4 {
    background-position: -1800px 0px; }
  #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") no-repeat center; }
  #register .bar .registration-guide {
    position: relative;
    bottom: 9px;
    width: 158px;
    height: 170px;
    background: url("images/authorization/registration_guide.png") no-repeat center; }
  #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: #ffffff;
      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: #ffffff;
      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: #ffffff;
    transform: scale(1.1, 0.9);
    transform-origin: right; }
    #register .registration-previous:active .big-arrow-head {
      border-color: transparent transparent transparent #ffffff; }
    #register .registration-previous:active.big-arrow-left .big-arrow-head {
      border-color: transparent #ffffff 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: #ffffff;
    transform: scale(1.1, 0.9);
    transform-origin: left; }
    #register .registration-next:active .big-arrow-head {
      border-left-color: #ffffff; }
    #register .registration-next:active.big-arrow-left .big-arrow-head {
      border-right-color: #ffffff; }

.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: 0px;
    left: 15px;
    width: 115px;
    text-align: left;
    height: 65px;
    line-height: 65px; }
    .face-picker .picker-text p {
      margin: 0px;
      font-family: 'pbs_kids_headlinebold';
      color: #216c65;
      font-size: 22px;
      line-height: 22px;
      display: inline-block;
      vertical-align: middle;
      margin-bottom: 4px; }
    .face-picker .picker-text b {
      font-family: 'pbs_kids_headlineregular';
      color: #000000;
      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: #ffffff;
    -webkit-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#34877e 4px 4px 0px, 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: #ffffff;
    -webkit-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#34877e 4px 4px 0px, 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 0px auto; }

.step0 .controls {
  position: relative;
  margin: 0px auto;
  width: 770px;
  height: 120px; }

.step0 .control-returning, .step0 .control-new {
  position: absolute;
  top: 0px;
  width: 364px;
  height: 364px;
  text-align: center;
  border: 0px solid transparent; }
  .step0 .control-returning .control-inner, .step0 .control-new .control-inner {
    width: 364px;
    height: 364px;
    position: absolute;
    left: 50%;
    margin-left: -182px;
    top: 50%;
    margin-top: -182px; }
  .step0 .control-returning button, .step0 .control-new button {
    top: 268px;
    position: relative;
    width: 364px;
    height: 102px;
    font-family: "pbs_kids_headlineregular";
    font-size: 44px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff; }
    .step0 .control-returning button:focus, .step0 .control-new button:focus {
      color: #ffffff; }
    .step0 .control-returning button:hover, .step0 .control-new button:hover {
      margin-top: 10px;
      height: 92px;
      border-bottom: none;
      color: #ffffff; }

.step0 .control-returning {
  right: 0px; }
  .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: 0px; }
  .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 .returning-image, .step0 .new-image {
  position: absolute;
  top: 42px;
  width: 297px;
  height: 320px; }

.step0 .returning-image {
  left: 50px;
  background: url("images/authorization/returning.png") no-repeat top left; }

.step0 .new-image {
  left: 17px;
  background: url("images/authorization/new.png") no-repeat top left; }

.step1 .gender-select {
  position: relative;
  margin: 40px auto 0px auto; }

.step1 .controls {
  position: relative;
  margin: 0px auto;
  width: 770px;
  height: 120px; }

.step1 .gender-boy, .step1 .gender-girl {
  position: absolute;
  top: 0px;
  width: 325px;
  height: 325px;
  text-align: center;
  border: none;
  background-color: #ffffff;
  -webkit-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -moz-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  box-shadow: compact(#34877e 4px 4px 0px, 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: #ffffff;
    -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: 0px; }
  .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: 0px; }
  .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") no-repeat top left; }

.step1 .girl-image {
  background: url("images/authorization/girl.png") no-repeat top left; }

.step2 .customize-face {
  background-color: #ffffff;
  -webkit-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -moz-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  box-shadow: compact(#34877e 4px 4px 0px, 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 0px auto;
  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: 0px;
    bottom: 15px; }
  .step2 .customize-face ul {
    float: left; }

.step3 .select-avatar {
  margin: 162px auto 0px auto;
  text-align: center;
  display: table;
  margin-left: auto;
  margin-right: auto;
  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: #ffffff;
      -webkit-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
      -moz-box-shadow: compact(#34877e 4px 4px 0px, false, false, false, false, false, false, false, false, false);
      box-shadow: compact(#34877e 4px 4px 0px, 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: #ffffff;
        -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: #ffffff; }

.step4 .avatar {
  bottom: -180px;
  left: -50px;
  position: absolute; }

.avatar-editor {
  background: url("images/avatar_editor/bg.jpg") center;
  background-size: cover; }
  .avatar-editor .title-bar {
    background-color: #3fd8fc;
    -webkit-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    z-index: 1;
    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: solid 7px 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: #ffffff;
        text-align: center;
        margin-top: 50px; }
      .avatar-editor .full-content .avatar-editor-categories .category .product-new {
        top: 0px;
        margin-left: 10px; }
      .avatar-editor .full-content .avatar-editor-categories .category.category-Skin {
        background-color: #e14dff;
        -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#000000 4px 4px 0px, 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:hover, .avatar-editor .full-content .avatar-editor-categories .category.category-Skin.selected {
          border: solid 7px #e14dff; }
      .avatar-editor .full-content .avatar-editor-categories .category.category-Head {
        background-color: #00dcef;
        -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#000000 4px 4px 0px, 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:hover, .avatar-editor .full-content .avatar-editor-categories .category.category-Head.selected {
          border: solid 7px #00dcef; }
      .avatar-editor .full-content .avatar-editor-categories .category.category-Eyes {
        background-color: #ea6f02;
        -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#000000 4px 4px 0px, 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:hover, .avatar-editor .full-content .avatar-editor-categories .category.category-Eyes.selected {
          border: solid 7px #ea6f02; }
      .avatar-editor .full-content .avatar-editor-categories .category.category-Mouth {
        background-color: #f70c70;
        -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#000000 4px 4px 0px, 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:hover, .avatar-editor .full-content .avatar-editor-categories .category.category-Mouth.selected {
          border: solid 7px #f70c70; }
      .avatar-editor .full-content .avatar-editor-categories .category.category-Body {
        background-color: #ffb000;
        -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#000000 4px 4px 0px, 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:hover, .avatar-editor .full-content .avatar-editor-categories .category.category-Body.selected {
          border: solid 7px #ffb000; }
      .avatar-editor .full-content .avatar-editor-categories .category.category-Wheels {
        background-color: #00d2b1;
        -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#000000 4px 4px 0px, 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:hover, .avatar-editor .full-content .avatar-editor-categories .category.category-Wheels.selected {
          border: solid 7px #00d2b1; }
      .avatar-editor .full-content .avatar-editor-categories .category.category-Sticker {
        background-color: #f70c70;
        -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#000000 4px 4px 0px, 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:hover, .avatar-editor .full-content .avatar-editor-categories .category.category-Sticker.selected {
          border: solid 7px #f70c70; }
      .avatar-editor .full-content .avatar-editor-categories .category:hover, .avatar-editor .full-content .avatar-editor-categories .category.selected {
        background-color: #ffffff;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none; }
        .avatar-editor .full-content .avatar-editor-categories .category:hover p, .avatar-editor .full-content .avatar-editor-categories .category.selected p {
          color: #000000; }
  .avatar-editor .full-content .avatar_editor_inventory {
    position: absolute;
    width: 330px;
    height: 575px;
    top: -20px;
    right: 0;
    background-color: #a2cccc;
    -webkit-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px; }
    .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: #ffffff; }
          .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button {
            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 span.avatar-editor-color-Black, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Black {
              background-color: #000000; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Blue, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Blue {
              background-color: #00a2f4; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Turquoise, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Turquoise {
              background-color: #1ae8cf; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Green, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Green {
              background-color: #5ac100; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Purple, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Purple {
              background-color: #926cde; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Red, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Red {
              background-color: #ff613e; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Orange, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Orange {
              background-color: #ff9100; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Pink, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Pink {
              background-color: #ff92ea; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Yellow, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Yellow {
              background-color: #ffd300; }
            .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a span.avatar-editor-color-Special, .avatar-editor .full-content .avatar_editor_inventory .avatar-editor-colors li a .medium-close-button.avatar-editor-color-Special {
              background-color: #ffffff; }
          .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-products {
      width: 295px;
      height: 444px;
      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: #ffffff;
        background-color: #df3f25;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px;
        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: #ffffff;
        -webkit-box-shadow: compact(#216c65 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#216c65 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#216c65 4px 4px 0px, 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: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: #ffffff;
          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 .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;
  background-size: cover; }
  .contacts .title-bar {
    background-color: #99ce05;
    -webkit-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px; }
  .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: #ffffff;
      -webkit-box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
      -moz-box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
      box-shadow: compact(#497607 4px 4px 0px, 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: 0px; }
      .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: 0px;
        left: 50%;
        margin-left: -200px;
        width: 400px;
        height: 400px;
        overflow: visible;
        background-color: #ffffff;
        -webkit-box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#497607 4px 4px 0px, 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.single-contact .mediumicon-encyclopedia {
          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: #000000; }
            .contacts .contacts-carousel .friend-avatar.friend-avatar-1 .remove:hover i, .contacts .contacts-carousel .friend-avatar.single-contact .remove:hover i {
              background-position: -96px 0px; }
          .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: 0px;
            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 #ffffff;
          -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: #ffffff;
            -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: #ffffff;
    -webkit-box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#497607 4px 4px 0px, 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: progid:DXImageTransform.Microsoft.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, #social_crafting.free-crafting {
    background: url("images/crafting/crafting_bg.jpg") center; }
  #free_crafting.social-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;
  background-size: cover;
  font-family: "pbs_kids_headlinebold";
  text-align: center; }
  #crafting_menu h1 {
    margin-top: 80px;
    font-size: 30px; }
  #crafting_menu li {
    display: inline-block; }
    #crafting_menu li button {
      margin: 10px; }
      #crafting_menu li button h2 {
        font-size: 22px; }
      #crafting_menu li button p {
        font-family: "pbs_kids_headlineregular";
        font-size: 16px;
        color: #ffffff; }
      #crafting_menu li button i {
        position: relative;
        display: block;
        width: 185px;
        height: 180px;
        background: url("images/layout/big_elements.png");
        margin-bottom: 10px; }
      #crafting_menu li button.crafting-menu-gadgets h2 {
        color: #ffd400; }
      #crafting_menu li button.crafting-menu-gadgets i {
        background-position: -510px  0px; }
      #crafting_menu li button.crafting-menu-powerups h2 {
        color: #fe9b00; }
      #crafting_menu li button.crafting-menu-powerups i {
        background-position: -325px 0px; }
      #crafting_menu li button.crafting-menu-parts h2 {
        color: #00c3f7; }
      #crafting_menu li button.crafting-menu-parts i {
        background-position: -325px -180px; }
      #crafting_menu li button.crafting-menu-social {
        margin-left: 40px; }
        #crafting_menu li button.crafting-menu-social h2 {
          color: #80db16; }
        #crafting_menu li button.crafting-menu-social i {
          background-position: -510px -180px; }
      #crafting_menu li button:hover {
        filter: progid:DXImageTransform.Microsoft.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 0px, false, false, false, false, false, false, false, false, false);
  -moz-box-shadow: compact(#985d00 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  box-shadow: compact(#985d00 4px 4px 0px, 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") top left;
    background-position: 0px 0px; }
  #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: #ffffff;
  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 0px, false, false, false, false, false, false, false, false, false);
  -moz-box-shadow: compact(#188a24 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  box-shadow: compact(#188a24 4px 4px 0px, 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: 0px;
  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: #ffffff; }
  .dialog-box .crafting-message-up {
    top: 20px; }
  .dialog-box .crafting-message-down {
    bottom: 10px; }

.resource-button-up {
  left: 130px; }

.resource-button-down {
  left: 130px; }

.grid-box {
  background-color: #DCECB4;
  -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  box-shadow: compact(#000000 4px 4px 0px, 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: progid:DXImageTransform.Microsoft.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: #ffffff;
  -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: 0px;
    left: 0px;
    width: 110px;
    height: 110px;
    background-color: #ffb000;
    -webkit-box-shadow: compact(#fe9b00 8px 8px 0px inset, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#fe9b00 8px 8px 0px inset, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#fe9b00 8px 8px 0px 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: 0px 0px 0px -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");
      background-position: 0px 0px; }
    .items-grid-box .resource-container .resource-chosen.resource-hint {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
      opacity: 0.4;
      position: relative;
      top: 55px; }
  .items-grid-box .gadget-item-box {
    position: absolute;
    top: 0px;
    right: 0px; }
    .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 0px inset, false, false, false, false, false, false, false, false, false);
      -moz-box-shadow: compact(#fe9b00 8px 8px 0px inset, false, false, false, false, false, false, false, false, false);
      box-shadow: compact(#fe9b00 8px 8px 0px inset, false, false, false, false, false, false, false, false, false);
      -webkit-border-radius: 50px 50px 0px 0px;
      -khtml-border-radius: 50px 50px 0px 0px;
      -moz-border-radius: 50px 50px 0px 0px;
      border-radius: 50px 50px 0px 0px; }
      .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: #ffffff;
      -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: #ffffff;
        outline: none;
        -webkit-box-shadow: compact(#2cad1f 0px 10px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#2cad1f 0px 10px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#2cad1f 0px 10px 0px, false, false, false, false, false, false, false, false, false); }
        .items-grid-box .gadget-item-box .craftable-box #craft-button:hover, .items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part:hover {
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none; }
        .items-grid-box .gadget-item-box .craftable-box #craft-button:disabled, .items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part:disabled {
          background-color: #d3d3d3;
          -webkit-box-shadow: compact(#898d98 0px 10px 0px, false, false, false, false, false, false, false, false, false);
          -moz-box-shadow: compact(#898d98 0px 10px 0px, false, false, false, false, false, false, false, false, false);
          box-shadow: compact(#898d98 0px 10px 0px, false, false, false, false, false, false, false, false, false); }
        .items-grid-box .gadget-item-box .craftable-box #craft-button:hover, .items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part:hover {
          bottom: 15px; }
        .items-grid-box .gadget-item-box .craftable-box #craft-button:disabled, .items-grid-box .gadget-item-box .craftable-box #craft-button-kart-part: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: 0px;
          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");
    background-position: -240px 0px; }
  .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");
    background-position: -282px 0px; }
  .items-grid-box .crafting-holder {
    position: absolute;
    width: 15px;
    height: 30px;
    top: 150px;
    background-color: #ffffff; }
  .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: #ffffff;
  -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 {
    display: block; }
  .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: none; }
      .resource-grid-box .grid-list .resource .resource-high {
        width: 90px;
        height: 90px;
        padding: 5px;
        outline: none; }
      .resource-grid-box .grid-list .resource:hover:not(.item-disabled) {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
        opacity: 0.9; }
      .resource-grid-box .grid-list .resource:active:not(.item-disabled) {
        filter: progid:DXImageTransform.Microsoft.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: 0px;
        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: #ffffff;
        /* $color-turquoise-lighter-2; */
        -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: 0px; }
  .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");
    background-position: -98px -98px; }
    .resource-grid-box .resource-prompt p {
      position: absolute;
      width: 200px;
      bottom: -65px;
      left: -20px;
      line-height: 26px;
      text-align: center;
      font-family: "pbs_kids_headlinebold";
      font-size: 24px;
      text-transform: uppercase;
      color: #ffffff;
      margin: 0px; }

.resource-grid-item {
  border: none;
  outline: none;
  pointer-events: none; }

.resource-high i {
  display: block;
  width: 100px;
  height: 100px;
  background: url("images/resources/resources_high.png");
  background-position: 0px 0px; }

.resource-medium i {
  display: block;
  width: 80px;
  height: 80px;
  background: url("images/resources/resources_med.png");
  background-position: 0px 0px; }

.resource-small i {
  display: block;
  width: 24px;
  height: 24px;
  background: url("images/resources/resources_low.png");
  background-position: 0px 0px; }

[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: #ffffff;
  -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-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: bold;
    padding-top: 5px;
    padding-bottom: 5px; }
    .product-grid-box .tab-header.tab-header-gadget {
      color: #216c65; }
    .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 8px; }
      .product-grid-box #products-grid .grid-list .tutorial-selected {
        -webkit-border-radius: 30px 30px 0px 0px;
        -khtml-border-radius: 30px 30px 0px 0px;
        -moz-border-radius: 30px 30px 0px 0px;
        border-radius: 30px 30px 0px 0px;
        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: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
          opacity: 1; }
      .product-grid-box #products-grid .grid-list .product-item {
        position: relative;
        cursor: pointer;
        width: 80px;
        height: 70px;
        margin: 0px 2px;
        outline: none; }
        .product-grid-box #products-grid .grid-list .product-item p {
          position: absolute;
          top: -5px;
          left: 0px;
          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: #ffffff;
          /* $color-turquoise-lighter-2; */
          -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: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
          opacity: 0.9; }
        .product-grid-box #products-grid .grid-list .product-item:active:not(.item-disabled) {
          filter: progid:DXImageTransform.Microsoft.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-tag,
          .product-grid-box #products-grid .grid-list .product-item:active:not(.item-disabled) .product-new {
            display: none; }
        .product-grid-box #products-grid .grid-list .product-item .product-new {
          top: -20px;
          right: -17px;
          left: auto;
          margin: 0px; }
        .product-grid-box #products-grid .grid-list .product-item .kart-part-owned {
          position: absolute;
          top: auto;
          left: auto;
          bottom: 5px;
          right: 5px;
          margin: 0px; }
        .product-grid-box #products-grid .grid-list .product-item img {
          position: relative;
          top: 3px;
          right: 0px;
          margin: 0px; }

.product-tabs {
  position: absolute;
  width: 70px;
  top: 40px;
  right: -70px; }
  .product-tabs .btn-craft {
    width: 50px;
    height: 58px;
    position: relative;
    outline: none;
    box-sizing: content-box;
    margin-top: -10px;
    border: 10px solid #ffffff;
    border-left: none;
    -webkit-border-radius: 0px 40px 40px 0px;
    -khtml-border-radius: 0px 40px 40px 0px;
    -moz-border-radius: 0px 40px 40px 0px;
    border-radius: 0px 40px 40px 0px; }
    .product-tabs .btn-craft i {
      width: 46px;
      height: 46px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -23px;
      margin-left: -23px;
      margin-left: -27px;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
      opacity: 0.4; }
    .product-tabs .btn-craft.btn-craft-gadgets {
      background-color: #34dac3; }
    .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:hover i {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
      opacity: 1; }
    .product-tabs .btn-craft.selected i {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
      opacity: 1; }
    .product-tabs .btn-craft:hover i {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
      opacity: 0.7; }

.paginator-footer {
  position: absolute;
  width: 240px;
  height: 45px;
  left: 50%;
  margin-left: -120px;
  bottom: -20px;
  background-color: #ffffff;
  -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-previous, .paginator-footer .button-next {
    position: absolute;
    top: 0px;
    width: 45px;
    height: 45px;
    bottom: -7px;
    display: block;
    outline: none; }
    .paginator-footer .button-previous:hover i, .paginator-footer .button-next:hover i {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
      opacity: 0.8; }
    .paginator-footer .button-previous:disabled i, .paginator-footer .button-next:disabled i {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
      opacity: 0.4; }
  .paginator-footer .button-next {
    right: 0px; }
  .paginator-footer .button-previous {
    left: 0px; }
  .paginator-footer:disabled {
    opacity: 0.4; }

.encyclopedia-button {
  position: absolute;
  bottom: 10px;
  right: 30px;
  width: 70px;
  height: 70px;
  background-color: #f19455;
  border: 6px solid #fdca81;
  outline: none;
  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: white;
    border-color: #ffffff; }
    .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: #ffffff;
      color: #fb4d00; }

.big-arrow {
  height: 40px;
  padding: 0 10px;
  font-family: 'pbs_kids_headlinebold';
  font-size: 24px;
  color: #ffffff;
  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: 0px 20px;
    line-height: 60px;
    font-size: 18px;
    font-family: "pbs_kids_headlinebold";
    display: inline-block;
    color: #ffffff;
    background-color: #ff7109;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px; }

#encyclopedia {
  background: url("images/encyclopedia/encyclopedia_bg.jpg") center;
  background-size: cover; }
  #encyclopedia .title-bar {
    background-color: #2ea50e;
    -webkit-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#000000 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px; }
  #encyclopedia .full-content {
    width: 980px;
    position: absolute;
    left: 50%;
    margin-left: -490px;
    background-color: #c97441;
    -webkit-box-shadow: compact(#351807 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#351807 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#351807 4px 4px 0px, 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: 0px;
      width: 100%;
      height: 100px;
      text-align: center; }
      #encyclopedia .full-content .encyclopedia-categories li {
        width: 100px;
        height: 100px;
        display: inline-block;
        margin-right: 5px;
        position: relative;
        cursor: pointer;
        margin-right: 10px;
        border: solid 7px transparent; }
        #encyclopedia .full-content .encyclopedia-categories li i {
          top: 45%; }
        #encyclopedia .full-content .encyclopedia-categories li .category-label {
          font-family: 'colfaxblack', sans-serif;
          color: #000000;
          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 0px, false, false, false, false, false, false, false, false, false);
          -moz-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          box-shadow: compact(#864710 4px 4px 0px, 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:hover, #encyclopedia .full-content .encyclopedia-categories li.category-resources.selected {
            border: solid 7px #df56fc; }
        #encyclopedia .full-content .encyclopedia-categories li.category-gadgets {
          background-color: #1fdced;
          -webkit-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          -moz-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          box-shadow: compact(#864710 4px 4px 0px, 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:hover, #encyclopedia .full-content .encyclopedia-categories li.category-gadgets.selected {
            border: solid 7px #1fdced; }
        #encyclopedia .full-content .encyclopedia-categories li.category-parts {
          background-color: #ffd400;
          -webkit-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          -moz-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          box-shadow: compact(#864710 4px 4px 0px, 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:hover, #encyclopedia .full-content .encyclopedia-categories li.category-parts.selected {
            border: solid 7px #ffd400; }
        #encyclopedia .full-content .encyclopedia-categories li.category-powerups {
          background-color: #ff7109;
          -webkit-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          -moz-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          box-shadow: compact(#864710 4px 4px 0px, 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:hover, #encyclopedia .full-content .encyclopedia-categories li.category-powerups.selected {
            border: solid 7px #ff7109; }
        #encyclopedia .full-content .encyclopedia-categories li.category-finds {
          background-color: #99ce05;
          -webkit-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          -moz-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
          box-shadow: compact(#864710 4px 4px 0px, 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:hover, #encyclopedia .full-content .encyclopedia-categories li.category-finds.selected {
            border: solid 7px #99ce05; }
        #encyclopedia .full-content .encyclopedia-categories li:hover, #encyclopedia .full-content .encyclopedia-categories li.selected {
          background-color: #ffffff;
          -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: #ffffff; }

#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: #ffffff;
    -webkit-box-shadow: compact(#351807 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#351807 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#351807 4px 4px 0px, 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: #ffffff;
        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 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#864710 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#864710 4px 4px 0px, 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") top left;
  background-position: 0px   0px; }

#encyclopedia .encyclopedia-left {
  top: 150px;
  left: 35px;
  background-position: 0px  0px; }
  #encyclopedia .encyclopedia-left:hover {
    background-position: -48px  0px; }

#encyclopedia .encyclopedia-right {
  top: 150px;
  right: 35px;
  background-position: -24px  0px; }
  #encyclopedia .encyclopedia-right:hover {
    background-position: -72px  0px; }

.jump {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("images/layout/app_inner_background.jpg") repeat-x top;
  background-color: #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: 0px;
      left: 0;
      margin: 0;
      text-align: center;
      color: #ffffff;
      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: #ffffff;
        border: 5px solid #ffffff; }
        .jump .minigame-container .jump-quest-top-nav .jump-quest-exit:hover {
          color: #000000;
          background-color: #ffffff; }
          .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: #ffffff; }
        .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 #ffffff;
          left: -16px;
          border-left: 6px solid #ffffff;
          -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 #ffffff;
          left: -16px;
          border-left: 6px solid #ffffff;
          -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: #ffffff;
        border: 5px solid #ffffff;
        background-color: #93c102; }
        .jump .minigame-container .jump-quest-top-nav .jump-quest-go:hover {
          color: #000000;
          background-color: #ffffff; }
          .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: #ffffff; }
        .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 #ffffff;
          right: -16px;
          border-right: 6px solid #ffffff;
          -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 #ffffff;
          right: -16px;
          border-right: 6px solid #ffffff;
          -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 white;
          margin: 3px;
          outline: none;
          -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.sound-muted:hover {
                background-color: #ffffff; }
          .jump .minigame-container .jump-quest-top-nav .jump-game-buttons .btn-jump:hover {
            background-color: #ffffff; }
      .jump .minigame-container .jump-quest-top-nav .tutorial-step {
        position: absolute;
        top: 150px;
        left: 310px; }
    .jump .minigame-container .jump-crafting-unlock {
      -webkit-transition: compact(compact(all ease 0.5s, false, false, false, false, false, false, false, false, false) false false);
      -moz-transition: compact(compact(all ease 0.5s, false, false, false, false, false, false, false, false, false) false false false);
      -o-transition: compact(compact(all ease 0.5s, false, false, false, false, false, false, false, false, false) false false false);
      transition: compact(all ease 0.5s, false, false, false, false, false, false, false, false, false);
      position: absolute;
      top: 75px;
      right: -200px;
      width: 125px;
      height: 173px;
      background: white; }
      .jump .minigame-container .jump-crafting-unlock .container {
        font-family: 'pbs_kids_headlinebold';
        font-size: 18px;
        margin: 10px; }
        .jump .minigame-container .jump-crafting-unlock .container .image {
          position: inherit;
          left: 0;
          width: 82px;
          margin: 10px; }
        .jump .minigame-container .jump-crafting-unlock .container .mediumicon-new {
          top: 28px;
          left: 94px; }
    .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: #000000;
        background-color: #1ef8d9;
        -webkit-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px; }
        .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: #ffffff;
        -webkit-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px; }
  .jump select {
    height: 34px;
    margin: 10px; }
  .jump .debug {
    position: absolute;
    top: 0px; }

#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: 600px;
  height: 480px;
  left: 50%;
  top: 50%;
  margin-left: -300px;
  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: 500px;
      height: 215px;
      margin: 40px auto 20px auto;
      text-align: center;
      background-color: #fff761; }
      #quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards {
        width: 600px;
        margin: 0px auto;
        overflow: hidden;
        display: inline; }
        #quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards li {
          display: inline-block;
          position: relative;
          top: 41px;
          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");
            background-position: -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: #555555; }
          #quest_rewards .dialog .dialog-content .quest-rewards-container .quest-rewards li span {
            position: absolute;
            display: block;
            width: 30px;
            height: 30px;
            top: 70px;
            right: 0px;
            text-align: center;
            line-height: 30px;
            font-family: "colfaxmedium";
            color: #ffffff;
            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-previous, #quest_rewards .dialog .dialog-content .quest-rewards-container .button-next {
        position: absolute;
        top: 70px;
        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-previous .left-arrow, #quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous .right-arrow, #quest_rewards .dialog .dialog-content .quest-rewards-container .button-next .left-arrow, #quest_rewards .dialog .dialog-content .quest-rewards-container .button-next .right-arrow {
          position: absolute;
          top: 7px;
          width: 0px;
          height: 0px;
          border-style: solid; }
        #quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous .left-arrow, #quest_rewards .dialog .dialog-content .quest-rewards-container .button-next .left-arrow {
          left: 5px;
          border-width: 12px 20px 12px 0px;
          border-color: transparent #ffffff transparent transparent; }
        #quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous .right-arrow, #quest_rewards .dialog .dialog-content .quest-rewards-container .button-next .right-arrow {
          right: 8px;
          border-width: 12px 0px 12px 20px;
          border-color: transparent transparent transparent #ffffff; }
        #quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous:disabled, #quest_rewards .dialog .dialog-content .quest-rewards-container .button-next:disabled {
          filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
          opacity: 0.2; }
        #quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous:hover, #quest_rewards .dialog .dialog-content .quest-rewards-container .button-next:hover {
          background-color: #510959; }
      #quest_rewards .dialog .dialog-content .quest-rewards-container .button-previous {
        left: 30px; }
      #quest_rewards .dialog .dialog-content .quest-rewards-container .button-next {
        right: 30px; }
  #quest_rewards .dialog .quest-rewards-buttons {
    position: relative;
    height: 80px;
    width: 520px;
    margin: 0px auto; }
    #quest_rewards .dialog .quest-rewards-buttons.quest-rewards-buttons-single {
      width: 260px; }
    #quest_rewards .dialog .quest-rewards-buttons button {
      margin: 0px 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-top, .frame-left {
  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: none;
  overflow: hidden;
  background-color: #ffffff; }

.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: 55%; }
  .main-nav .main-nav-outer-wrapper {
    float: left;
    position: relative;
    margin-left: -135px; }
    .main-nav .main-nav-outer-wrapper .main-nav-wrapper, .main-nav .main-nav-outer-wrapper .actions-wrapper {
      float: left;
      position: relative; }
      .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li, .main-nav .main-nav-outer-wrapper .actions-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 white; }
        .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.grayed-out, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.grayed-out {
          background-color: #d3d3d3 !important; }
        .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-contacts {
          background-color: #80db16; }
          .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts:hover .main-nav-no-contacts, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-contacts:hover .main-nav-no-contacts {
            display: block; }
          .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts, .main-nav .main-nav-outer-wrapper .actions-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: #ffffff;
            -webkit-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
            -moz-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
            box-shadow: compact(#4a7392 4px 4px 0px, 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 .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts p, .main-nav .main-nav-outer-wrapper .actions-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 .main-nav-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts .actions-arrow, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-contacts .main-nav-no-contacts .actions-arrow {
              position: absolute;
              top: -12px;
              right: 112px;
              width: 0px;
              height: 0px;
              border-style: solid;
              border-width: 0 5px 12px 5px;
              border-color: transparent transparent #ffffff transparent; }
        .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-quest, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-quest {
          background-color: #f41971; }
        .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-map, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-map {
          background-color: #15d1b1; }
        .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li.main-nav-craft, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.main-nav-craft {
          background-color: #3fd8fc; }
        .main-nav .main-nav-outer-wrapper .main-nav-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 .actions-wrapper .main-nav-inner ul li:hover, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li.active {
          background-color: #ffffff; }
        .main-nav .main-nav-outer-wrapper .main-nav-wrapper .main-nav-inner ul li button, .main-nav .main-nav-outer-wrapper .actions-wrapper .main-nav-inner ul li button {
          position: relative;
          width: 58px;
          height: 58px;
          display: block;
          outline: none; }
  .main-nav .version {
    position: absolute;
    top: -20px;
    left: -558px;
    background-color: white;
    color: black;
    font-size: 18px;
    height: 23px;
    width: 119px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    padding-left: 3px;
    padding-right: 3px;
    cursor: pointer; }

.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 white; }
    .actions ul .action-item.actions-emote {
      background-color: #f953d2; }
    .actions ul .action-item.actions-dance {
      background-color: #ffd400; }
    .actions ul .action-item:hover, .actions ul .action-item.active {
      background-color: #ffffff; }
    .actions ul .action-item a {
      position: relative;
      width: 44px;
      height: 44px;
      display: block; }
    .actions ul .action-item .actions-container {
      display: block;
      position: absolute;
      bottom: 63px;
      left: -10px;
      width: 100px;
      padding: 5px;
      background-color: #ffffff;
      -webkit-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
      -moz-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
      box-shadow: compact(#4a7392 4px 4px 0px, 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;
        top: 97px;
        left: 50px;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 12px 5px 0 5px;
        border-color: #ffffff transparent 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(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -moz-box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  box-shadow: compact(black 4px 4px 0px, false, false, false, false, false, false, false, false, false);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  z-index: 1; }

.map .map-inner {
  position: relative;
  margin-left: 6px;
  top: 6px;
  border-bottom: 15px solid #ffffff;
  height: 92%; }
  .map .map-inner .map-item {
    position: relative;
    width: 245px;
    height: 100%;
    margin: 4px;
    color: white;
    display: inline-block; }
    .map .map-inner .map-item:last-child .map-item-label h1 {
      color: #f41a71; }
    .map .map-inner .map-item:last-child.map-item-off .map-item-label h1 {
      color: #8a8888; }
    .map .map-inner .map-item:hover, .map .map-inner .map-item.current {
      text-shadow: 2px 2px #000000; }
    .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: 337px;
      left: 0;
      top: 50%;
      margin-top: -208.5px;
      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: 0  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: 0 -337px; }
        .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: -245px 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: -245px -337px; }
        .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: -490px 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: -490px -337px; }
        .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: -735px 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: -735px -337px; }
        .map .map-inner .map-item.map-item-mount_snow.map-item-off:before {
          background-color: #bbbbbb; }
      .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");
        background-position: -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 white;
        margin-left: 5px;
        background-color: #ffffff;
        -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:hover .mediumicon-message-close, #messages_bar .hud-messages-container .hud-message-wrapper .message-btn.active .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-leave, .animation.ng-enter.ng-enter-active {
  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: #ffffff;
    -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: 0px; }
      .message_container .message .message-header h1 {
        margin: 15px 40px 10px 60px;
        font-size: 18px;
        font-weight: bold;
        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: 0px;
        right: 15px; }
      .message_container .message .message-content .message-buttons {
        float: left;
        margin: 0px 0px 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: #ffffff;
          text-align: center;
          padding: 0px;
          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: #ffffff; }
        .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-reject, .message_container .message .message-content .message-buttons .message-action-decline {
          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: none;
    margin: 2px; }
  #options .large-close-button {
    border: 5px solid #ffffff; }
  #options .options-button-sound {
    width: 46px;
    height: 46px;
    border: 5px solid #ffffff; }
    #options .options-button-sound:hover {
      background-color: #ffffff; }
  #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: #ffffff; }
  #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;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -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 .dialog-title {
      position: relative;
      width: 360px;
      margin: 30px auto 20px auto;
      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: 0px auto 10px auto;
      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-ok, .alert-dialog .dialog-flexible .dialog-content .alert-message-buttons .button-cancel {
        width: 150px;
        margin-left: 10px;
        margin-right: 10px; }

.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: 0px; }

.dialog-container {
  height: 100px;
  position: absolute; }
  .dialog-container .bar {
    width: 958px;
    height: 206px;
    background: url("images/info/info_bg.png") no-repeat;
    background-size: 100%; }
    .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 auto;
      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 auto; }
    .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 auto;
    font-family: 'colfaxbold';
    color: #ffffff;
    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;
    text-align: center;
    font-family: 'colfax_regularregular';
    font-size: 15px;
    margin-bottom: 45px;
    color: #8a8888; }

#room_preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/layout/app_inner_background.jpg") repeat-x top;
  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: #ffffff;
        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 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px; }
        #room_preloader .full-content .room-preloader-bar .room-preloader-bar-holder .room-preloader-bar-progress {
          background-color: #f41a71;
          position: absolute;
          display: block;
          bottom: 0;
          height: 30px;
          background-color: #f41a71;
          -webkit-border-radius: 0px;
          -moz-border-radius: 0px;
          -ms-border-radius: 0px;
          -o-border-radius: 0px;
          border-radius: 0px; }
      #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") repeat-x top;
  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: #ffffff;
        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 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#497607 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px; }
        #sounds_preloader .full-content .sounds-preloader-bar .sounds-preloader-bar-holder .sounds-preloader-bar-progress {
          background-color: #f41a71;
          position: absolute;
          display: block;
          bottom: 0;
          height: 30px;
          background-color: #f41a71;
          -webkit-border-radius: 0px;
          -moz-border-radius: 0px;
          -ms-border-radius: 0px;
          -o-border-radius: 0px;
          border-radius: 0px; }
      #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 white; }
    #quickchat_nav ul li:hover, #quickchat_nav ul li.active {
      background-color: #ffffff; }
    #quickchat_nav ul li button {
      position: relative;
      width: 58px;
      height: 58px;
      display: block;
      outline: none; }

.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 10px 0;
    background-color: #ffffff;
    -webkit-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    -moz-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
    box-shadow: compact(#4a7392 4px 4px 0px, 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: bold;
          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: #ffffff; }
      .quickchat .quick-chat-root .quickchat-item .submenu {
        max-height: 650px;
        max-width: 650px;
        position: absolute;
        left: 185px;
        overflow: visible;
        bottom: 0;
        background-color: #ffffff;
        -webkit-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        -moz-box-shadow: compact(#4a7392 4px 4px 0px, false, false, false, false, false, false, false, false, false);
        box-shadow: compact(#4a7392 4px 4px 0px, 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: #ffffff; }
        .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: #ffffff; }
        .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: #ffffff; }
    .quickchat .quick-chat-root:before {
      content: "";
      position: absolute;
      bottom: -12px;
      left: 30px;
      width: 0px;
      height: 0px;
      border-style: solid;
      border-width: 12px 5px 0 5px;
      border-color: #ffffff transparent transparent transparent; }
  .quickchat .submenu-visible {
    display: block; }

.go-button {
  position: relative;
  left: 0px;
  top: 0px;
  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: -0px -0px; }

.quest_high_image .bug_2 {
  width: 100px;
  height: 100px;
  background-position: -100px -0px; }

.quest_high_image .bug_3 {
  width: 100px;
  height: 100px;
  background-position: -200px -0px; }

.quest_high_image .bug_4 {
  width: 100px;
  height: 100px;
  background-position: -300px -0px; }

.quest_high_image .bug_5 {
  width: 100px;
  height: 100px;
  background-position: -400px -0px; }

.quest_high_image .glade_1 {
  width: 100px;
  height: 100px;
  background-position: -0px -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: -0px -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: -0px -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: black;
  width: 100%;
  height: 100%;
  z-index: 2; }
  .minigame .stage {
    position: absolute;
    top: 60px;
    bottom: 0px;
    width: 100%;
    background: black; }
    .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: black;
    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");
      background-position: -172px 0px; }
      #games .full-content .games-table .jolly-arrow {
        position: absolute;
        width: 62px;
        height: 62px;
        top: 25px;
        left: 122px;
        background: url("images/games/games_spritesheet.png");
        background-position: -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: white;
        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: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
          opacity: 0.3; }
        #games .full-content .games-wrapper .game-preview:hover:not(.game-preview-soon) img {
          filter: progid:DXImageTransform.Microsoft.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");
        background-position: -212px -183px; }
        #games .full-content .games-wrapper .game-coming-soon p {
          font-family: "pbs_kids_headlinebold";
          color: #ffffff;
          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: #ffffff;
          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: #000000;
    -webkit-backface-visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.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: 0px;
    -webkit-border-radius: 0px 0px 400px 0px;
    -khtml-border-radius: 0px 0px 400px 0px;
    -moz-border-radius: 0px 0px 400px 0px;
    border-radius: 0px 0px 400px 0px; }
  #games .curtain-right {
    right: 0px;
    -webkit-border-radius: 0px 0px 0px 400px;
    -khtml-border-radius: 0px 0px 0px 400px;
    -moz-border-radius: 0px 0px 0px 400px;
    border-radius: 0px 0px 0px 400px; }
  #games .cool-dude {
    position: absolute;
    width: 168px;
    height: 253px;
    bottom: 0px;
    left: 0px;
    background: url("images/games/games_spritesheet.png");
    background-position: 0px 0px; }
  #games .cool-dude-chat-bubble {
    position: absolute;
    width: 280px;
    height: 215px;
    bottom: 180px;
    left: 80px;
    background-color: #ffffff;
    -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");
      background-position: -495px -164px; }
  #games .big-close-button {
    position: absolute;
    top: 15px;
    right: 15px; }

#give_and_get .dialog {
  position: absolute;
  width: 620px;
  height: 330px;
  left: 50%;
  top: 50%;
  margin-left: -310px;
  margin-top: -165px;
  background-color: #ffbb00;
  border: 8px solid #ffffff; }

#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 .give-block p, #give_and_get .dialog-content .get-block p {
    font-family: 'pbs_kids_headlinebold';
    font-size: 50px;
    text-transform: uppercase;
    line-height: 50px;
    color: #ffffff; }
  #give_and_get .dialog-content .give-block, #give_and_get .dialog-content .get-block {
    position: absolute;
    top: 40px;
    width: 120px;
    text-align: center; }
    #give_and_get .dialog-content .give-block i, #give_and_get .dialog-content .get-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");
    background-position: -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: #ffffff;
  -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: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ffffff; }

#give_and_get .totaliser-boy-head {
  position: absolute;
  bottom: 20px;
  right: 55px;
  width: 64px;
  height: 76px;
  background: url("images/layout/big_elements.png");
  background-position: 0 -282px; }

#give_and_get .totaliser-bar {
  position: absolute;
  top: 115px;
  left: 120px;
  width: 360px;
  height: 50px;
  background-color: #dfdfdf;
  border-top: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff; }
  #give_and_get .totaliser-bar .totaliser-bar-filled {
    background-color: #fb4d00;
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 0px; }
  #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: #ffffff;
    border: 8px solid #ffffff; }
  #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;
      padding: 2px;
      border-color: gray;
      border-style: dashed;
      padding: 10px;
      margin: 15px;
      text-align: center;
      outline: none; }
    #redeem .dialog-content p {
      font-size: 50px;
      text-transform: uppercase;
      line-height: 50px;
      color: #000000; }

#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 0px auto;
    font-size: 28px;
    font-family: 'pbs_kids_headlinebold'; }
  #rescue_reward .dialog .text-container .body {
    width: 458px;
    margin: -10px auto 20px auto;
    font-size: 17px;
    font-family: 'pbs_kids_headlineregular'; }
  #rescue_reward .dialog #kratts-team {
    position: absolute;
    bottom: 0px;
    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-hud {
  position: absolute;
  top: 25px;
  left: 55%; }
  .nature-cat-hud .nature-cat-hud-outer-wrapper {
    float: left;
    position: relative;
    margin-left: 95px; }
    .nature-cat-hud .nature-cat-hud-outer-wrapper .nature-cat-hud-wrapper, .nature-cat-hud .nature-cat-hud-outer-wrapper .actions-wrapper {
      float: left;
      position: relative; }
      .nature-cat-hud .nature-cat-hud-outer-wrapper .nature-cat-hud-wrapper .nature-cat-hud-inner ul li, .nature-cat-hud .nature-cat-hud-outer-wrapper .actions-wrapper .nature-cat-hud-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: #ffce00;
        border: 6px solid white; }
        .nature-cat-hud .nature-cat-hud-outer-wrapper .nature-cat-hud-wrapper .nature-cat-hud-inner ul li.grayed-out, .nature-cat-hud .nature-cat-hud-outer-wrapper .actions-wrapper .nature-cat-hud-inner ul li.grayed-out {
          background-color: #d3d3d3 !important; }
        .nature-cat-hud .nature-cat-hud-outer-wrapper .nature-cat-hud-wrapper .nature-cat-hud-inner ul li.nature-cat-hud-switch, .nature-cat-hud .nature-cat-hud-outer-wrapper .actions-wrapper .nature-cat-hud-inner ul li.nature-cat-hud-switch {
          background-color: #ffce00; }
          .nature-cat-hud .nature-cat-hud-outer-wrapper .nature-cat-hud-wrapper .nature-cat-hud-inner ul li.nature-cat-hud-switch .btn, .nature-cat-hud .nature-cat-hud-outer-wrapper .actions-wrapper .nature-cat-hud-inner ul li.nature-cat-hud-switch .btn {
            padding: 0px; }
        .nature-cat-hud .nature-cat-hud-outer-wrapper .nature-cat-hud-wrapper .nature-cat-hud-inner ul li:hover, .nature-cat-hud .nature-cat-hud-outer-wrapper .nature-cat-hud-wrapper .nature-cat-hud-inner ul li.active, .nature-cat-hud .nature-cat-hud-outer-wrapper .actions-wrapper .nature-cat-hud-inner ul li:hover, .nature-cat-hud .nature-cat-hud-outer-wrapper .actions-wrapper .nature-cat-hud-inner ul li.active {
          background-color: #ffffff; }
        .nature-cat-hud .nature-cat-hud-outer-wrapper .nature-cat-hud-wrapper .nature-cat-hud-inner ul li button, .nature-cat-hud .nature-cat-hud-outer-wrapper .actions-wrapper .nature-cat-hud-inner ul li button {
          position: relative;
          width: 58px;
          height: 58px;
          display: block;
          outline: none; }

#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; }

.jet-hud {
  position: absolute;
  bottom: 20px;
  left: 228px; }
  .jet-hud .jet-hud-outer-wrapper {
    float: left;
    position: relative;
    margin-left: 0px; }
    .jet-hud .jet-hud-outer-wrapper .jet-hud-wrapper, .jet-hud .jet-hud-outer-wrapper .actions-wrapper {
      float: left;
      position: relative; }
      .jet-hud .jet-hud-outer-wrapper .jet-hud-wrapper .jet-hud-inner ul li, .jet-hud .jet-hud-outer-wrapper .actions-wrapper .jet-hud-inner ul li {
        float: left;
        margin-right: 7px;
        width: 70px;
        height: 70px;
        -webkit-border-radius: 42px;
        -moz-border-radius: 42px;
        -ms-border-radius: 42px;
        -o-border-radius: 42px;
        border-radius: 42px;
        background-color: #6800bf;
        border: 6px solid white; }
        .jet-hud .jet-hud-outer-wrapper .jet-hud-wrapper .jet-hud-inner ul li.grayed-out, .jet-hud .jet-hud-outer-wrapper .actions-wrapper .jet-hud-inner ul li.grayed-out {
          background-color: #d3d3d3 !important; }
        .jet-hud .jet-hud-outer-wrapper .jet-hud-wrapper .jet-hud-inner ul li.jet-hud-switch, .jet-hud .jet-hud-outer-wrapper .actions-wrapper .jet-hud-inner ul li.jet-hud-switch {
          background-color: #6800bf; }
          .jet-hud .jet-hud-outer-wrapper .jet-hud-wrapper .jet-hud-inner ul li.jet-hud-switch .btn, .jet-hud .jet-hud-outer-wrapper .actions-wrapper .jet-hud-inner ul li.jet-hud-switch .btn {
            padding: 0px; }
        .jet-hud .jet-hud-outer-wrapper .jet-hud-wrapper .jet-hud-inner ul li:hover, .jet-hud .jet-hud-outer-wrapper .jet-hud-wrapper .jet-hud-inner ul li.active, .jet-hud .jet-hud-outer-wrapper .actions-wrapper .jet-hud-inner ul li:hover, .jet-hud .jet-hud-outer-wrapper .actions-wrapper .jet-hud-inner ul li.active {
          background-color: #b459ff; }
        .jet-hud .jet-hud-outer-wrapper .jet-hud-wrapper .jet-hud-inner ul li button, .jet-hud .jet-hud-outer-wrapper .actions-wrapper .jet-hud-inner ul li button {
          position: relative;
          width: 58px;
          height: 58px;
          display: block;
          outline: none; }

#vote_process .big-close-button, #explore_vote .big-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1; }

#vote_process .rewards-text, #explore_vote .rewards-text {
  font-size: 24px; }

#vote_process .firefly, #explore_vote .firefly {
  background: red; }

#vote_process .sunflower, #vote_process .firefly, #vote_process .venus, #explore_vote .sunflower, #explore_vote .firefly, #explore_vote .venus {
  background: #80db16; }

#vote_process .wolf, #explore_vote .wolf {
  background: white; }

#vote_process .pelican, #vote_process .archerfish, #explore_vote .pelican, #explore_vote .archerfish {
  background: #fedf00; }

#vote_process .clue, #explore_vote .clue {
  width: 100px;
  height: 100px;
  margin: 10px;
  border-radius: 55px; }

#vote_process .question-mark-container, #explore_vote .question-mark-container {
  background: white; }

#vote_process .question-mark, #explore_vote .question-mark {
  top: 21px;
  position: relative; }

#vote_process .clues, #explore_vote .clues {
  position: relative;
  display: flex;
  left: 75px; }
  #vote_process .clues p, #explore_vote .clues p {
    position: relative;
    font-size: 82px; }

#vote_process .dialog, #explore_vote .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: #ffbb00;
  border-color: white;
  border-style: solid;
  border-width: 8px; }
  #vote_process .dialog .text-container p, #explore_vote .dialog .text-container p {
    color: white;
    font-family: 'pbs_kids_headlinebold'; }
  #vote_process .dialog .text-container .question, #explore_vote .dialog .text-container .question {
    margin-top: 35px;
    font-size: 60px; }
  #vote_process .dialog .text-container .rewards-question, #explore_vote .dialog .text-container .rewards-question {
    font-size: 50px;
    margin-top: 24px; }
  #vote_process .dialog .text-container .congratulation, #explore_vote .dialog .text-container .congratulation {
    font-size: 47px;
    margin-top: 55px; }
  #vote_process .dialog .answers-container, #explore_vote .dialog .answers-container {
    display: inline-block;
    position: relative;
    top: 20px; }
    #vote_process .dialog .answers-container .answer, #explore_vote .dialog .answers-container .answer {
      float: left;
      position: relative;
      width: 150px;
      height: 150px;
      background-color: white;
      margin-left: 10px;
      margin-right: 10px; }
      #vote_process .dialog .answers-container .answer.non-active-answer, #explore_vote .dialog .answers-container .answer.non-active-answer {
        opacity: 0.5; }
      #vote_process .dialog .answers-container .answer img, #explore_vote .dialog .answers-container .answer img {
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translate(-50%, -50%); }
        #vote_process .dialog .answers-container .answer img.voted-badge, #explore_vote .dialog .answers-container .answer img.voted-badge {
          top: 180px; }
      #vote_process .dialog .answers-container .answer .vote-element, #explore_vote .dialog .answers-container .answer .vote-element {
        position: absolute;
        transform: translate(-50%);
        bottom: -60px;
        width: 60px;
        border-radius: 10px; }
      #vote_process .dialog .answers-container .answer .vote-button, #explore_vote .dialog .answers-container .answer .vote-button {
        background-color: #80db16;
        margin-bottom: 10px;
        color: white; }
        #vote_process .dialog .answers-container .answer .vote-button:hover, #explore_vote .dialog .answers-container .answer .vote-button:hover {
          margin-bottom: 0px; }
      #vote_process .dialog .answers-container .answer .vote-background, #explore_vote .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: #ffbb00;
  border-color: white;
  border-style: solid;
  border-width: 8px; }
  #vote_winner .dialog .text-container p {
    color: white;
    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; }

.mediumicon-emote-cat {
  background: url("images/events/voting/emotes_icons.png") top left;
  background-position: 0 0; }

.mediumicon-emote-dog {
  background: url("images/events/voting/emotes_icons.png") top left;
  background-position: -48px 0; }

.mediumicon-emote-shark {
  background: url("images/events/voting/emotes_icons.png") top left;
  background-position: -96px 0; }

.mediumicon-emote-sloth {
  background: url("images/events/voting/emotes_icons.png") top left;
  background-position: -144px 0; }

.mediumicon-emote-star {
  background: url("images/events/voting/emotes_icons.png") top left;
  background-position: -192px 0; }

#explore_clue h1 {
  color: black;
  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 {
  background: red; }

#explore_clue .sunflower, #explore_clue .firefly, #explore_clue .venus {
  background: #80db16; }

#explore_clue .wolf {
  background: white; }

#explore_clue .pelican, #explore_clue .archerfish {
  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: black;
  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 {
  background: red; }

#explore_rewards .sunflower, #explore_rewards .firefly, #explore_rewards .venus {
  background: #80db16; }

#explore_rewards .wolf {
  background: white; }

#explore_rewards .pelican, #explore_rewards .archerfish {
  background: #fedf00; }

#explore_rewards .clue {
  width: 100px;
  height: 100px;
  margin: 10px;
  border-radius: 55px; }

#explore_rewards .question-mark-container {
  background: white; }

#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: #ffbb00;
  border-color: white;
  border-style: solid;
  border-width: 8px; }
  #explore_rewards .dialog .text-container p {
    color: white;
    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: white;
      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: white; }
        #explore_rewards .dialog .answers-container .answer .vote-button:hover {
          margin-bottom: 0px; }
      #explore_rewards .dialog .answers-container .answer .vote-background {
        background-color: #497607;
        height: 30px; }

#splash .background {
  top: 0px;
  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 .parents, #trampoline .more-apps, #trampoline .settings, #trampoline .help {
    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 .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: .15s;
      animation-duration: .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 0% 0%; }
    #trampoline section.help nav h1 {
      display: inline-block;
      margin-left: 15px;
      font-size: 24px;
      color: white;
      text-transform: uppercase;
      font-family: PBS_KIDS_Headline_Bold;
      letter-spacing: .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: white;
        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 .4em 0; }
        #trampoline section.help .content-wrapper .content .panel article p {
          color: black;
          font-family: Colfax-Regular;
          line-height: 1.45em;
          font-size: 16px;
          margin-bottom: 1em; }
