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

Copyright (c) 2015 Daniel Eden
*/

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

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

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

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

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

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

  25%, 75% {
    opacity: 0;
  }
}

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

  25%, 75% {
    opacity: 0;
  }
}

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

/* 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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

/* 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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

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

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

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

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

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

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

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

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

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

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

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

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

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

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

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

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

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

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

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

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

/* 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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/**
 * bbPress specific CSS
 *
 * @package bbPress
 * @subpackage Theme
 */

/* =bbPress Style
-------------------------------------------------------------- */

#bbpress-forums hr {
	margin: 0 0 24px 0;
}

#bbpress-forums {
	background: transparent;
	clear: both;
	margin-bottom: 20px;
	overflow: hidden;
	font-size: 12px;
}

#bbpress-forums div.even,
#bbpress-forums ul.even {
	background-color: #fff;
}

#bbpress-forums div.odd,
#bbpress-forums ul.odd {
	background-color: #fbfbfb;
}

body.reply-edit .reply {
	float: none;
}

#bbpress-forums div.reply {
	height: auto;
	width: 100%;
}

#bbpress-forums div.bbp-forum-header,
#bbpress-forums div.bbp-topic-header,
#bbpress-forums div.bbp-reply-header {
	background-color: #f4f4f4;
}

#bbpress-forums .status-trash.even,
#bbpress-forums .status-spam.even {
	background-color: #fee;
}
#bbpress-forums .status-trash.odd,
#bbpress-forums .status-spam.odd {
	background-color: #fdd;
}

#bbpress-forums .status-closed,
#bbpress-forums .status-closed a {
	color: #ccc;
}

#bbpress-forums ul {
	background:  none;
	list-style: none;
	margin: 0;
	padding: 0;
}

#bbpress-forums ul.bbp-threaded-replies {
	margin-left: 50px;
}

#bbpress-forums li {
	background: none;
	margin: 0;
	list-style: none;
}

#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results {
	font-size: 12px;
	overflow: hidden;
	border: 1px solid #eee;
	margin-bottom: 20px;
	clear: both;
}

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-body,
#bbpress-forums li.bbp-footer {
	clear: both;
}

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
	background: #f3f3f3;
	border-top: 1px solid #eee;
	font-weight: bold;
	padding: 8px;
	text-align: center;
}

#bbpress-forums li.bbp-header {
	background: #eaeaea;
}

#bbpress-forums li.bbp-header ul {
	overflow: hidden;
}

#bbpress-forums .bbp-forums-list {
	margin: 0 0 0 5px;
	padding-left: 15px;
	border-left: 1px solid #ddd;
}

#bbpress-forums .bbp-forums-list li {
	display: inline;
	font-size: 11px;
}

#bbpress-forums li.bbp-footer p {
	margin: 0;
	line-height: 1em;
}

li.bbp-forum-info,
li.bbp-topic-title {
	float: left;
	text-align: left;
	width: 55%;
}
li.bbp-forum-topic-count,
li.bbp-topic-voice-count,
li.bbp-forum-reply-count,
li.bbp-topic-reply-count {
	float: left;
	text-align: center;
	width: 10%;
}

li.bbp-forum-freshness,
li.bbp-topic-freshness {
	text-align: center;
	float: left;
	width: 22%;
}

#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic {
	border-top: 1px solid #eee;
	overflow: hidden;
	padding: 8px;
}

li.bbp-header div.bbp-topic-content span#subscription-toggle,
li.bbp-header div.bbp-topic-content span#favorite-toggle,
li.bbp-header div.bbp-reply-content span#subscription-toggle,
li.bbp-header div.bbp-reply-content span#favorite-toggle {
	float: right;
}

#bbpress-forums div.bbp-forum-title h3,
#bbpress-forums div.bbp-topic-title h3,
#bbpress-forums div.bbp-reply-title h3 {
	background: none;
	border: none;
	font-size: 16px;
 	line-height: 1em;
 	margin: 8px 0;
	padding: 0;
	text-transform: none;
}

#bbpress-forums div.bbp-forum-author,
#bbpress-forums div.bbp-topic-author,
#bbpress-forums div.bbp-reply-author {
	float: left;
	text-align: center;
	width: 115px;
}

#bbpress-forums div.bbp-forum-author img.avatar,
#bbpress-forums div.bbp-topic-author img.avatar,
#bbpress-forums div.bbp-reply-author img.avatar {
	border: none;
	max-width: 80px;
	padding: 0;
	margin: 12px auto 0 auto;
	float: none;
}

#bbpress-forums div.bbp-forum-author a.bbp-author-name,
#bbpress-forums div.bbp-topic-author a.bbp-author-name,
#bbpress-forums div.bbp-reply-author a.bbp-author-name {
	margin: 0 12px;
	word-break: break-word;
	display: inline-block;
}

#bbpress-forums div.bbp-topic-author a.bbp-author-name,
#bbpress-forums div.bbp-reply-author a.bbp-author-name {
	clear: left;
	display: block;
}

#bbpress-forums div.bbp-forum-author .bbp-author-role,
#bbpress-forums div.bbp-topic-author .bbp-author-role,
#bbpress-forums div.bbp-reply-author .bbp-author-role {
	font-size: 11px;
	font-style: italic;
}

#bbpress-forums li.bbp-header .bbp-search-author,
#bbpress-forums li.bbp-footer .bbp-search-author,
#bbpress-forums li.bbp-header .bbp-forum-author,
#bbpress-forums li.bbp-footer .bbp-forum-author,
#bbpress-forums li.bbp-header .bbp-topic-author,
#bbpress-forums li.bbp-footer .bbp-topic-author,
#bbpress-forums li.bbp-header .bbp-reply-author,
#bbpress-forums li.bbp-footer .bbp-reply-author {
	float: left;
	margin: 0;
	padding: 0;
	width: 120px;
}

#bbpress-forums li.bbp-header .bbp-search-content,
#bbpress-forums li.bbp-footer .bbp-search-content,
#bbpress-forums li.bbp-header .bbp-forum-content,
#bbpress-forums li.bbp-footer .bbp-forum-content,
#bbpress-forums li.bbp-header .bbp-topic-content,
#bbpress-forums li.bbp-footer .bbp-topic-content,
#bbpress-forums li.bbp-header .bbp-reply-content,
#bbpress-forums li.bbp-footer .bbp-reply-content {
	margin-left: 140px;
	padding: 0;
	text-align: left;
}

div.bbp-forum-header,
div.bbp-topic-header,
div.bbp-reply-header,
li.bbp-body div.hentry {
	margin-bottom: 0;
	overflow: hidden;
	padding: 8px;
}

div.bbp-forum-header,
div.bbp-topic-header,
div.bbp-reply-header {
	border-top: 1px solid #ddd;
	clear: both;
}

span.bbp-author-ip {
	font-family: 'Helvetica Neue', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
	font-size: 9px;
	font-weight: bold;
	color: #aaa;
}

/* =Topic and reply content
-------------------------------------------------------------- */

#bbpress-forums div.bbp-forum-content,
#bbpress-forums div.bbp-topic-content,
#bbpress-forums div.bbp-reply-content {
	margin-left: 130px;
	padding: 12px 12px 12px 0;
	text-align: left;
}

/* Clearing hack */
#bbpress-forums div.bbp-forum-content:after,
#bbpress-forums div.bbp-topic-content:after,
#bbpress-forums div.bbp-reply-content:after {
	clear: both;
	content: ".";
	display: block;
	float: none;
	height: 0;
	font-size: 0;
	visibility: hidden;
}

#bbpress-forums div.bbp-topic-content a,
#bbpress-forums div.bbp-reply-content a {
	background: none;
	border: none;
	display: inline;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

#bbpress-forums div.bbp-topic-content h1,
#bbpress-forums div.bbp-reply-content h1,
#bbpress-forums div.bbp-topic-content h2,
#bbpress-forums div.bbp-reply-content h2,
#bbpress-forums div.bbp-topic-content h3,
#bbpress-forums div.bbp-reply-content h3,
#bbpress-forums div.bbp-topic-content h4,
#bbpress-forums div.bbp-reply-content h4,
#bbpress-forums div.bbp-topic-content h5,
#bbpress-forums div.bbp-reply-content h5,
#bbpress-forums div.bbp-topic-content h6,
#bbpress-forums div.bbp-reply-content h6 {
	clear: none;
	line-height: 1em;
	margin: 24px 0;
	padding: 0;
}

#bbpress-forums div.bbp-topic-content img,
#bbpress-forums div.bbp-reply-content img {
	max-width: 100%;
}

#bbpress-forums div.bbp-topic-content ul,
#bbpress-forums div.bbp-reply-content ul,
#bbpress-forums div.bbp-topic-content ol,
#bbpress-forums div.bbp-reply-content ol {
	margin: 0 15px 15px;
	padding: 0;
}

#bbpress-forums div.bbp-topic-content ul li,
#bbpress-forums div.bbp-reply-content ul li {
	list-style-type: disc;
}

#bbpress-forums div.bbp-topic-content ol li,
#bbpress-forums div.bbp-reply-content ol li {
	list-style-type: decimal;
}

#bbpress-forums div.bbp-topic-content ol li li,
#bbpress-forums div.bbp-reply-content ol li li {
	list-style-type: lower-alpha;
}

#bbpress-forums div.bbp-topic-content ol li li li,
#bbpress-forums div.bbp-reply-content ol li li li {
	list-style-type: upper-roman;
}

#bbpress-forums div.bbp-topic-content code,
#bbpress-forums div.bbp-reply-content code,
#bbpress-forums div.bbp-topic-content pre,
#bbpress-forums div.bbp-reply-content pre {
	font-family: Inconsolata, Consolas, Monaco, Lucida Console, monospace;
	display: inline-block;
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	padding: 0 5px;
	max-width: 95%;
	vertical-align: middle;
	margin-top: -3px;
}

#bbpress-forums div.bbp-topic-content pre,
#bbpress-forums div.bbp-reply-content pre {
	display: block;
	line-height: 18px;
	margin: 0 0 24px;
	padding: 5px 10px;
	white-space: pre;
	overflow: auto;
}

#bbpress-forums div.bbp-topic-content pre code,
#bbpress-forums div.bbp-reply-content pre code {
	display: block;
	border: none;
	padding: 0;
	margin: 0;
	background-color: transparent;
	overflow-wrap: normal;
	overflow: auto;
	max-width: 100%;
}

/* =Reply to
-------------------------------------------------------------- */

#bbpress-forums div.bbp-reply-to {
	margin-left: 130px;
	padding: 12px 12px 12px 0;
	text-align: right;
}

#bbpress-forums div#bbp-cancel-reply-to {
	text-align: right;
}

/* =Breadcrumb and Tags
-------------------------------------------------------------- */

div.bbp-breadcrumb {
	float: left;
}

div.bbp-breadcrumb,
div.bbp-topic-tags {
	font-size: 12px;
}

#bbpress-forums div.bbp-breadcrumb p,
#bbpress-forums div.bbp-topic-tags p {
	margin-bottom: 10px
}

#bbpress-forums div.bbp-topic-tags {
	float: right;
}

#bbp-topic-hot-tags {
	clear: both;
}

/* =Search
-------------------------------------------------------------- */

#bbpress-forums #bbp-search-form {
	clear: left;
}

	#bbpress-forums #bbp-search-form .hidden {
		height: 0;
		width: 0;
		overflow: hidden;
		position: absolute;
		background: none;
		left: -999em;
	}

	#bbpress-forums #bbp-search-form #bbp_search {
		display: inline-block;
		width: 100%;
	}

#bbpress-forums div.bbp-search-form {
	float: right;
}

/* =Admin Links
-------------------------------------------------------------- */

span.bbp-admin-links {
	float: right;
	color: #ddd;
	margin-top: 10px;
}
span.bbp-admin-links a {
	color: #bbb;
	font-weight: normal;
	font-size: 10px;
	text-transform: uppercase;
	text-decoration: none;
}
fieldset span.bbp-admin-links {
	float: left;
}
tr td span.bbp-admin-links a:hover {
	color: #ff4b33;
}
td.bbp-topic-admin-links,
td.bbp-topic-counts {
	width: 50%;
}

.bbp-forum-header a.bbp-forum-permalink,
.bbp-topic-header a.bbp-topic-permalink,
.bbp-reply-header a.bbp-reply-permalink {
	float: right;
	margin-left: 10px;
	color: #ccc;
}

/* =Toggles
-------------------------------------------------------------- */

.bbp-row-actions #favorite-toggle a {
	text-decoration: none;
	padding: 0 3px 1px;
	color: #7c7;
	border: 1px solid #aca;
	background-color: #dfd;
	font-weight: bold;
	font-size: 13px;
	}
	.bbp-row-actions #favorite-toggle a:hover {
		color: #5a5;
		border-color: #7c7;
		background-color: #beb;
	}
	.bbp-row-actions #favorite-toggle span.is-favorite a {
		color: #faa;
		border: 1px solid #faa;
		background-color: #fee;
		}
		.bbp-row-actions #favorite-toggle span.is-favorite a:hover {
			color: #c88;
			border-color: #c88;
			background-color: #fdd;
		}

.bbp-row-actions #subscription-toggle a {
	text-decoration: none;
	padding: 0 3px 1px;
	color: #7c7;
	border: 1px solid #aca;
	background-color: #dfd;
	font-weight: bold;
	font-size: 13px;
	}
	.bbp-row-actions #subscription-toggle a:hover {
		color: #5a5;
		border-color: #7c7;
		background-color: #beb;
	}
	.bbp-row-actions #subscription-toggle span.is-subscribed a {
		color: #faa;
		border: 1px solid #faa;
		background-color: #fee;
		}
		.bbp-row-actions #subscription-toggle span.is-subscribed a:hover {
			color: #c88;
			border-color: #c88;
			background-color: #fdd;
		}

#bbpress-forums .bbp-forum-info .bbp-forum-content,
#bbpress-forums p.bbp-topic-meta {
	font-size: 11px;
	margin: 5px 0 5px;
	padding: 0;
	word-wrap: break-word;
}

#bbpress-forums p.bbp-topic-meta span {
	white-space: nowrap;
}

/* =Pagination
-------------------------------------------------------------- */

.bbp-pagination-count {
	float: left;
	border: 1px solid transparent;
	display: none;
}

.bbp-pagination-links {
	float: right;
	list-style: none;
	display: inline;
	margin-bottom: 10px;
	}
	.bbp-pagination-links a,
	.bbp-pagination-links span.current {
		display: block;
		float: left;
		padding: 0px 10px;
		line-height: 28px;
		margin-left: 6px;
		text-decoration: none;
		color: #A8A8A8 !important;
			font-size: 15px;
		}
		.bbp-pagination-links span.current {
			background: #fff;
			opacity: 0.8;
			border: 1px solid #e0e0e0;
			color: #373C43 !important;
			font-weight: bold;
		}
		.base-box .bbp-pagination-links span.current {
			border-color: #eaeaea;
		}
		.bbp-pagination-links a:hover {
			color: #000 !important;
		}

	.bbp-pagination-links span.dots {
		display: block;
		float: left;
		padding: 1px 4px;
		margin-left: 5px;
	}

.bbp-pagination {
	float: left;
	width: 100%;
}

.bbp-topic-pagination {
	display: inline-block;
	margin-left: 5px;
	margin-bottom: 2px;
	}
	.bbp-topic-pagination a {
		font-size: 10px;
		line-height: 10px;
		padding: 1px 3px;
		border: 1px solid #ddd;
		text-decoration: none;
	}


/* =Forms
-------------------------------------------------------------- */

#bbpress-forums fieldset.bbp-form {
	clear: left;
}

#bbpress-forums fieldset.bbp-form {
	border: 1px solid #eee;
	padding: 10px 20px;
	margin-bottom: 10px;
}

#bbpress-forums fieldset.bbp-form legend {
	padding: 5px;
}

#bbpress-forums fieldset.bbp-form label {
	margin: 0;
	display: inline-block;
	margin-bottom: 5px;
}

#bbp-edit-topic-tag.bbp-form fieldset.bbp-form label,
#bbp-login fieldset label,
#bbp-register fieldset label,
#bbp-lost-pass fieldset label {
	width: 100px;
}

#bbpress-forums fieldset.bbp-form p,
#bbpress-forums fieldset.bbp-form textarea,
#bbpress-forums fieldset.bbp-form select,
#bbpress-forums fieldset.bbp-form input {
	margin: 0 0 8px;
}

textarea#bbp_reply_content,
textarea#bbp_topic_content,
textarea#bbp_forum_content {
	width: 97%;
	box-sizing: border-box;
}

textarea#bbp_forum_content {
	height: 210px;
}

#bbpress-forums fieldset.bbp-forum-form-attributes {
	width: 200px;
	float: right;
	clear: none;
	margin-left: 25px;
}

/**
 * Fix for too-long forum names, usually from conversion
 */
#bbpress-forums fieldset select#bbp_forum_id {
	max-width: 200px;
}

.bbp-topic-form,
.bbp-reply-form,
.bbp-topic-tag-form {
	clear: left;
}
body.topic-edit .bbp-topic-form div.avatar img,
body.reply-edit .bbp-reply-form div.avatar img,
body.single-forum .bbp-topic-form div.avatar img,
body.single-reply .bbp-reply-form div.avatar img {
	margin-right: 0;
	padding: 10px;
	border: 1px solid #ddd;
	line-height: 0;
	background-color: #efefef;
}

body.page .bbp-reply-form code,
body.page .bbp-topic-form code,
body.single-topic .bbp-reply-form code,
body.single-forum .bbp-topic-form code,
body.topic-edit .bbp-topic-form code,
body.reply-edit .bbp-reply-form code {
	font-size: 10px;
	background-color: #f0fff8;
	border: 1px solid #CEEFE1;
	display: block;
	padding: 8px;
	margin-top: 5px;
	width: 369px;
}

#merge_tag,
#delete_tag {
	display: inline;
}

div.bbp-submit-wrapper {
	margin-top: 15px;
	float: right;
	clear: both;
}

p.form-allowed-tags {
	max-width: 100%;
}

/* =TinyMCE in themes
-------------------------------------------------------------- */
#bbpress-forums div.bbp-the-content-wrapper {
	margin-bottom: 20px;
}

#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
	width: 100%;
	margin: 0;
	font-size: 12px;
}

#bbpress-forums div.bbp-the-content-wrapper table,
#bbpress-forums div.bbp-the-content-wrapper tbody,
#bbpress-forums div.bbp-the-content-wrapper tr,
#bbpress-forums div.bbp-the-content-wrapper td {
	border: none;
	padding: 0;
	margin: 0;
	width: auto;
	line-height: 1em;
}

#bbpress-forums div.bbp-the-content-wrapper input {
	font-size: 12px;
	padding: 5px;
	margin: 0 5px 0 0;
	line-height: 1em;
}

#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
	padding: 10px;
	min-height: 26px;
	border-bottom: 1px solid #e5e5e5;
}
#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar {
	padding: 4px 4px 8px;
}

#bbpress-forums div.wp-editor-container {
	margin: 0;
	padding: 0;
	line-height: 0;
}

#bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar {
	line-height: 16px;
}

/* =Edit User
-------------------------------------------------------------- */

#bbpress-forums #bbp-your-profile fieldset {
	padding: 20px 20px 0 20px;
}
	#bbpress-forums #bbp-your-profile fieldset div {
		margin-bottom: 20px;
		float: left;
		width: 100%;
		clear: left;
	}
	#bbpress-forums #bbp-your-profile fieldset select {
		margin-bottom: 0;
	}
	#bbpress-forums #bbp-your-profile fieldset input,
	#bbpress-forums #bbp-your-profile fieldset textarea {
		margin-bottom: 0;
		width: 60%;
		background: #f8f8f8;
		border: 1px solid #eaeaea;
		box-shadow: none;
		padding: 5px 8px;
		border-radius: 0;
	}
	#bbpress-forums #bbp-your-profile fieldset input:focus,
	#bbpress-forums #bbp-your-profile fieldset textarea:focus {
	}
	#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox {
		width: auto;
	}
	#bbpress-forums #bbp-your-profile fieldset legend {
		display: none;
	}
	#bbpress-forums #bbp-your-profile fieldset label[for] {
		float: left;
		width: 20%;
		padding: 5px 20px 5px 0;
		text-align: right;
		cursor: pointer;
	}
	#bbpress-forums #bbp-your-profile fieldset dl label[for] {
		text-align: left;
		width: 60%;
	}
	#bbpress-forums #bbp-your-profile fieldset span.description {
		margin: 5px 0 0 20%;
		font-size: 12px;
		font-style: italic;
		float: left;
		clear: left;
		width: 60%;
		padding: 5px 8px;
	}

	#bbpress-forums #bbp-your-profile fieldset fieldset {
		margin: 0;
		border: none;
		padding: 0;
		clear: none;
		float: none;
	}
	#bbpress-forums #bbp-your-profile fieldset fieldset.password {
		width: 60%;
		display: inline;
	}
	#bbpress-forums #bbp-your-profile fieldset fieldset.password input,
	#bbpress-forums #bbp-your-profile fieldset fieldset.password span {
		width: 100%;
	}
	#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl {
		margin: 0;
	}
	#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description {
		margin-left: 0;
		margin-bottom: 20px;
	}

	#bbpress-forums #bbp-your-profile fieldset.submit button {
		float: right;
	}

/* =Notices
-------------------------------------------------------------- */
div.bbp-template-notice:after,
div.indicator-hint:after {
	display: none;
}
div.bbp-template-notice,
div.indicator-hint {
	color: #40454d;
	font-size: 15px;
	font-weight: bold;
	padding: 14px !important;
	padding-left: 88px !important;
}
div.bbp-template-notice:before,
div.indicator-hint:before {
	content: '!';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 67px;
	border-right: 1px solid #e0e0e0;
	line-height: 50px;
	font-size: 36px;
	text-align: center;
}
div.bbp-template-notice.error:before {
	border-color:#CC0000 ;
}
div.bbp-template-notice.error {
	color: #CC0000;
}
div.bbp-template-notice a {
	color: #555;
	text-decoration: none;
}
	div.bbp-template-notice a:hover {
		color: #000;
	}
	div.bbp-template-notice.info {
		border: #cee1ef 1px solid;
		background-color: #f0f8ff;
	}
	div.bbp-template-notice.important {
		border: #e6db55 1px solid;
		background-color: #fffbcc;
	}
	div.bbp-template-notice.error,
	div.bbp-template-notice.warning {
		background-color: #ffebe8;
		border-color: #c00;
	}
	div.bbp-template-notice.error a,
	div.bbp-template-notice.warning a {
		color: #c00;
	}
	div.bbp-template-notice p {
		margin: 0 !important;
	}

 #bbpress-forums fieldset.bbp-form .base-box legend:after {
	display: none;
 }
/* =Stickies
-------------------------------------------------------------- */

.bbp-topics-front ul.super-sticky,
.bbp-topics ul.super-sticky,
.bbp-topics ul.sticky,
.bbp-forum-content ul.sticky {
	background-color: #ffffe0 !important;
	font-size: 1.1em;
}

/* =Revisions
-------------------------------------------------------------- */

#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
	border-top: 1px dotted #ddd;
	width: 100%;
	margin: 0;
	padding: 8px 0 0 0;
	font-size: 11px;
	color: #aaa;
}

#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li,
#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li,
#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li {
	list-style-type: none;
}

/* =Widgets
-------------------------------------------------------------- */

.bbp-login-form fieldset legend {
	display: none;
}

.bbp-login-form .bbp-username input,
.bbp-login-form .bbp-email input,
.bbp-login-form .bbp-password input {
	padding: 5px;
}

.bbp-login-form label {
	width: 140px;
	display: inline-block;
}

#sidebar .bbp-login-form label {
	width: 70px;
}

.bbp-login-form .bbp-username,
.bbp-login-form .bbp-email,
.bbp-login-form .bbp-password,
.bbp-login-form .bbp-remember-me,
.bbp-login-form .bbp-submit-wrapper {
	margin-top: 10px;
}

.bbp-login-form .bbp-remember-me {

}

.bbp-login-form .bbp-submit-wrapper {
	text-align: right;
}

.bbp-login-form .bbp-login-links {
}

.bbp-login-form .bbp-login-links a {
	float: left;
	clear: left;
}

.bbp-logged-in img.avatar {
	float: left;
	margin: 0 15px 0 0;
}

.bbp-logged-in h4 {
	font-weight: bold;
	font-size: 1.3em;
	clear: none;
	margin-bottom: 10px;
}

/* =Avatars
-------------------------------------------------------------- */

#bbpress-forums p.bbp-topic-meta img.avatar,
#bbpress-forums ul.bbp-reply-revision-log img.avatar,
#bbpress-forums ul.bbp-topic-revision-log img.avatar,
#bbpress-forums div.bbp-template-notice img.avatar,
#bbpress-forums .widget_display_topics img.avatar,
#bbpress-forums .widget_display_replies img.avatar {
	float: none;
	margin-bottom: -7px;
	border: 3px double #ddd;
}

fieldset div.avatar {
	float: right;
}

/* =BuddyPress Activity Streams
-------------------------------------------------------------- */

.activity-list li.bbp_topic_create .activity-content .activity-inner,
.activity-list li.bbp_reply_create .activity-content .activity-inner {
	border-left: 2px solid #eaeaea;
	margin-left: 5px;
	padding-left: 10px;
}

/* =User Pages
-------------------------------------------------------------- */

#bbpress-forums h1 {
	clear: none;
	font-size: 1.8em;
	line-height: 1em;
	padding-bottom: 10px;
}

#bbpress-forums #bbp-user-wrapper {
	float: left;
	width: 100%;
}

#bbpress-forums .bbp-user-section {
	overflow: auto;
}
#bbpress-forums .bbp-user-section p {
	margin-bottom: 0;
}

#bbpress-forums #bbp-user-wrapper h2.entry-title {
	font-size: 1.4em;
	margin: 0;
	padding-bottom: 10px;
	padding-top: 0;
	clear: none;
}

#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,
#bbpress-forums #bbp-user-wrapper ul.bbp-topics,
#bbpress-forums #bbp-user-wrapper ul.bbp-forums,
#bbpress-forums #bbp-user-wrapper ul.bbp-replies,
#bbpress-forums #bbp-user-wrapper fieldset.bbp-form {
	clear: none;
}

#bbpress-forums #bbp-single-user-details {
	margin: 0;
	width: 150px;
	float: left;
	overflow: hidden;
}
#bbpress-forums #bbp-single-user-details+ul {
	margin-left: 170px;
	margin-bottom: 20px;
}

#bbpress-forums #bbp-single-user-details #bbp-user-avatar {
	margin: 0;
	width: 150px;
}

#bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar {
	border: none;
	height: 150px;
	padding: 0;
	margin: 0;
	width: 150px;
}

#bbpress-forums #bbp-single-user-details #bbp-user-description {
	float: none;
	margin-left: 170px;
}

#bbpress-forums #bbp-single-user-details #bbp-user-navigation {
	float: none;
	margin: 0;
	border: 1px solid #e5e5e5;
	border-top: 0;
}

#bbpress-forums #bbp-single-user-details #bbp-user-navigation li {
	margin: 0;
}

#bbpress-forums #bbp-single-user-details #bbp-user-navigation a {
	padding: 5px 8px;
	display: block;
	border: 1px solid transparent;
	text-decoration: none;
	color: 	#8E8E8E;
}

#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a {
	background: #eee;
	color: 	#40454D;
	
}

#bbpress-forums #bbp-user-body {
	margin-left: 170px;
}

body.my-account #bbpress-forums {
	border-top: none;
	padding-top: 0;
	margin-bottom: 0;
}
#bbpress-forums #bbp-user-body .base-box.bst {
	display: none;
}

/* =User Capabilities
-------------------------------------------------------------- */

#bbpress-forums dl.bbp-user-capabilities {
	display: inline-block;
	vertical-align: top;
}

#bbpress-forums dl.bbp-user-capabilities dt {
	margin: 0 0 10px;
	text-transform: capitalize;
}

#bbpress-forums dl.bbp-user-capabilities dd {
	margin: 0;
	padding: 0;
}

/* =BuddyPress Group Forums
-------------------------------------------------------------- */

#bbpress-forums div.row-actions {
	font-size: 11px;
	visibility: hidden;
}

#bbpress-forums li:hover > div.row-actions {
	visibility: visible;
}

/*--------------------------------------------------------------
 Media Queries
--------------------------------------------------------------*/

/* =Standard Mobile Landscape
-------------------------------------------------------------- */
@media screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) {
	-webkit-text-size-adjust: none;
}
@media only screen and (max-width: 480px) {
	#bbpress-forums div.bbp-topic-tags {
		clear: left;
		float: left;
	}
	div.bbp-search-form input,
	div.bbp-search-form button {
		font-size: 11px;
		padding: 2px;
	}
	li.bbp-forum-info,
	li.bbp-topic-title {
		width: 45%;
	}
	li.bbp-forum-topic-count,
	li.bbp-forum-reply-count,
	li.bbp-topic-voice-count,
	li.bbp-topic-reply-count {
		width: 15%;
	}
	span.bbp-reply-post-date {
		float: left;
	}
	span.bbp-reply-post-date+p {
		clear: both;
	}
	span.bbp-admin-links {
		clear: left;
		float: left;
	}
	#bbpress-forums .bbp-forums-list li {
		display: block;
		font-size: 11px;
	}
	#bbpress-forums .bbp-body div.bbp-reply-author {
		margin: -15px 10px 10px;
		min-height: 100px;
		padding-left: 80px;
		position: relative;
		text-align: left;
		width: 100%;
	}
	#bbpress-forums div.bbp-reply-author a.bbp-author-name {
		clear: none;
		display: inline-block;
		margin-left: 0;
		word-wrap: break-word;
	}
	#bbpress-forums div.bbp-reply-author img.avatar {
		position: absolute;
		top: 15px;
		left: 0;
		width: 60px;
		height: auto;
	}
	#bbpress-forums div.bbp-reply-author .bbp-author-role {
		font-size: 12px;
		font-style: normal;
	}
	#bbpress-forums .bbp-body div.bbp-reply-content {
		clear: both;
		margin: 10px;
		padding: 0;
	}
	#bbpress-forums div.bbp-reply-content p {
		margin-bottom: 1em;
	}
	div.bbp-submit-wrapper {
		float: left;
	}
	#bbpress-forums fieldset.bbp-form {
		padding: 0 10px 10px;
	}
	#bbpress-forums #bbp-user-body {
		clear: both;
		margin-left: 0;
		word-wrap: break-word;
	}
}

/* =Standard Mobile Portrait
-------------------------------------------------------------- */
@media only screen and (max-width: 320px) {

}

/* =Extra Small Mobile
-------------------------------------------------------------- */
@media only screen and (max-width: 240px) {

}
.quicktags-toolbar input {
    height: 28px;
    width: auto;
}

/* ==========================================================================
 *                Search form
   ========================================================================== */
.bbp-search-form {
    float: right;
    width: 145px;
    font-size: 14px;
    position: relative;
    padding-right: 41px;
}
.bbp-search-form input, .mom_bbp-search-form button {
    line-height: 31px;
    height: 31px;
}
.bbp-search-form  #bbp_search {
}
.bbp-search-form #bbp_search_submit {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    color: #b0b3b8;
    border: 1px solid #eaeaea;
    width: 42px;
    height: 31px;
    line-height: 31px;
}


/* ==========================================================================
 *                Forums
   ========================================================================== */
#bbpress-forums li.bbp-header {
    font-size: 14px;
}
#bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results, #bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer {
    border-color: #eaeaea;
}

#bbpress-forums li.bbp-header {
    background: #f8f8f8;
    border-top: 0;
    padding: 0 0 0 20px;
    line-height: 36px;
    color: #4a525d;
}
#bbpress-forums li.bbp-header li {
    padding: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;    
}

#bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic {
    padding: 0 0 0 20px;
}
#bbpress-forums li.bbp-body > ul > li {
    padding: 20px 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-bottom: 200px;
margin-bottom: -180px;
}

#bbpress-forums li.bbp-forum-freshness, #bbpress-forums li.bbp-topic-freshness {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-left: 6px !important;
	
}
#bbpress-forums li.bbp-header > ul > li, #bbpress-forums li.bbp-body > ul > li {
    border: 0px solid #eaeaea;
    border-right-width:1px;
}
#bbpress-forums li.bbp-header > ul > li:last-child, #bbpress-forums li.bbp-body > ul > li:last-child {
    border-right: 0;
}
#bbpress-forums li.bbp-footer {
    display: none;
}

li.bbp-forum-topic-count, li.bbp-topic-voice-count, li.bbp-forum-reply-count, li.bbp-topic-reply-count {
    width: 11%;
}
#bbpress-forums .bbp-forums-list {
    border: 0;
}

#bbpress-forums a.bbp-forum-title, #bbpress-forums a.bbp-topic-permalink, #bbpress-forums .bbp-topic-title h3 a {
    font-size: 18px;
    font-weight: 700;
    color: #4a525d;
}
#bbpress-forums .bbp-forum-info .bbp-forum-content {
    font-size: 12px;
}
#bbpress-forums .bbp-forum-info .bbp-forum-content, #bbpress-forums p.bbp-topic-meta {
    margin: 0;
    color: #878787;
    line-height: 1;
}
#bbpress-forums .sub-forums-list .sub-forum {
    float: left;
    margin-right: 18px;
    font-size: 13px;
    margin-top: 10px;
}
#bbpress-forums .sub-forums-list .sub-forum i {
    font-size: 16px;
    float: left;
    margin-right: 3px;
}
#bbpress-forums a {
    color: #f09217;
}
#bbpress-forums a:hover {
	color: #000;
}

#bbpress-forums ul.odd {
    background: #fff;
}
#bbpress-forums ul.even {
    background: #f8f8f8;
}
.bbp-topic-freshness-author {
    font-size: 13px;
}
.bbp-topic-freshness-author .bbp-author-avatar {
    display: none;
}

div.bbp-breadcrumb {
	display: none;
}

div.bbp-template-notice.info {
	display: none;
}

.bbp-topic-started-by .bbp-author-avatar {
	display: none;
}
#bbpress-forums a.bbp-topic-permalink{
	display: block;
	margin-bottom: 7px;
}
.bbp-topic-started-by {
	font-size: 13px;
}

/* ==========================================================================
 *                Comment form
   ========================================================================== */
.bbp-template-notice {}
#bbpress-forums fieldset.bbp-form {
	padding: 0;
	border: 0;
}

#bbpress-forums fieldset.bbp-form legend {
	display: block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 14px !important;
	width: 100%;
	font-size: 15px;
	font-weight: bold;
	color: #40454D;
	text-align: center;
}
.bbp-the-content-wrapper {
	border: 1px solid #eaeaea;
}

/* ==========================================================================
 *                Single
   ========================================================================== */
div.bbp-forum-header, div.bbp-topic-header, div.bbp-reply-header, li.bbp-body div.hentry {
	padding: 0;
}
#bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-topic-content, #bbpress-forums div.bbp-reply-content {
	padding: 0;
}

#bbpress-forums ul.bbp-replies {
	font-size: 14px;
}
#bbpress-forums ul.bbp-replies .base-box {
	overflow: hidden;
}
#bbpress-forums .bbp-replies  div.odd, #bbpress-forums .bbp-replies  ul.odd {
	background: none;
}


 #bbpress-forums ul.bbp-replies {
	border: none;
 }


#bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author {
	width: 70px;
	margin-right: 20px;
}

#bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-topic-content, #bbpress-forums div.bbp-reply-content {
	margin-left: 90px;
}
#bbpress-forums div.bbp-forum-author img.avatar, #bbpress-forums div.bbp-topic-author img.avatar, #bbpress-forums div.bbp-reply-author img.avatar {
	margin: 0;
	border: 1px solid #e5e5e5;
	padding: 4px;
}

#bbpress-forums div.bbp-topic-author a.bbp-author-name, #bbpress-forums div.bbp-reply-author a.bbp-author-name {
	display: none;
}
#bbpress-forums .bbp-reply-content .bbp-author-avatar, #bbpress-forums .bbp-topic-content .bbp-author-avatar {
	display: none;
}
#bbpress-forums .bbp-reply-content .bbp-author-name, #bbpress-forums .bbp-topic-content .bbp-author-name {
	color: #40454d;
	font-size: 15px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 0;
	display: block;
}

.bbp-reply-post-date {
	font-size: 12px;
	color: #c6c6c6;
	display: block;
	margin-bottom: 7px;
}

.bbp-topic-tags {
	display: none;
}
#bbpress-forums h1.bbp-s-title {
	margin: 0;
	color: #40454D;
	font-weight: 700;
	font-size: 20px;
	padding-bottom: 0;
	
}
#bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results {
	margin-bottom: 0;
}
 #bbpress-forums ul.bbp-search-results {
	border: 0;
 }
#bbpress-forums .bbp-admin-links a {
	margin-left:15px !important;
	font-size: 13px;
	color: #888d93;
	text-transform: capitalize;
}
#bbpress-forums .bbp-admin-links a:hover {
	color: #F09217;
}
.bbp-admin-links a:not(.bbp-topic-super-sticky-link):before {
    content: "\e6f8";
	    font-family: 'brankic';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #40454d;
	font-size: 14px;
	margin-right: 5px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
#bbpress-forums .bbp-admin-links .bbp-topic-edit-link:before, #bbpress-forums .bbp-admin-links .bbp-reply-edit-link:before {
	font-size: 16px;
}
#bbpress-forums .bbp-admin-links .bbp-topic-close-link:before {
    content: "\e697";
}
#bbpress-forums .bbp-admin-links .bbp-topic-sticky-link:before {
	    font-family: 'font-awesome';
	content: '\e65c';
}
#bbpress-forums .bbp-admin-links .bbp-topic-trash-link:before,
#bbpress-forums .bbp-admin-links .bbp-reply-trash-link:before {
	    font-family: 'momizat';
	content: '\e6a8';
}
#bbpress-forums .bbp-admin-links .bbp-topic-spam-link:before,
#bbpress-forums .bbp-admin-links .bbp-reply-spam-link:before {
	    font-family: 'momizat';
	content: '\e6fc';
}
#bbpress-forums .bbp-admin-links .bbp-topic-merge-link:before {
    content: "\e69f";
    font-size:16px;
}
#bbpress-forums .bbp-admin-links .bbp-topic-reply-link:before,
#bbpress-forums .bbp-admin-links .bbp-reply-to-link:before {
	content: '\e60a';
	font-family: 'enotype';
}

#bbpress-forums .bbp-admin-links .bbp-topic-super-sticky-link {
	margin-left: 0 !important;
}

#bbpress-forums .bbp-admin-links .bbp-reply-move-link:before {
	    font-family: 'font-awesome';
	content: '\e643';
}
#bbpress-forums .bbp-admin-links .bbp-topic-split-link:before {
	    font-family: 'font-awesome';
	content: '\e6ac';
}

#bbpress-forums ul.bbp-topics {
	margin-bottom: 10px;
}
#bbpress-forums .bbp-reply-title {
	margin-bottom: 15px;
}
#bbpress-forums .bbp-reply-title .bbp-topic-permalink {
	display: inline;
}

.bbp-mom-topic-header {
	margin-bottom: 15px;
}
/* momizat icons - uncompressed version in fonts/icons/moizat/momizat.css */
@font-face{font-family:'momizat';src:url('../fonts/icons/momizat/momizat.eot');src:url('../fonts/icons/momizat/momizat.eot?#iefix') format('embedded-opentype'),url('../fonts/icons/momizat/momizat.ttf') format('truetype'),url('../fonts/icons/momizat/momizat.woff') format('woff'),url('../fonts/icons/momizat/momizat.svg#momizat') format('svg');font-weight:normal;font-style:normal}[class*="momizat-icon-"]{font-family:'momizat';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:inherit;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;-o-font-feature-settings:"liga";font-feature-settings:"liga";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.momizat-icon-home:before{content:"\e600"}.momizat-icon-home2:before{content:"\e601"}.momizat-icon-home3:before{content:"\e602"}.momizat-icon-office:before{content:"\e603"}.momizat-icon-newspaper:before{content:"\e604"}.momizat-icon-pencil:before{content:"\e605"}.momizat-icon-pencil2:before{content:"\e606"}.momizat-icon-quill:before{content:"\e607"}.momizat-icon-pen:before{content:"\e608"}.momizat-icon-blog:before{content:"\e609"}.momizat-icon-droplet:before{content:"\e60a"}.momizat-icon-paint-format:before{content:"\e60b"}.momizat-icon-image:before{content:"\e60c"}.momizat-icon-image2:before{content:"\e60d"}.momizat-icon-images:before{content:"\e60e"}.momizat-icon-camera:before{content:"\e60f"}.momizat-icon-music:before{content:"\e610"}.momizat-icon-headphones:before{content:"\e611"}.momizat-icon-play:before{content:"\e612"}.momizat-icon-film:before{content:"\e613"}.momizat-icon-camera2:before{content:"\e614"}.momizat-icon-dice:before{content:"\e615"}.momizat-icon-pacman:before{content:"\e616"}.momizat-icon-spades:before{content:"\e617"}.momizat-icon-clubs:before{content:"\e618"}.momizat-icon-diamonds:before{content:"\e619"}.momizat-icon-pawn:before{content:"\e61a"}.momizat-icon-bullhorn:before{content:"\e61b"}.momizat-icon-connection:before{content:"\e61c"}.momizat-icon-podcast:before{content:"\e61d"}.momizat-icon-feed:before{content:"\e61e"}.momizat-icon-book:before{content:"\e61f"}.momizat-icon-books:before{content:"\e620"}.momizat-icon-library:before{content:"\e621"}.momizat-icon-file:before{content:"\e622"}.momizat-icon-profile:before{content:"\e623"}.momizat-icon-file2:before{content:"\e624"}.momizat-icon-file3:before{content:"\e625"}.momizat-icon-file4:before{content:"\e626"}.momizat-icon-copy:before{content:"\e627"}.momizat-icon-copy2:before{content:"\e628"}.momizat-icon-copy3:before{content:"\e629"}.momizat-icon-paste:before{content:"\e62a"}.momizat-icon-paste2:before{content:"\e62b"}.momizat-icon-paste3:before{content:"\e62c"}.momizat-icon-stack:before{content:"\e62d"}.momizat-icon-folder:before{content:"\e62e"}.momizat-icon-folder-open:before{content:"\e62f"}.momizat-icon-tag:before{content:"\e630"}.momizat-icon-tags:before{content:"\e631"}.momizat-icon-barcode:before{content:"\e632"}.momizat-icon-qrcode:before{content:"\e633"}.momizat-icon-ticket:before{content:"\e634"}.momizat-icon-cart:before{content:"\e635"}.momizat-icon-cart2:before{content:"\e636"}.momizat-icon-cart3:before{content:"\e637"}.momizat-icon-coin:before{content:"\e638"}.momizat-icon-credit:before{content:"\e639"}.momizat-icon-calculate:before{content:"\e63a"}.momizat-icon-support:before{content:"\e63b"}.momizat-icon-phone:before{content:"\e63c"}.momizat-icon-phone-hang-up:before{content:"\e63d"}.momizat-icon-address-book:before{content:"\e63e"}.momizat-icon-notebook:before{content:"\e63f"}.momizat-icon-envelope:before{content:"\e640"}.momizat-icon-pushpin:before{content:"\e641"}.momizat-icon-location:before{content:"\e642"}.momizat-icon-location2:before{content:"\e643"}.momizat-icon-compass:before{content:"\e644"}.momizat-icon-map:before{content:"\e645"}.momizat-icon-map2:before{content:"\e646"}.momizat-icon-history:before{content:"\e647"}.momizat-icon-clock:before{content:"\e648"}.momizat-icon-clock2:before{content:"\e649"}.momizat-icon-alarm:before{content:"\e64a"}.momizat-icon-alarm2:before{content:"\e64b"}.momizat-icon-bell:before{content:"\e64c"}.momizat-icon-stopwatch:before{content:"\e64d"}.momizat-icon-calendar:before{content:"\e64e"}.momizat-icon-calendar2:before{content:"\e64f"}.momizat-icon-print:before{content:"\e650"}.momizat-icon-keyboard:before{content:"\e651"}.momizat-icon-screen:before{content:"\e652"}.momizat-icon-laptop:before{content:"\e653"}.momizat-icon-mobile:before{content:"\e654"}.momizat-icon-mobile2:before{content:"\e655"}.momizat-icon-tablet:before{content:"\e656"}.momizat-icon-tv:before{content:"\e657"}.momizat-icon-cabinet:before{content:"\e658"}.momizat-icon-drawer:before{content:"\e659"}.momizat-icon-drawer2:before{content:"\e65a"}.momizat-icon-drawer3:before{content:"\e65b"}.momizat-icon-box-add:before{content:"\e65c"}.momizat-icon-box-remove:before{content:"\e65d"}.momizat-icon-download:before{content:"\e65e"}.momizat-icon-upload:before{content:"\e65f"}.momizat-icon-disk:before{content:"\e660"}.momizat-icon-storage:before{content:"\e661"}.momizat-icon-undo:before{content:"\e662"}.momizat-icon-redo:before{content:"\e663"}.momizat-icon-flip:before{content:"\e664"}.momizat-icon-flip2:before{content:"\e665"}.momizat-icon-undo2:before{content:"\e666"}.momizat-icon-redo2:before{content:"\e667"}.momizat-icon-forward:before{content:"\e668"}.momizat-icon-reply:before{content:"\e669"}.momizat-icon-bubble:before{content:"\e66a"}.momizat-icon-bubbles:before{content:"\e66b"}.momizat-icon-bubbles2:before{content:"\e66c"}.momizat-icon-bubble2:before{content:"\e66d"}.momizat-icon-bubbles3:before{content:"\e66e"}.momizat-icon-bubbles4:before{content:"\e66f"}.momizat-icon-user:before{content:"\e670"}.momizat-icon-users:before{content:"\e671"}.momizat-icon-user2:before{content:"\e672"}.momizat-icon-users2:before{content:"\e673"}.momizat-icon-user3:before{content:"\e674"}.momizat-icon-user4:before{content:"\e675"}.momizat-icon-quotes-left:before{content:"\e676"}.momizat-icon-busy:before{content:"\e677"}.momizat-icon-spinner:before{content:"\e678"}.momizat-icon-spinner2:before{content:"\e679"}.momizat-icon-spinner3:before{content:"\e67a"}.momizat-icon-spinner4:before{content:"\e67b"}.momizat-icon-spinner5:before{content:"\e67c"}.momizat-icon-spinner6:before{content:"\e67d"}.momizat-icon-binoculars:before{content:"\e67e"}.momizat-icon-search:before{content:"\e67f"}.momizat-icon-zoom-in:before{content:"\e680"}.momizat-icon-zoom-out:before{content:"\e681"}.momizat-icon-expand:before{content:"\e682"}.momizat-icon-contract:before{content:"\e683"}.momizat-icon-expand2:before{content:"\e684"}.momizat-icon-contract2:before{content:"\e685"}.momizat-icon-key:before{content:"\e686"}.momizat-icon-key2:before{content:"\e687"}.momizat-icon-lock:before{content:"\e688"}.momizat-icon-lock2:before{content:"\e689"}.momizat-icon-unlocked:before{content:"\e68a"}.momizat-icon-wrench:before{content:"\e68b"}.momizat-icon-settings:before{content:"\e68c"}.momizat-icon-equalizer:before{content:"\e68d"}.momizat-icon-cog:before{content:"\e68e"}.momizat-icon-cogs:before{content:"\e68f"}.momizat-icon-cog2:before{content:"\e690"}.momizat-icon-hammer:before{content:"\e691"}.momizat-icon-wand:before{content:"\e692"}.momizat-icon-aid:before{content:"\e693"}.momizat-icon-bug:before{content:"\e694"}.momizat-icon-pie:before{content:"\e695"}.momizat-icon-stats:before{content:"\e696"}.momizat-icon-bars:before{content:"\e697"}.momizat-icon-bars2:before{content:"\e698"}.momizat-icon-gift:before{content:"\e699"}.momizat-icon-trophy:before{content:"\e69a"}.momizat-icon-glass:before{content:"\e69b"}.momizat-icon-mug:before{content:"\e69c"}.momizat-icon-food:before{content:"\e69d"}.momizat-icon-leaf:before{content:"\e69e"}.momizat-icon-rocket:before{content:"\e69f"}.momizat-icon-meter:before{content:"\e6a0"}.momizat-icon-meter2:before{content:"\e6a1"}.momizat-icon-dashboard:before{content:"\e6a2"}.momizat-icon-hammer2:before{content:"\e6a3"}.momizat-icon-fire:before{content:"\e6a4"}.momizat-icon-lab:before{content:"\e6a5"}.momizat-icon-magnet:before{content:"\e6a6"}.momizat-icon-remove:before{content:"\e6a7"}.momizat-icon-remove2:before{content:"\e6a8"}.momizat-icon-briefcase:before{content:"\e6a9"}.momizat-icon-airplane:before{content:"\e6aa"}.momizat-icon-truck:before{content:"\e6ab"}.momizat-icon-road:before{content:"\e6ac"}.momizat-icon-accessibility:before{content:"\e6ad"}.momizat-icon-target:before{content:"\e6ae"}.momizat-icon-shield:before{content:"\e6af"}.momizat-icon-lightning:before{content:"\e6b0"}.momizat-icon-switch:before{content:"\e6b1"}.momizat-icon-power-cord:before{content:"\e6b2"}.momizat-icon-signup:before{content:"\e6b3"}.momizat-icon-list:before{content:"\e6b4"}.momizat-icon-list2:before{content:"\e6b5"}.momizat-icon-numbered-list:before{content:"\e6b6"}.momizat-icon-menu:before{content:"\e6b7"}.momizat-icon-menu2:before{content:"\e6b8"}.momizat-icon-tree:before{content:"\e6b9"}.momizat-icon-cloud:before{content:"\e6ba"}.momizat-icon-cloud-download:before{content:"\e6bb"}.momizat-icon-cloud-upload:before{content:"\e6bc"}.momizat-icon-download2:before{content:"\e6bd"}.momizat-icon-upload2:before{content:"\e6be"}.momizat-icon-download3:before{content:"\e6bf"}.momizat-icon-upload3:before{content:"\e6c0"}.momizat-icon-globe:before{content:"\e6c1"}.momizat-icon-earth:before{content:"\e6c2"}.momizat-icon-link:before{content:"\e6c3"}.momizat-icon-flag:before{content:"\e6c4"}.momizat-icon-attachment:before{content:"\e6c5"}.momizat-icon-eye:before{content:"\e6c6"}.momizat-icon-eye-blocked:before{content:"\e6c7"}.momizat-icon-eye2:before{content:"\e6c8"}.momizat-icon-bookmark:before{content:"\e6c9"}.momizat-icon-bookmarks:before{content:"\e6ca"}.momizat-icon-brightness-medium:before{content:"\e6cb"}.momizat-icon-brightness-contrast:before{content:"\e6cc"}.momizat-icon-contrast:before{content:"\e6cd"}.momizat-icon-star:before{content:"\e6ce"}.momizat-icon-star2:before{content:"\e6cf"}.momizat-icon-star3:before{content:"\e6d0"}.momizat-icon-heart:before{content:"\e6d1"}.momizat-icon-heart2:before{content:"\e6d2"}.momizat-icon-heart-broken:before{content:"\e6d3"}.momizat-icon-thumbs-up:before{content:"\e6d4"}.momizat-icon-thumbs-up2:before{content:"\e6d5"}.momizat-icon-happy:before{content:"\e6d6"}.momizat-icon-happy2:before{content:"\e6d7"}.momizat-icon-smiley:before{content:"\e6d8"}.momizat-icon-smiley2:before{content:"\e6d9"}.momizat-icon-tongue:before{content:"\e6da"}.momizat-icon-tongue2:before{content:"\e6db"}.momizat-icon-sad:before{content:"\e6dc"}.momizat-icon-sad2:before{content:"\e6dd"}.momizat-icon-wink:before{content:"\e6de"}.momizat-icon-wink2:before{content:"\e6df"}.momizat-icon-grin:before{content:"\e6e0"}.momizat-icon-grin2:before{content:"\e6e1"}.momizat-icon-cool:before{content:"\e6e2"}.momizat-icon-cool2:before{content:"\e6e3"}.momizat-icon-angry:before{content:"\e6e4"}.momizat-icon-angry2:before{content:"\e6e5"}.momizat-icon-evil:before{content:"\e6e6"}.momizat-icon-evil2:before{content:"\e6e7"}.momizat-icon-shocked:before{content:"\e6e8"}.momizat-icon-shocked2:before{content:"\e6e9"}.momizat-icon-confused:before{content:"\e6ea"}.momizat-icon-confused2:before{content:"\e6eb"}.momizat-icon-neutral:before{content:"\e6ec"}.momizat-icon-neutral2:before{content:"\e6ed"}.momizat-icon-wondering:before{content:"\e6ee"}.momizat-icon-wondering2:before{content:"\e6ef"}.momizat-icon-point-up:before{content:"\e6f0"}.momizat-icon-point-right:before{content:"\e6f1"}.momizat-icon-point-down:before{content:"\e6f2"}.momizat-icon-point-left:before{content:"\e6f3"}.momizat-icon-warning:before{content:"\e6f4"}.momizat-icon-notification:before{content:"\e6f5"}.momizat-icon-question:before{content:"\e6f6"}.momizat-icon-info:before{content:"\e6f7"}.momizat-icon-info2:before{content:"\e6f8"}.momizat-icon-blocked:before{content:"\e6f9"}.momizat-icon-cancel-circle:before{content:"\e6fa"}.momizat-icon-checkmark-circle:before{content:"\e6fb"}.momizat-icon-spam:before{content:"\e6fc"}.momizat-icon-close:before{content:"\e6fd"}.momizat-icon-checkmark:before{content:"\e6fe"}.momizat-icon-checkmark2:before{content:"\e6ff"}.momizat-icon-spell-check:before{content:"\e700"}.momizat-icon-minus:before{content:"\e701"}.momizat-icon-plus:before{content:"\e702"}.momizat-icon-enter:before{content:"\e703"}.momizat-icon-exit:before{content:"\e704"}.momizat-icon-play2:before{content:"\e705"}.momizat-icon-pause:before{content:"\e706"}.momizat-icon-stop:before{content:"\e707"}.momizat-icon-backward:before{content:"\e708"}.momizat-icon-forward2:before{content:"\e709"}.momizat-icon-play3:before{content:"\e70a"}.momizat-icon-pause2:before{content:"\e70b"}.momizat-icon-stop2:before{content:"\e70c"}.momizat-icon-backward2:before{content:"\e70d"}.momizat-icon-forward3:before{content:"\e70e"}.momizat-icon-first:before{content:"\e70f"}.momizat-icon-last:before{content:"\e710"}.momizat-icon-previous:before{content:"\e711"}.momizat-icon-next:before{content:"\e712"}.momizat-icon-eject:before{content:"\e713"}.momizat-icon-volume-high:before{content:"\e714"}.momizat-icon-volume-medium:before{content:"\e715"}.momizat-icon-volume-low:before{content:"\e716"}.momizat-icon-volume-mute:before{content:"\e717"}.momizat-icon-volume-mute2:before{content:"\e718"}.momizat-icon-volume-increase:before{content:"\e719"}.momizat-icon-volume-decrease:before{content:"\e71a"}.momizat-icon-loop:before{content:"\e71b"}.momizat-icon-loop2:before{content:"\e71c"}.momizat-icon-loop3:before{content:"\e71d"}.momizat-icon-shuffle:before{content:"\e71e"}.momizat-icon-arrow-up-left:before{content:"\e71f"}.momizat-icon-arrow-up:before{content:"\e720"}.momizat-icon-arrow-up-right:before{content:"\e721"}.momizat-icon-arrow-right:before{content:"\e722"}.momizat-icon-arrow-down-right:before{content:"\e723"}.momizat-icon-arrow-down:before{content:"\e724"}.momizat-icon-arrow-down-left:before{content:"\e725"}.momizat-icon-arrow-left:before{content:"\e726"}.momizat-icon-arrow-up-left2:before{content:"\e727"}.momizat-icon-arrow-up2:before{content:"\e728"}.momizat-icon-arrow-up-right2:before{content:"\e729"}.momizat-icon-arrow-right2:before{content:"\e72a"}.momizat-icon-arrow-down-right2:before{content:"\e72b"}.momizat-icon-arrow-down2:before{content:"\e72c"}.momizat-icon-arrow-down-left2:before{content:"\e72d"}.momizat-icon-arrow-left2:before{content:"\e72e"}.momizat-icon-arrow-up-left3:before{content:"\e72f"}.momizat-icon-arrow-up3:before{content:"\e730"}.momizat-icon-arrow-up-right3:before{content:"\e731"}.momizat-icon-arrow-right3:before{content:"\e732"}.momizat-icon-arrow-down-right3:before{content:"\e733"}.momizat-icon-arrow-down3:before{content:"\e734"}.momizat-icon-arrow-down-left3:before{content:"\e735"}.momizat-icon-arrow-left3:before{content:"\e736"}.momizat-icon-tab:before{content:"\e737"}.momizat-icon-checkbox-checked:before{content:"\e738"}.momizat-icon-checkbox-unchecked:before{content:"\e739"}.momizat-icon-checkbox-partial:before{content:"\e73a"}.momizat-icon-radio-checked:before{content:"\e73b"}.momizat-icon-radio-unchecked:before{content:"\e73c"}.momizat-icon-crop:before{content:"\e73d"}.momizat-icon-scissors:before{content:"\e73e"}.momizat-icon-filter:before{content:"\e73f"}.momizat-icon-filter2:before{content:"\e740"}.momizat-icon-font:before{content:"\e741"}.momizat-icon-text-height:before{content:"\e742"}.momizat-icon-text-width:before{content:"\e743"}.momizat-icon-bold:before{content:"\e744"}.momizat-icon-underline:before{content:"\e745"}.momizat-icon-italic:before{content:"\e746"}.momizat-icon-strikethrough:before{content:"\e747"}.momizat-icon-omega:before{content:"\e748"}.momizat-icon-sigma:before{content:"\e749"}.momizat-icon-table:before{content:"\e74a"}.momizat-icon-table2:before{content:"\e74b"}.momizat-icon-insert-template:before{content:"\e74c"}.momizat-icon-pilcrow:before{content:"\e74d"}.momizat-icon-left-toright:before{content:"\e74e"}.momizat-icon-right-toleft:before{content:"\e74f"}.momizat-icon-paragraph-left:before{content:"\e750"}.momizat-icon-paragraph-center:before{content:"\e751"}.momizat-icon-paragraph-right:before{content:"\e752"}.momizat-icon-paragraph-justify:before{content:"\e753"}.momizat-icon-paragraph-left2:before{content:"\e754"}.momizat-icon-paragraph-center2:before{content:"\e755"}.momizat-icon-paragraph-right2:before{content:"\e756"}.momizat-icon-paragraph-justify2:before{content:"\e757"}.momizat-icon-indent-increase:before{content:"\e758"}.momizat-icon-indent-decrease:before{content:"\e759"}.momizat-icon-new-tab:before{content:"\e75a"}.momizat-icon-embed:before{content:"\e75b"}.momizat-icon-code:before{content:"\e75c"}.momizat-icon-console:before{content:"\e75d"}.momizat-icon-share:before{content:"\e75e"}.momizat-icon-mail:before{content:"\e75f"}.momizat-icon-mail2:before{content:"\e760"}.momizat-icon-mail3:before{content:"\e761"}.momizat-icon-mail4:before{content:"\e762"}.momizat-icon-google:before{content:"\e763"}.momizat-icon-google-plus:before{content:"\e764"}.momizat-icon-google-plus2:before{content:"\e765"}.momizat-icon-google-plus3:before{content:"\e766"}.momizat-icon-google-plus4:before{content:"\e767"}.momizat-icon-google-drive:before{content:"\e768"}.momizat-icon-facebook:before{content:"\e769"}.momizat-icon-facebook2:before{content:"\e76a"}.momizat-icon-facebook3:before{content:"\e76b"}.momizat-icon-instagram:before{content:"\e76c"}.momizat-icon-twitter:before{content:"\e76d"}.momizat-icon-twitter2:before{content:"\e76e"}.momizat-icon-twitter3:before{content:"\e76f"}.momizat-icon-feed2:before{content:"\e770"}.momizat-icon-feed3:before{content:"\e771"}.momizat-icon-feed4:before{content:"\e772"}.momizat-icon-youtube:before{content:"\e773"}.momizat-icon-youtube2:before{content:"\e774"}.momizat-icon-vimeo:before{content:"\e775"}.momizat-icon-vimeo2:before{content:"\e776"}.momizat-icon-vimeo3:before{content:"\e777"}.momizat-icon-lanyrd:before{content:"\e778"}.momizat-icon-flickr:before{content:"\e779"}.momizat-icon-flickr2:before{content:"\e77a"}.momizat-icon-flickr3:before{content:"\e77b"}.momizat-icon-flickr4:before{content:"\e77c"}.momizat-icon-picassa:before{content:"\e77d"}.momizat-icon-picassa2:before{content:"\e77e"}.momizat-icon-dribbble:before{content:"\e77f"}.momizat-icon-dribbble2:before{content:"\e780"}.momizat-icon-dribbble3:before{content:"\e781"}.momizat-icon-forrst:before{content:"\e782"}.momizat-icon-forrst2:before{content:"\e783"}.momizat-icon-deviantart:before{content:"\e784"}.momizat-icon-deviantart2:before{content:"\e785"}.momizat-icon-steam:before{content:"\e786"}.momizat-icon-steam2:before{content:"\e787"}.momizat-icon-github:before{content:"\e788"}.momizat-icon-github2:before{content:"\e789"}.momizat-icon-github3:before{content:"\e78a"}.momizat-icon-github4:before{content:"\e78b"}.momizat-icon-github5:before{content:"\e78c"}.momizat-icon-wordpress:before{content:"\e78d"}.momizat-icon-wordpress2:before{content:"\e78e"}.momizat-icon-joomla:before{content:"\e78f"}.momizat-icon-blogger:before{content:"\e790"}.momizat-icon-blogger2:before{content:"\e791"}.momizat-icon-tumblr:before{content:"\e792"}.momizat-icon-tumblr2:before{content:"\e793"}.momizat-icon-yahoo:before{content:"\e794"}.momizat-icon-tux:before{content:"\e795"}.momizat-icon-apple:before{content:"\e796"}.momizat-icon-finder:before{content:"\e797"}.momizat-icon-android:before{content:"\e798"}.momizat-icon-windows:before{content:"\e799"}.momizat-icon-windows8:before{content:"\e79a"}.momizat-icon-soundcloud:before{content:"\e79b"}.momizat-icon-soundcloud2:before{content:"\e79c"}.momizat-icon-skype:before{content:"\e79d"}.momizat-icon-reddit:before{content:"\e79e"}.momizat-icon-linkedin:before{content:"\e79f"}.momizat-icon-lastfm:before{content:"\e7a0"}.momizat-icon-lastfm2:before{content:"\e7a1"}.momizat-icon-delicious:before{content:"\e7a2"}.momizat-icon-stumbleupon:before{content:"\e7a3"}.momizat-icon-stumbleupon2:before{content:"\e7a4"}.momizat-icon-stackoverflow:before{content:"\e7a5"}.momizat-icon-pinterest:before{content:"\e7a6"}.momizat-icon-pinterest2:before{content:"\e7a7"}.momizat-icon-xing:before{content:"\e7a8"}.momizat-icon-xing2:before{content:"\e7a9"}.momizat-icon-flattr:before{content:"\e7aa"}.momizat-icon-foursquare:before{content:"\e7ab"}.momizat-icon-foursquare2:before{content:"\e7ac"}.momizat-icon-paypal:before{content:"\e7ad"}.momizat-icon-paypal2:before{content:"\e7ae"}.momizat-icon-paypal3:before{content:"\e7af"}.momizat-icon-yelp:before{content:"\e7b0"}.momizat-icon-libreoffice:before{content:"\e7b1"}.momizat-icon-file-pdf:before{content:"\e7b2"}.momizat-icon-file-openoffice:before{content:"\e7b3"}.momizat-icon-file-word:before{content:"\e7b4"}.momizat-icon-file-excel:before{content:"\e7b5"}.momizat-icon-file-zip:before{content:"\e7b6"}.momizat-icon-file-powerpoint:before{content:"\e7b7"}.momizat-icon-file-xml:before{content:"\e7b8"}.momizat-icon-file-css:before{content:"\e7b9"}.momizat-icon-html5:before{content:"\e7ba"}.momizat-icon-html52:before{content:"\e7bb"}.momizat-icon-css3:before{content:"\e7bc"}.momizat-icon-chrome:before{content:"\e7bd"}.momizat-icon-firefox:before{content:"\e7be"}.momizat-icon-IE:before{content:"\e7bf"}.momizat-icon-opera:before{content:"\e7c0"}.momizat-icon-safari:before{content:"\e7c1"}.momizat-icon-IcoMoon:before{content:"\e7c2"}

/* font-awesome icons - uncompressed version in fonts/icons/fa/font-awesome.css */
@font-face{font-family:'font-awesome';src:url('../fonts/icons/fa/font-awesome.eot');src:url('../fonts/icons/fa/font-awesome.eot?#iefix') format('embedded-opentype'),url('../fonts/icons/fa/font-awesome.ttf') format('truetype'),url('../fonts/icons/fa/font-awesome.woff') format('woff'),url('../fonts/icons/fa/font-awesome.svg#font-awesome') format('svg');font-weight:normal;font-style:normal}[class*="fa-icon-"]{font-family:'font-awesome';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:inherit;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;-o-font-feature-settings:"liga";font-feature-settings:"liga";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-icon-glass:before{content:"\e600"}.fa-icon-music:before{content:"\e601"}.fa-icon-search:before{content:"\e602"}.fa-icon-envelope:before{content:"\e603"}.fa-icon-heart:before{content:"\e604"}.fa-icon-star:before{content:"\e605"}.fa-icon-star-empty:before{content:"\e606"}.fa-icon-user:before{content:"\e607"}.fa-icon-film:before{content:"\e608"}.fa-icon-th-large:before{content:"\e609"}.fa-icon-th:before{content:"\e60a"}.fa-icon-th-list:before{content:"\e60b"}.fa-icon-ok:before{content:"\e60c"}.fa-icon-remove:before{content:"\e60d"}.fa-icon-zoom-in:before{content:"\e60e"}.fa-icon-zoom-out:before{content:"\e60f"}.fa-icon-off:before{content:"\e610"}.fa-icon-signal:before{content:"\e611"}.fa-icon-cog:before{content:"\e612"}.fa-icon-trash:before{content:"\e613"}.fa-icon-home:before{content:"\e614"}.fa-icon-file:before{content:"\e615"}.fa-icon-time:before{content:"\e616"}.fa-icon-road:before{content:"\e617"}.fa-icon-download-alt:before{content:"\e618"}.fa-icon-download:before{content:"\e619"}.fa-icon-upload:before{content:"\e61a"}.fa-icon-inbox:before{content:"\e61b"}.fa-icon-play-circle:before{content:"\e61c"}.fa-icon-repeat:before{content:"\e61d"}.fa-icon-refresh:before{content:"\e61e"}.fa-icon-list-alt:before{content:"\e61f"}.fa-icon-lock:before{content:"\e620"}.fa-icon-flag:before{content:"\e621"}.fa-icon-headphones:before{content:"\e622"}.fa-icon-volume-off:before{content:"\e623"}.fa-icon-volume-down:before{content:"\e624"}.fa-icon-volume-up:before{content:"\e625"}.fa-icon-qrcode:before{content:"\e626"}.fa-icon-barcode:before{content:"\e627"}.fa-icon-tag:before{content:"\e628"}.fa-icon-tags:before{content:"\e629"}.fa-icon-book:before{content:"\e62a"}.fa-icon-bookmark:before{content:"\e62b"}.fa-icon-print:before{content:"\e62c"}.fa-icon-camera:before{content:"\e62d"}.fa-icon-font:before{content:"\e62e"}.fa-icon-bold:before{content:"\e62f"}.fa-icon-italic:before{content:"\e630"}.fa-icon-text-height:before{content:"\e631"}.fa-icon-text-width:before{content:"\e632"}.fa-icon-align-left:before{content:"\e633"}.fa-icon-align-center:before{content:"\e634"}.fa-icon-align-right:before{content:"\e635"}.fa-icon-align-justify:before{content:"\e636"}.fa-icon-list:before{content:"\e637"}.fa-icon-indent-left:before{content:"\e638"}.fa-icon-indent-right:before{content:"\e639"}.fa-icon-facetime-video:before{content:"\e63a"}.fa-icon-picture:before{content:"\e63b"}.fa-icon-pencil:before{content:"\e63c"}.fa-icon-map-marker:before{content:"\e63d"}.fa-icon-adjust:before{content:"\e63e"}.fa-icon-tint:before{content:"\e63f"}.fa-icon-edit:before{content:"\e640"}.fa-icon-share:before{content:"\e641"}.fa-icon-check:before{content:"\e642"}.fa-icon-move:before{content:"\e643"}.fa-icon-step-backward:before{content:"\e644"}.fa-icon-fast-backward:before{content:"\e645"}.fa-icon-backward:before{content:"\e646"}.fa-icon-play:before{content:"\e647"}.fa-icon-pause:before{content:"\e648"}.fa-icon-stop:before{content:"\e649"}.fa-icon-forward:before{content:"\e64a"}.fa-icon-fast-forward:before{content:"\e64b"}.fa-icon-step-forward:before{content:"\e64c"}.fa-icon-eject:before{content:"\e64d"}.fa-icon-chevron-left:before{content:"\e64e"}.fa-icon-chevron-right:before{content:"\e64f"}.fa-icon-plus-sign:before{content:"\e650"}.fa-icon-minus-sign:before{content:"\e651"}.fa-icon-remove-sign:before{content:"\e652"}.fa-icon-ok-sign:before{content:"\e653"}.fa-icon-question-sign:before{content:"\e654"}.fa-icon-info-sign:before{content:"\e655"}.fa-icon-screenshot:before{content:"\e656"}.fa-icon-remove-circle:before{content:"\e657"}.fa-icon-ok-circle:before{content:"\e658"}.fa-icon-ban-circle:before{content:"\e659"}.fa-icon-arrow-left:before{content:"\e65a"}.fa-icon-arrow-right:before{content:"\e65b"}.fa-icon-arrow-up:before{content:"\e65c"}.fa-icon-arrow-down:before{content:"\e65d"}.fa-icon-share-alt:before{content:"\e65e"}.fa-icon-resize-full:before{content:"\e65f"}.fa-icon-resize-small:before{content:"\e660"}.fa-icon-plus:before{content:"\e661"}.fa-icon-minus:before{content:"\e662"}.fa-icon-asterisk:before{content:"\e663"}.fa-icon-exclamation-sign:before{content:"\e664"}.fa-icon-gift:before{content:"\e665"}.fa-icon-leaf:before{content:"\e666"}.fa-icon-fire:before{content:"\e667"}.fa-icon-eye-open:before{content:"\e668"}.fa-icon-eye-close:before{content:"\e669"}.fa-icon-warning-sign:before{content:"\e66a"}.fa-icon-plane:before{content:"\e66b"}.fa-icon-calendar:before{content:"\e66c"}.fa-icon-random:before{content:"\e66d"}.fa-icon-comment:before{content:"\e66e"}.fa-icon-magnet:before{content:"\e66f"}.fa-icon-chevron-up:before{content:"\e670"}.fa-icon-chevron-down:before{content:"\e671"}.fa-icon-retweet:before{content:"\e672"}.fa-icon-shopping-cart:before{content:"\e673"}.fa-icon-folder-close:before{content:"\e674"}.fa-icon-folder-open:before{content:"\e675"}.fa-icon-resize-vertical:before{content:"\e676"}.fa-icon-resize-horizontal:before{content:"\e677"}.fa-icon-bar-chart:before{content:"\e678"}.fa-icon-twitter-sign:before{content:"\e679"}.fa-icon-facebook-sign:before{content:"\e67a"}.fa-icon-camera-retro:before{content:"\e67b"}.fa-icon-key:before{content:"\e67c"}.fa-icon-cogs:before{content:"\e67d"}.fa-icon-comments:before{content:"\e67e"}.fa-icon-thumbs-up:before{content:"\e67f"}.fa-icon-thumbs-down:before{content:"\e680"}.fa-icon-star-half:before{content:"\e681"}.fa-icon-heart-empty:before{content:"\e682"}.fa-icon-signout:before{content:"\e683"}.fa-icon-linkedin-sign:before{content:"\e684"}.fa-icon-pushpin:before{content:"\e685"}.fa-icon-external-link:before{content:"\e686"}.fa-icon-signin:before{content:"\e687"}.fa-icon-trophy:before{content:"\e688"}.fa-icon-github-sign:before{content:"\e689"}.fa-icon-upload-alt:before{content:"\e68a"}.fa-icon-lemon:before{content:"\e68b"}.fa-icon-phone:before{content:"\e68c"}.fa-icon-check-empty:before{content:"\e68d"}.fa-icon-bookmark-empty:before{content:"\e68e"}.fa-icon-phone-sign:before{content:"\e68f"}.fa-icon-twitter:before{content:"\e690"}.fa-icon-facebook:before{content:"\e691"}.fa-icon-github:before{content:"\e692"}.fa-icon-unlock:before{content:"\e693"}.fa-icon-credit:before{content:"\e694"}.fa-icon-rss:before{content:"\e695"}.fa-icon-hdd:before{content:"\e696"}.fa-icon-bullhorn:before{content:"\e697"}.fa-icon-bell:before{content:"\e698"}.fa-icon-certificate:before{content:"\e699"}.fa-icon-hand-right:before{content:"\e69a"}.fa-icon-hand-left:before{content:"\e69b"}.fa-icon-hand-up:before{content:"\e69c"}.fa-icon-hand-down:before{content:"\e69d"}.fa-icon-circle-arrow-left:before{content:"\e69e"}.fa-icon-circle-arrow-right:before{content:"\e69f"}.fa-icon-circle-arrow-up:before{content:"\e6a0"}.fa-icon-circle-arrow-down:before{content:"\e6a1"}.fa-icon-globe:before{content:"\e6a2"}.fa-icon-wrench:before{content:"\e6a3"}.fa-icon-tasks:before{content:"\e6a4"}.fa-icon-filter:before{content:"\e6a5"}.fa-icon-briefcase:before{content:"\e6a6"}.fa-icon-fullscreen:before{content:"\e6a7"}.fa-icon-group:before{content:"\e6a8"}.fa-icon-link:before{content:"\e6a9"}.fa-icon-cloud:before{content:"\e6aa"}.fa-icon-beaker:before{content:"\e6ab"}.fa-icon-cut:before{content:"\e6ac"}.fa-icon-copy:before{content:"\e6ad"}.fa-icon-paper-clip:before{content:"\e6ae"}.fa-icon-save:before{content:"\e6af"}.fa-icon-sign-blank:before{content:"\e6b0"}.fa-icon-reorder:before{content:"\e6b1"}.fa-icon-list-ul:before{content:"\e6b2"}.fa-icon-list-ol:before{content:"\e6b3"}.fa-icon-strikethrough:before{content:"\e6b4"}.fa-icon-underline:before{content:"\e6b5"}.fa-icon-table:before{content:"\e6b6"}.fa-icon-magic:before{content:"\e6b7"}.fa-icon-truck:before{content:"\e6b8"}.fa-icon-pinterest:before{content:"\e6b9"}.fa-icon-pinterest-sign:before{content:"\e6ba"}.fa-icon-google-plus-sign:before{content:"\e6bb"}.fa-icon-google-plus:before{content:"\e6bc"}.fa-icon-money:before{content:"\e6bd"}.fa-icon-caret-down:before{content:"\e6be"}.fa-icon-caret-up:before{content:"\e6bf"}.fa-icon-caret-left:before{content:"\e6c0"}.fa-icon-caret-right:before{content:"\e6c1"}.fa-icon-columns:before{content:"\e6c2"}.fa-icon-sort:before{content:"\e6c3"}.fa-icon-sort-down:before{content:"\e6c4"}.fa-icon-sort-up:before{content:"\e6c5"}.fa-icon-envelope-alt:before{content:"\e6c6"}.fa-icon-linkedin:before{content:"\e6c7"}.fa-icon-undo:before{content:"\e6c8"}.fa-icon-legal:before{content:"\e6c9"}.fa-icon-dashboard:before{content:"\e6ca"}.fa-icon-comment-alt:before{content:"\e6cb"}.fa-icon-comments-alt:before{content:"\e6cc"}.fa-icon-bolt:before{content:"\e6cd"}.fa-icon-sitemap:before{content:"\e6ce"}.fa-icon-umbrella:before{content:"\e6cf"}.fa-icon-paste:before{content:"\e6d0"}.fa-icon-lightbulb:before{content:"\e6d1"}.fa-icon-exchange:before{content:"\e6d2"}.fa-icon-cloud-download:before{content:"\e6d3"}.fa-icon-cloud-upload:before{content:"\e6d4"}.fa-icon-user-md:before{content:"\e6d5"}.fa-icon-stethoscope:before{content:"\e6d6"}.fa-icon-suitcase:before{content:"\e6d7"}.fa-icon-bell-alt:before{content:"\e6d8"}.fa-icon-coffee:before{content:"\e6d9"}.fa-icon-food:before{content:"\e6da"}.fa-icon-file-alt:before{content:"\e6db"}.fa-icon-building:before{content:"\e6dc"}.fa-icon-hospital:before{content:"\e6dd"}.fa-icon-ambulance:before{content:"\e6de"}.fa-icon-medkit:before{content:"\e6df"}.fa-icon-fighter-jet:before{content:"\e6e0"}.fa-icon-beer:before{content:"\e6e1"}.fa-icon-h-sign:before{content:"\e6e2"}.fa-icon-plus-sign2:before{content:"\e6e3"}.fa-icon-double-angle-left:before{content:"\e6e4"}.fa-icon-double-angle-right:before{content:"\e6e5"}.fa-icon-double-angle-up:before{content:"\e6e6"}.fa-icon-double-angle-down:before{content:"\e6e7"}.fa-icon-angle-left:before{content:"\e6e8"}.fa-icon-angle-right:before{content:"\e6e9"}.fa-icon-angle-up:before{content:"\e6ea"}.fa-icon-angle-down:before{content:"\e6eb"}.fa-icon-desktop:before{content:"\e6ec"}.fa-icon-laptop:before{content:"\e6ed"}.fa-icon-tablet:before{content:"\e6ee"}.fa-icon-mobile:before{content:"\e6ef"}.fa-icon-circle-blank:before{content:"\e6f0"}.fa-icon-quote-left:before{content:"\e6f1"}.fa-icon-quote-right:before{content:"\e6f2"}.fa-icon-spinner:before{content:"\e6f3"}.fa-icon-circle:before{content:"\e6f4"}.fa-icon-reply:before{content:"\e6f5"}.fa-icon-github-alt:before{content:"\e6f6"}.fa-icon-folder-close-alt:before{content:"\e6f7"}.fa-icon-folder-open-alt:before{content:"\e6f8"}.fa-icon-expand-alt:before{content:"\e6f9"}.fa-icon-collapse-alt:before{content:"\e6fa"}.fa-icon-smile:before{content:"\e6fb"}.fa-icon-frown:before{content:"\e6fc"}.fa-icon-meh:before{content:"\e6fd"}.fa-icon-gamepad:before{content:"\e6fe"}.fa-icon-keyboard:before{content:"\e6ff"}.fa-icon-flag-alt:before{content:"\e700"}.fa-icon-flag-checkered:before{content:"\e701"}.fa-icon-terminal:before{content:"\e702"}.fa-icon-code:before{content:"\e703"}.fa-icon-reply-all:before{content:"\e704"}.fa-icon-star-half-full:before{content:"\e705"}.fa-icon-location-arrow:before{content:"\e706"}.fa-icon-crop:before{content:"\e707"}.fa-icon-code-fork:before{content:"\e708"}.fa-icon-unlink:before{content:"\e709"}.fa-icon-question:before{content:"\e70a"}.fa-icon-info:before{content:"\e70b"}.fa-icon-exclamation:before{content:"\e70c"}.fa-icon-superscript:before{content:"\e70d"}.fa-icon-subscript:before{content:"\e70e"}.fa-icon-eraser:before{content:"\e70f"}.fa-icon-puzzle:before{content:"\e710"}.fa-icon-microphone:before{content:"\e711"}.fa-icon-microphone-off:before{content:"\e712"}.fa-icon-shield:before{content:"\e713"}.fa-icon-calendar-empty:before{content:"\e714"}.fa-icon-fire-extinguisher:before{content:"\e715"}.fa-icon-rocket:before{content:"\e716"}.fa-icon-maxcdn:before{content:"\e717"}.fa-icon-chevron-sign-left:before{content:"\e718"}.fa-icon-chevron-sign-right:before{content:"\e719"}.fa-icon-chevron-sign-up:before{content:"\e71a"}.fa-icon-chevron-sign-down:before{content:"\e71b"}.fa-icon-html5:before{content:"\e71c"}.fa-icon-css3:before{content:"\e71d"}.fa-icon-anchor:before{content:"\e71e"}.fa-icon-unlock-alt:before{content:"\e71f"}.fa-icon-bullseye:before{content:"\e720"}.fa-icon-ellipsis-horizontal:before{content:"\e721"}.fa-icon-ellipsis-vertical:before{content:"\e722"}.fa-icon-rss-sign:before{content:"\e723"}.fa-icon-play-sign:before{content:"\e724"}.fa-icon-ticket:before{content:"\e725"}.fa-icon-minus-sign-alt:before{content:"\e726"}.fa-icon-check-minus:before{content:"\e727"}.fa-icon-level-up:before{content:"\e728"}.fa-icon-level-down:before{content:"\e729"}.fa-icon-check-sign:before{content:"\e72a"}.fa-icon-edit-sign:before{content:"\e72b"}.fa-icon-external-link-sign:before{content:"\e72c"}.fa-icon-share-sign:before{content:"\e72d"}.fa-icon-compass:before{content:"\e72e"}.fa-icon-collapse:before{content:"\e72f"}.fa-icon-collapse-top:before{content:"\e730"}.fa-icon-expand:before{content:"\e731"}.fa-icon-euro:before{content:"\e732"}.fa-icon-gbp:before{content:"\e733"}.fa-icon-dollar:before{content:"\e734"}.fa-icon-rupee:before{content:"\e735"}.fa-icon-yen:before{content:"\e736"}.fa-icon-renminbi:before{content:"\e737"}.fa-icon-won:before{content:"\e738"}.fa-icon-bitcoin:before{content:"\e739"}.fa-icon-file2:before{content:"\e73a"}.fa-icon-file-text:before{content:"\e73b"}.fa-icon-sort-by-alphabet:before{content:"\e73c"}.fa-icon-sort-by-alphabet-alt:before{content:"\e73d"}.fa-icon-sort-by-attributes:before{content:"\e73e"}.fa-icon-sort-by-attributes-alt:before{content:"\e73f"}.fa-icon-sort-by-order:before{content:"\e740"}.fa-icon-sort-by-order-alt:before{content:"\e741"}.fa-icon-thumbs-up2:before{content:"\e742"}.fa-icon-thumbs-down2:before{content:"\e743"}.fa-icon-youtube-sign:before{content:"\e744"}.fa-icon-youtube:before{content:"\e745"}.fa-icon-xing:before{content:"\e746"}.fa-icon-xing-sign:before{content:"\e747"}.fa-icon-youtube-play:before{content:"\e748"}.fa-icon-dropbox:before{content:"\e749"}.fa-icon-stackexchange:before{content:"\e74a"}.fa-icon-instagram:before{content:"\e74b"}.fa-icon-flickr:before{content:"\e74c"}.fa-icon-adn:before{content:"\e74d"}.fa-icon-bitbucket:before{content:"\e74e"}.fa-icon-bitbucket-sign:before{content:"\e74f"}.fa-icon-tumblr:before{content:"\e750"}.fa-icon-tumblr-sign:before{content:"\e751"}.fa-icon-long-arrow-down:before{content:"\e752"}.fa-icon-long-arrow-up:before{content:"\e753"}.fa-icon-long-arrow-left:before{content:"\e754"}.fa-icon-long-arrow-right:before{content:"\e755"}.fa-icon-apple:before{content:"\e756"}.fa-icon-windows:before{content:"\e757"}.fa-icon-android:before{content:"\e758"}.fa-icon-linux:before{content:"\e759"}.fa-icon-dribbble:before{content:"\e75a"}.fa-icon-skype:before{content:"\e75b"}.fa-icon-foursquare:before{content:"\e75c"}.fa-icon-trello:before{content:"\e75d"}.fa-icon-female:before{content:"\e75e"}.fa-icon-male:before{content:"\e75f"}.fa-icon-gittip:before{content:"\e760"}.fa-icon-sun:before{content:"\e761"}.fa-icon-moon:before{content:"\e762"}.fa-icon-archive:before{content:"\e763"}.fa-icon-bug:before{content:"\e764"}.fa-icon-vk:before{content:"\e765"}.fa-icon-weibo:before{content:"\e766"}.fa-icon-renren:before{content:"\e767"}

/* brankic icons - uncompressed version in fonts/icons/brankic/brankic.css */
@font-face{font-family:'brankic';src:url('../fonts/icons/brankic/brankic.eot');src:url('../fonts/icons/brankic/brankic.eot?#iefix') format('embedded-opentype'),url('../fonts/icons/brankic/brankic.ttf') format('truetype'),url('../fonts/icons/brankic/brankic.woff') format('woff'),url('../fonts/icons/brankic/brankic.svg#brankic') format('svg');font-weight:normal;font-style:normal}[class*="brankic-icon-"]{font-family:'brankic';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:inherit;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;-o-font-feature-settings:"liga";font-feature-settings:"liga";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brankic-icon-number:before{content:"\e600"}.brankic-icon-number2:before{content:"\e601"}.brankic-icon-number3:before{content:"\e602"}.brankic-icon-number4:before{content:"\e603"}.brankic-icon-number5:before{content:"\e604"}.brankic-icon-number6:before{content:"\e605"}.brankic-icon-number7:before{content:"\e606"}.brankic-icon-number8:before{content:"\e607"}.brankic-icon-number9:before{content:"\e608"}.brankic-icon-number10:before{content:"\e609"}.brankic-icon-number11:before{content:"\e60a"}.brankic-icon-number12:before{content:"\e60b"}.brankic-icon-number13:before{content:"\e60c"}.brankic-icon-number14:before{content:"\e60d"}.brankic-icon-number15:before{content:"\e60e"}.brankic-icon-number16:before{content:"\e60f"}.brankic-icon-number17:before{content:"\e610"}.brankic-icon-number18:before{content:"\e611"}.brankic-icon-number19:before{content:"\e612"}.brankic-icon-number20:before{content:"\e613"}.brankic-icon-quote:before{content:"\e614"}.brankic-icon-quote2:before{content:"\e615"}.brankic-icon-tag:before{content:"\e616"}.brankic-icon-tag2:before{content:"\e617"}.brankic-icon-link:before{content:"\e618"}.brankic-icon-link2:before{content:"\e619"}.brankic-icon-cabinet:before{content:"\e61a"}.brankic-icon-cabinet2:before{content:"\e61b"}.brankic-icon-calendar:before{content:"\e61c"}.brankic-icon-calendar2:before{content:"\e61d"}.brankic-icon-calendar3:before{content:"\e61e"}.brankic-icon-file:before{content:"\e61f"}.brankic-icon-file2:before{content:"\e620"}.brankic-icon-file3:before{content:"\e621"}.brankic-icon-files:before{content:"\e622"}.brankic-icon-phone:before{content:"\e623"}.brankic-icon-tablet:before{content:"\e624"}.brankic-icon-window:before{content:"\e625"}.brankic-icon-monitor:before{content:"\e626"}.brankic-icon-ipod:before{content:"\e627"}.brankic-icon-tv:before{content:"\e628"}.brankic-icon-camera:before{content:"\e629"}.brankic-icon-camera2:before{content:"\e62a"}.brankic-icon-camera3:before{content:"\e62b"}.brankic-icon-film:before{content:"\e62c"}.brankic-icon-film2:before{content:"\e62d"}.brankic-icon-film3:before{content:"\e62e"}.brankic-icon-microphone:before{content:"\e62f"}.brankic-icon-microphone2:before{content:"\e630"}.brankic-icon-microphone3:before{content:"\e631"}.brankic-icon-drink:before{content:"\e632"}.brankic-icon-drink2:before{content:"\e633"}.brankic-icon-drink3:before{content:"\e634"}.brankic-icon-drink4:before{content:"\e635"}.brankic-icon-coffee:before{content:"\e636"}.brankic-icon-mug:before{content:"\e637"}.brankic-icon-ice-cream:before{content:"\e638"}.brankic-icon-cake:before{content:"\e639"}.brankic-icon-inbox:before{content:"\e63a"}.brankic-icon-download:before{content:"\e63b"}.brankic-icon-upload:before{content:"\e63c"}.brankic-icon-inbox2:before{content:"\e63d"}.brankic-icon-checkmark:before{content:"\e63e"}.brankic-icon-checkmark2:before{content:"\e63f"}.brankic-icon-cancel:before{content:"\e640"}.brankic-icon-cancel2:before{content:"\e641"}.brankic-icon-plus:before{content:"\e642"}.brankic-icon-plus2:before{content:"\e643"}.brankic-icon-minus:before{content:"\e644"}.brankic-icon-minus2:before{content:"\e645"}.brankic-icon-notice:before{content:"\e646"}.brankic-icon-notice2:before{content:"\e647"}.brankic-icon-cog:before{content:"\e648"}.brankic-icon-cogs:before{content:"\e649"}.brankic-icon-cog2:before{content:"\e64a"}.brankic-icon-warning:before{content:"\e64b"}.brankic-icon-health:before{content:"\e64c"}.brankic-icon-suitcase:before{content:"\e64d"}.brankic-icon-suitcase2:before{content:"\e64e"}.brankic-icon-suitcase3:before{content:"\e64f"}.brankic-icon-picture:before{content:"\e650"}.brankic-icon-pictures:before{content:"\e651"}.brankic-icon-pictures2:before{content:"\e652"}.brankic-icon-android:before{content:"\e653"}.brankic-icon-marvin:before{content:"\e654"}.brankic-icon-pacman:before{content:"\e655"}.brankic-icon-cassette:before{content:"\e656"}.brankic-icon-watch:before{content:"\e657"}.brankic-icon-chronometer:before{content:"\e658"}.brankic-icon-watch2:before{content:"\e659"}.brankic-icon-alarm-clock:before{content:"\e65a"}.brankic-icon-time:before{content:"\e65b"}.brankic-icon-time2:before{content:"\e65c"}.brankic-icon-headphones:before{content:"\e65d"}.brankic-icon-wallet:before{content:"\e65e"}.brankic-icon-checkmark3:before{content:"\e65f"}.brankic-icon-cancel3:before{content:"\e660"}.brankic-icon-eye:before{content:"\e661"}.brankic-icon-position:before{content:"\e662"}.brankic-icon-site-map:before{content:"\e663"}.brankic-icon-site-map2:before{content:"\e664"}.brankic-icon-cloud:before{content:"\e665"}.brankic-icon-upload2:before{content:"\e666"}.brankic-icon-chart:before{content:"\e667"}.brankic-icon-chart2:before{content:"\e668"}.brankic-icon-chart3:before{content:"\e669"}.brankic-icon-chart4:before{content:"\e66a"}.brankic-icon-chart5:before{content:"\e66b"}.brankic-icon-chart6:before{content:"\e66c"}.brankic-icon-location:before{content:"\e66d"}.brankic-icon-download2:before{content:"\e66e"}.brankic-icon-basket:before{content:"\e66f"}.brankic-icon-folder:before{content:"\e670"}.brankic-icon-gamepad:before{content:"\e671"}.brankic-icon-alarm:before{content:"\e672"}.brankic-icon-alarm-cancel:before{content:"\e673"}.brankic-icon-phone2:before{content:"\e674"}.brankic-icon-phone3:before{content:"\e675"}.brankic-icon-image:before{content:"\e676"}.brankic-icon-open:before{content:"\e677"}.brankic-icon-sale:before{content:"\e678"}.brankic-icon-direction:before{content:"\e679"}.brankic-icon-map:before{content:"\e67a"}.brankic-icon-trashcan:before{content:"\e67b"}.brankic-icon-vote:before{content:"\e67c"}.brankic-icon-graduate:before{content:"\e67d"}.brankic-icon-lab:before{content:"\e67e"}.brankic-icon-tie:before{content:"\e67f"}.brankic-icon-football:before{content:"\e680"}.brankic-icon-eight-ball:before{content:"\e681"}.brankic-icon-bowling:before{content:"\e682"}.brankic-icon-bowling-pin:before{content:"\e683"}.brankic-icon-baseball:before{content:"\e684"}.brankic-icon-soccer:before{content:"\e685"}.brankic-icon-3d-glasses:before{content:"\e686"}.brankic-icon-microwave:before{content:"\e687"}.brankic-icon-refrigerator:before{content:"\e688"}.brankic-icon-oven:before{content:"\e689"}.brankic-icon-washing-machine:before{content:"\e68a"}.brankic-icon-mouse:before{content:"\e68b"}.brankic-icon-smiley:before{content:"\e68c"}.brankic-icon-sad:before{content:"\e68d"}.brankic-icon-mute:before{content:"\e68e"}.brankic-icon-hand:before{content:"\e68f"}.brankic-icon-radio:before{content:"\e690"}.brankic-icon-satellite:before{content:"\e691"}.brankic-icon-medal:before{content:"\e692"}.brankic-icon-medal2:before{content:"\e693"}.brankic-icon-switch:before{content:"\e694"}.brankic-icon-key:before{content:"\e695"}.brankic-icon-cord:before{content:"\e696"}.brankic-icon-locked:before{content:"\e697"}.brankic-icon-unlocked:before{content:"\e698"}.brankic-icon-locked2:before{content:"\e699"}.brankic-icon-unlocked2:before{content:"\e69a"}.brankic-icon-magnifier:before{content:"\e69b"}.brankic-icon-zoom-in:before{content:"\e69c"}.brankic-icon-zoom-out:before{content:"\e69d"}.brankic-icon-stack:before{content:"\e69e"}.brankic-icon-stack2:before{content:"\e69f"}.brankic-icon-stack3:before{content:"\e6a0"}.brankic-icon-david-star:before{content:"\e6a1"}.brankic-icon-cross:before{content:"\e6a2"}.brankic-icon-moon-andstar:before{content:"\e6a3"}.brankic-icon-transformers:before{content:"\e6a4"}.brankic-icon-batman:before{content:"\e6a5"}.brankic-icon-space-invaders:before{content:"\e6a6"}.brankic-icon-skeletor:before{content:"\e6a7"}.brankic-icon-lamp:before{content:"\e6a8"}.brankic-icon-lamp2:before{content:"\e6a9"}.brankic-icon-umbrella:before{content:"\e6aa"}.brankic-icon-street-light:before{content:"\e6ab"}.brankic-icon-bomb:before{content:"\e6ac"}.brankic-icon-archive:before{content:"\e6ad"}.brankic-icon-battery:before{content:"\e6ae"}.brankic-icon-battery2:before{content:"\e6af"}.brankic-icon-battery3:before{content:"\e6b0"}.brankic-icon-battery4:before{content:"\e6b1"}.brankic-icon-battery5:before{content:"\e6b2"}.brankic-icon-megaphone:before{content:"\e6b3"}.brankic-icon-megaphone2:before{content:"\e6b4"}.brankic-icon-patch:before{content:"\e6b5"}.brankic-icon-pil:before{content:"\e6b6"}.brankic-icon-injection:before{content:"\e6b7"}.brankic-icon-thermometer:before{content:"\e6b8"}.brankic-icon-lamp3:before{content:"\e6b9"}.brankic-icon-lamp4:before{content:"\e6ba"}.brankic-icon-lamp5:before{content:"\e6bb"}.brankic-icon-cube:before{content:"\e6bc"}.brankic-icon-box:before{content:"\e6bd"}.brankic-icon-box2:before{content:"\e6be"}.brankic-icon-diamond:before{content:"\e6bf"}.brankic-icon-bag:before{content:"\e6c0"}.brankic-icon-money-bag:before{content:"\e6c1"}.brankic-icon-grid:before{content:"\e6c2"}.brankic-icon-grid2:before{content:"\e6c3"}.brankic-icon-list:before{content:"\e6c4"}.brankic-icon-list2:before{content:"\e6c5"}.brankic-icon-ruler:before{content:"\e6c6"}.brankic-icon-ruler2:before{content:"\e6c7"}.brankic-icon-layout:before{content:"\e6c8"}.brankic-icon-layout2:before{content:"\e6c9"}.brankic-icon-layout3:before{content:"\e6ca"}.brankic-icon-layout4:before{content:"\e6cb"}.brankic-icon-layout5:before{content:"\e6cc"}.brankic-icon-layout6:before{content:"\e6cd"}.brankic-icon-layout7:before{content:"\e6ce"}.brankic-icon-layout8:before{content:"\e6cf"}.brankic-icon-layout9:before{content:"\e6d0"}.brankic-icon-layout10:before{content:"\e6d1"}.brankic-icon-layout11:before{content:"\e6d2"}.brankic-icon-layout12:before{content:"\e6d3"}.brankic-icon-layout13:before{content:"\e6d4"}.brankic-icon-layout14:before{content:"\e6d5"}.brankic-icon-tools:before{content:"\e6d6"}.brankic-icon-screwdriver:before{content:"\e6d7"}.brankic-icon-paint:before{content:"\e6d8"}.brankic-icon-hammer:before{content:"\e6d9"}.brankic-icon-brush:before{content:"\e6da"}.brankic-icon-pen:before{content:"\e6db"}.brankic-icon-chat:before{content:"\e6dc"}.brankic-icon-comments:before{content:"\e6dd"}.brankic-icon-chat2:before{content:"\e6de"}.brankic-icon-chat3:before{content:"\e6df"}.brankic-icon-volume:before{content:"\e6e0"}.brankic-icon-volume2:before{content:"\e6e1"}.brankic-icon-volume3:before{content:"\e6e2"}.brankic-icon-equalizer:before{content:"\e6e3"}.brankic-icon-resize:before{content:"\e6e4"}.brankic-icon-resize2:before{content:"\e6e5"}.brankic-icon-stretch:before{content:"\e6e6"}.brankic-icon-narrow:before{content:"\e6e7"}.brankic-icon-resize3:before{content:"\e6e8"}.brankic-icon-download3:before{content:"\e6e9"}.brankic-icon-calculator:before{content:"\e6ea"}.brankic-icon-library:before{content:"\e6eb"}.brankic-icon-auction:before{content:"\e6ec"}.brankic-icon-justice:before{content:"\e6ed"}.brankic-icon-stats:before{content:"\e6ee"}.brankic-icon-stats2:before{content:"\e6ef"}.brankic-icon-attachment:before{content:"\e6f0"}.brankic-icon-hourglass:before{content:"\e6f1"}.brankic-icon-abacus:before{content:"\e6f2"}.brankic-icon-pencil:before{content:"\e6f3"}.brankic-icon-pen2:before{content:"\e6f4"}.brankic-icon-pin:before{content:"\e6f5"}.brankic-icon-pin2:before{content:"\e6f6"}.brankic-icon-discout:before{content:"\e6f7"}.brankic-icon-edit:before{content:"\e6f8"}.brankic-icon-scissors:before{content:"\e6f9"}.brankic-icon-profile:before{content:"\e6fa"}.brankic-icon-profile2:before{content:"\e6fb"}.brankic-icon-profile3:before{content:"\e6fc"}.brankic-icon-rotate:before{content:"\e6fd"}.brankic-icon-rotate2:before{content:"\e6fe"}.brankic-icon-reply:before{content:"\e6ff"}.brankic-icon-forward:before{content:"\e700"}.brankic-icon-retweet:before{content:"\e701"}.brankic-icon-shuffle:before{content:"\e702"}.brankic-icon-loop:before{content:"\e703"}.brankic-icon-crop:before{content:"\e704"}.brankic-icon-square:before{content:"\e705"}.brankic-icon-square2:before{content:"\e706"}.brankic-icon-circle:before{content:"\e707"}.brankic-icon-dollar:before{content:"\e708"}.brankic-icon-dollar2:before{content:"\e709"}.brankic-icon-coins:before{content:"\e70a"}.brankic-icon-pig:before{content:"\e70b"}.brankic-icon-bookmark:before{content:"\e70c"}.brankic-icon-bookmark2:before{content:"\e70d"}.brankic-icon-address-book:before{content:"\e70e"}.brankic-icon-address-book2:before{content:"\e70f"}.brankic-icon-safe:before{content:"\e710"}.brankic-icon-envelope:before{content:"\e711"}.brankic-icon-envelope2:before{content:"\e712"}.brankic-icon-radio-active:before{content:"\e713"}.brankic-icon-music:before{content:"\e714"}.brankic-icon-presentation:before{content:"\e715"}.brankic-icon-male:before{content:"\e716"}.brankic-icon-female:before{content:"\e717"}.brankic-icon-aids:before{content:"\e718"}.brankic-icon-heart:before{content:"\e719"}.brankic-icon-info:before{content:"\e71a"}.brankic-icon-info2:before{content:"\e71b"}.brankic-icon-piano:before{content:"\e71c"}.brankic-icon-rain:before{content:"\e71d"}.brankic-icon-snow:before{content:"\e71e"}.brankic-icon-lightning:before{content:"\e71f"}.brankic-icon-sun:before{content:"\e720"}.brankic-icon-moon:before{content:"\e721"}.brankic-icon-cloudy:before{content:"\e722"}.brankic-icon-cloudy2:before{content:"\e723"}.brankic-icon-car:before{content:"\e724"}.brankic-icon-bike:before{content:"\e725"}.brankic-icon-truck:before{content:"\e726"}.brankic-icon-bus:before{content:"\e727"}.brankic-icon-bike2:before{content:"\e728"}.brankic-icon-plane:before{content:"\e729"}.brankic-icon-paper-plane:before{content:"\e72a"}.brankic-icon-rocket:before{content:"\e72b"}.brankic-icon-book:before{content:"\e72c"}.brankic-icon-book2:before{content:"\e72d"}.brankic-icon-barcode:before{content:"\e72e"}.brankic-icon-barcode2:before{content:"\e72f"}.brankic-icon-expand:before{content:"\e730"}.brankic-icon-collapse:before{content:"\e731"}.brankic-icon-pop-out:before{content:"\e732"}.brankic-icon-pop-in:before{content:"\e733"}.brankic-icon-target:before{content:"\e734"}.brankic-icon-badge:before{content:"\e735"}.brankic-icon-badge2:before{content:"\e736"}.brankic-icon-ticket:before{content:"\e737"}.brankic-icon-ticket2:before{content:"\e738"}.brankic-icon-ticket3:before{content:"\e739"}.brankic-icon-microphone4:before{content:"\e73a"}.brankic-icon-cone:before{content:"\e73b"}.brankic-icon-blocked:before{content:"\e73c"}.brankic-icon-stop:before{content:"\e73d"}.brankic-icon-keyboard:before{content:"\e73e"}.brankic-icon-keyboard2:before{content:"\e73f"}.brankic-icon-radio2:before{content:"\e740"}.brankic-icon-printer:before{content:"\e741"}.brankic-icon-checked:before{content:"\e742"}.brankic-icon-error:before{content:"\e743"}.brankic-icon-add:before{content:"\e744"}.brankic-icon-minus3:before{content:"\e745"}.brankic-icon-alert:before{content:"\e746"}.brankic-icon-pictures3:before{content:"\e747"}.brankic-icon-atom:before{content:"\e748"}.brankic-icon-eyedropper:before{content:"\e749"}.brankic-icon-globe:before{content:"\e74a"}.brankic-icon-globe2:before{content:"\e74b"}.brankic-icon-shipping:before{content:"\e74c"}.brankic-icon-ying-yang:before{content:"\e74d"}.brankic-icon-compass:before{content:"\e74e"}.brankic-icon-zip:before{content:"\e74f"}.brankic-icon-zip2:before{content:"\e750"}.brankic-icon-anchor:before{content:"\e751"}.brankic-icon-locked-heart:before{content:"\e752"}.brankic-icon-magnet:before{content:"\e753"}.brankic-icon-navigation:before{content:"\e754"}.brankic-icon-tags:before{content:"\e755"}.brankic-icon-heart2:before{content:"\e756"}.brankic-icon-heart3:before{content:"\e757"}.brankic-icon-usb:before{content:"\e758"}.brankic-icon-clipboard:before{content:"\e759"}.brankic-icon-clipboard2:before{content:"\e75a"}.brankic-icon-clipboard3:before{content:"\e75b"}.brankic-icon-switch2:before{content:"\e75c"}.brankic-icon-ruler3:before{content:"\e75d"}

/* enotype icons - uncompressed version in fonts/icons/enotype/enotype.css */
@font-face{font-family:'enotype';src:url('../fonts/icons/enotype/enotype.eot');src:url('../fonts/icons/enotype/enotype.eot?#iefix') format('embedded-opentype'),url('../fonts/icons/enotype/enotype.ttf') format('truetype'),url('../fonts/icons/enotype/enotype.woff') format('woff'),url('../fonts/icons/enotype/enotype.svg#enotype') format('svg');font-weight:normal;font-style:normal}[class*="enotype-icon-"]{font-family:'enotype';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:inherit;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;-o-font-feature-settings:"liga";font-feature-settings:"liga";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.enotype-icon-phone:before{content:"\e600"}.enotype-icon-mobile:before{content:"\e601"}.enotype-icon-mouse:before{content:"\e602"}.enotype-icon-directions:before{content:"\e603"}.enotype-icon-mail:before{content:"\e604"}.enotype-icon-paperplane:before{content:"\e605"}.enotype-icon-pencil:before{content:"\e606"}.enotype-icon-feather:before{content:"\e607"}.enotype-icon-paperclip:before{content:"\e608"}.enotype-icon-drawer:before{content:"\e609"}.enotype-icon-reply:before{content:"\e60a"}.enotype-icon-reply-all:before{content:"\e60b"}.enotype-icon-forward:before{content:"\e60c"}.enotype-icon-user:before{content:"\e60d"}.enotype-icon-users:before{content:"\e60e"}.enotype-icon-user-add:before{content:"\e60f"}.enotype-icon-vcard:before{content:"\e610"}.enotype-icon-export:before{content:"\e611"}.enotype-icon-location:before{content:"\e612"}.enotype-icon-map:before{content:"\e613"}.enotype-icon-compass:before{content:"\e614"}.enotype-icon-location2:before{content:"\e615"}.enotype-icon-target:before{content:"\e616"}.enotype-icon-share:before{content:"\e617"}.enotype-icon-sharable:before{content:"\e618"}.enotype-icon-heart:before{content:"\e619"}.enotype-icon-heart2:before{content:"\e61a"}.enotype-icon-star:before{content:"\e61b"}.enotype-icon-star2:before{content:"\e61c"}.enotype-icon-thumbs-up:before{content:"\e61d"}.enotype-icon-thumbs-down:before{content:"\e61e"}.enotype-icon-chat:before{content:"\e61f"}.enotype-icon-comment:before{content:"\e620"}.enotype-icon-quote:before{content:"\e621"}.enotype-icon-house:before{content:"\e622"}.enotype-icon-popup:before{content:"\e623"}.enotype-icon-search:before{content:"\e624"}.enotype-icon-flashlight:before{content:"\e625"}.enotype-icon-printer:before{content:"\e626"}.enotype-icon-bell:before{content:"\e627"}.enotype-icon-link:before{content:"\e628"}.enotype-icon-flag:before{content:"\e629"}.enotype-icon-cog:before{content:"\e62a"}.enotype-icon-tools:before{content:"\e62b"}.enotype-icon-trophy:before{content:"\e62c"}.enotype-icon-tag:before{content:"\e62d"}.enotype-icon-camera:before{content:"\e62e"}.enotype-icon-megaphone:before{content:"\e62f"}.enotype-icon-moon:before{content:"\e630"}.enotype-icon-palette:before{content:"\e631"}.enotype-icon-leaf:before{content:"\e632"}.enotype-icon-music:before{content:"\e633"}.enotype-icon-music2:before{content:"\e634"}.enotype-icon-new:before{content:"\e635"}.enotype-icon-graduation:before{content:"\e636"}.enotype-icon-book:before{content:"\e637"}.enotype-icon-newspaper:before{content:"\e638"}.enotype-icon-bag:before{content:"\e639"}.enotype-icon-airplane:before{content:"\e63a"}.enotype-icon-lifebuoy:before{content:"\e63b"}.enotype-icon-eye:before{content:"\e63c"}.enotype-icon-clock:before{content:"\e63d"}.enotype-icon-microphone:before{content:"\e63e"}.enotype-icon-calendar:before{content:"\e63f"}.enotype-icon-bolt:before{content:"\e640"}.enotype-icon-thunder:before{content:"\e641"}.enotype-icon-droplet:before{content:"\e642"}.enotype-icon-cd:before{content:"\e643"}.enotype-icon-briefcase:before{content:"\e644"}.enotype-icon-air:before{content:"\e645"}.enotype-icon-hourglass:before{content:"\e646"}.enotype-icon-gauge:before{content:"\e647"}.enotype-icon-language:before{content:"\e648"}.enotype-icon-network:before{content:"\e649"}.enotype-icon-key:before{content:"\e64a"}.enotype-icon-battery:before{content:"\e64b"}.enotype-icon-bucket:before{content:"\e64c"}.enotype-icon-magnet:before{content:"\e64d"}.enotype-icon-drive:before{content:"\e64e"}.enotype-icon-cup:before{content:"\e64f"}.enotype-icon-rocket:before{content:"\e650"}.enotype-icon-brush:before{content:"\e651"}.enotype-icon-suitcase:before{content:"\e652"}.enotype-icon-cone:before{content:"\e653"}.enotype-icon-earth:before{content:"\e654"}.enotype-icon-keyboard:before{content:"\e655"}.enotype-icon-browser:before{content:"\e656"}.enotype-icon-publish:before{content:"\e657"}.enotype-icon-progress-3:before{content:"\e658"}.enotype-icon-progress-2:before{content:"\e659"}.enotype-icon-brogress-1:before{content:"\e65a"}.enotype-icon-progress-0:before{content:"\e65b"}.enotype-icon-sun:before{content:"\e65c"}.enotype-icon-sun2:before{content:"\e65d"}.enotype-icon-adjust:before{content:"\e65e"}.enotype-icon-code:before{content:"\e65f"}.enotype-icon-screen:before{content:"\e660"}.enotype-icon-infinity:before{content:"\e661"}.enotype-icon-light-bulb:before{content:"\e662"}.enotype-icon-credit-card:before{content:"\e663"}.enotype-icon-database:before{content:"\e664"}.enotype-icon-voicemail:before{content:"\e665"}.enotype-icon-clipboard:before{content:"\e666"}.enotype-icon-cart:before{content:"\e667"}.enotype-icon-box:before{content:"\e668"}.enotype-icon-ticket:before{content:"\e669"}.enotype-icon-rss:before{content:"\e66a"}.enotype-icon-signal:before{content:"\e66b"}.enotype-icon-thermometer:before{content:"\e66c"}.enotype-icon-droplets:before{content:"\e66d"}.enotype-icon-uniE66E:before{content:"\e66e"}.enotype-icon-statistics:before{content:"\e66f"}.enotype-icon-pie:before{content:"\e670"}.enotype-icon-bars:before{content:"\e671"}.enotype-icon-graph:before{content:"\e672"}.enotype-icon-lock:before{content:"\e673"}.enotype-icon-lock-open:before{content:"\e674"}.enotype-icon-logout:before{content:"\e675"}.enotype-icon-login:before{content:"\e676"}.enotype-icon-checkmark:before{content:"\e677"}.enotype-icon-cross:before{content:"\e678"}.enotype-icon-minus:before{content:"\e679"}.enotype-icon-plus:before{content:"\e67a"}.enotype-icon-cross2:before{content:"\e67b"}.enotype-icon-minus2:before{content:"\e67c"}.enotype-icon-plus2:before{content:"\e67d"}.enotype-icon-cross3:before{content:"\e67e"}.enotype-icon-minus3:before{content:"\e67f"}.enotype-icon-plus3:before{content:"\e680"}.enotype-icon-erase:before{content:"\e681"}.enotype-icon-blocked:before{content:"\e682"}.enotype-icon-info:before{content:"\e683"}.enotype-icon-info2:before{content:"\e684"}.enotype-icon-question:before{content:"\e685"}.enotype-icon-help:before{content:"\e686"}.enotype-icon-warning:before{content:"\e687"}.enotype-icon-cycle:before{content:"\e688"}.enotype-icon-cw:before{content:"\e689"}.enotype-icon-ccw:before{content:"\e68a"}.enotype-icon-shuffle:before{content:"\e68b"}.enotype-icon-arrow:before{content:"\e68c"}.enotype-icon-arrow2:before{content:"\e68d"}.enotype-icon-retweet:before{content:"\e68e"}.enotype-icon-loop:before{content:"\e68f"}.enotype-icon-history:before{content:"\e690"}.enotype-icon-back:before{content:"\e691"}.enotype-icon-switch:before{content:"\e692"}.enotype-icon-list:before{content:"\e693"}.enotype-icon-add-to-list:before{content:"\e694"}.enotype-icon-layout:before{content:"\e695"}.enotype-icon-list2:before{content:"\e696"}.enotype-icon-text:before{content:"\e697"}.enotype-icon-text2:before{content:"\e698"}.enotype-icon-document:before{content:"\e699"}.enotype-icon-docs:before{content:"\e69a"}.enotype-icon-landscape:before{content:"\e69b"}.enotype-icon-pictures:before{content:"\e69c"}.enotype-icon-video:before{content:"\e69d"}.enotype-icon-music3:before{content:"\e69e"}.enotype-icon-folder:before{content:"\e69f"}.enotype-icon-archive:before{content:"\e6a0"}.enotype-icon-trash:before{content:"\e6a1"}.enotype-icon-upload:before{content:"\e6a2"}.enotype-icon-download:before{content:"\e6a3"}.enotype-icon-disk:before{content:"\e6a4"}.enotype-icon-install:before{content:"\e6a5"}.enotype-icon-cloud:before{content:"\e6a6"}.enotype-icon-upload2:before{content:"\e6a7"}.enotype-icon-bookmark:before{content:"\e6a8"}.enotype-icon-bookmarks:before{content:"\e6a9"}.enotype-icon-book2:before{content:"\e6aa"}.enotype-icon-play:before{content:"\e6ab"}.enotype-icon-pause:before{content:"\e6ac"}.enotype-icon-record:before{content:"\e6ad"}.enotype-icon-stop:before{content:"\e6ae"}.enotype-icon-next:before{content:"\e6af"}.enotype-icon-previous:before{content:"\e6b0"}.enotype-icon-first:before{content:"\e6b1"}.enotype-icon-last:before{content:"\e6b2"}.enotype-icon-resize-enlarge:before{content:"\e6b3"}.enotype-icon-resize-shrink:before{content:"\e6b4"}.enotype-icon-volume:before{content:"\e6b5"}.enotype-icon-sound:before{content:"\e6b6"}.enotype-icon-mute:before{content:"\e6b7"}.enotype-icon-flow-cascade:before{content:"\e6b8"}.enotype-icon-flow-branch:before{content:"\e6b9"}.enotype-icon-flow-tree:before{content:"\e6ba"}.enotype-icon-flow-line:before{content:"\e6bb"}.enotype-icon-flow-parallel:before{content:"\e6bc"}.enotype-icon-arrow-left:before{content:"\e6bd"}.enotype-icon-arrow-down:before{content:"\e6be"}.enotype-icon-arrow-up--upload:before{content:"\e6bf"}.enotype-icon-arrow-right:before{content:"\e6c0"}.enotype-icon-arrow-left2:before{content:"\e6c1"}.enotype-icon-arrow-down2:before{content:"\e6c2"}.enotype-icon-arrow-up:before{content:"\e6c3"}.enotype-icon-arrow-right2:before{content:"\e6c4"}.enotype-icon-arrow-left3:before{content:"\e6c5"}.enotype-icon-arrow-down3:before{content:"\e6c6"}.enotype-icon-arrow-up2:before{content:"\e6c7"}.enotype-icon-arrow-right3:before{content:"\e6c8"}.enotype-icon-arrow-left4:before{content:"\e6c9"}.enotype-icon-arrow-down4:before{content:"\e6ca"}.enotype-icon-arrow-up3:before{content:"\e6cb"}.enotype-icon-arrow-right4:before{content:"\e6cc"}.enotype-icon-arrow-left5:before{content:"\e6cd"}.enotype-icon-arrow-down5:before{content:"\e6ce"}.enotype-icon-arrow-up4:before{content:"\e6cf"}.enotype-icon-arrow-right5:before{content:"\e6d0"}.enotype-icon-arrow-left6:before{content:"\e6d1"}.enotype-icon-arrow-down6:before{content:"\e6d2"}.enotype-icon-arrow-up5:before{content:"\e6d3"}.enotype-icon-arrow-right6:before{content:"\e6d4"}.enotype-icon-arrow-left7:before{content:"\e6d5"}.enotype-icon-arrow-down7:before{content:"\e6d6"}.enotype-icon-arrow-up6:before{content:"\e6d7"}.enotype-icon-uniE6D8:before{content:"\e6d8"}.enotype-icon-arrow-left8:before{content:"\e6d9"}.enotype-icon-arrow-down8:before{content:"\e6da"}.enotype-icon-arrow-up7:before{content:"\e6db"}.enotype-icon-arrow-right7:before{content:"\e6dc"}.enotype-icon-menu:before{content:"\e6dd"}.enotype-icon-ellipsis:before{content:"\e6de"}.enotype-icon-dots:before{content:"\e6df"}.enotype-icon-dot:before{content:"\e6e0"}.enotype-icon-cc:before{content:"\e6e1"}.enotype-icon-cc-by:before{content:"\e6e2"}.enotype-icon-cc-nc:before{content:"\e6e3"}.enotype-icon-cc-nc-eu:before{content:"\e6e4"}.enotype-icon-cc-nc-jp:before{content:"\e6e5"}.enotype-icon-cc-sa:before{content:"\e6e6"}.enotype-icon-cc-nd:before{content:"\e6e7"}.enotype-icon-cc-pd:before{content:"\e6e8"}.enotype-icon-cc-zero:before{content:"\e6e9"}.enotype-icon-cc-share:before{content:"\e6ea"}.enotype-icon-cc-share2:before{content:"\e6eb"}.enotype-icon-daniel-bruce:before{content:"\e6ec"}.enotype-icon-daniel-bruce2:before{content:"\e6ed"}.enotype-icon-github:before{content:"\e6ee"}.enotype-icon-github2:before{content:"\e6ef"}.enotype-icon-flickr:before{content:"\e6f0"}.enotype-icon-flickr2:before{content:"\e6f1"}.enotype-icon-vimeo:before{content:"\e6f2"}.enotype-icon-vimeo2:before{content:"\e6f3"}.enotype-icon-twitter:before{content:"\e6f4"}.enotype-icon-twitter2:before{content:"\e6f5"}.enotype-icon-facebook:before{content:"\e6f6"}.enotype-icon-facebook2:before{content:"\e6f7"}.enotype-icon-facebook3:before{content:"\e6f8"}.enotype-icon-googleplus:before{content:"\e6f9"}.enotype-icon-googleplus2:before{content:"\e6fa"}.enotype-icon-pinterest:before{content:"\e6fb"}.enotype-icon-pinterest2:before{content:"\e6fc"}.enotype-icon-tumblr:before{content:"\e6fd"}.enotype-icon-tumblr2:before{content:"\e6fe"}.enotype-icon-linkedin:before{content:"\e6ff"}.enotype-icon-linkedin2:before{content:"\e700"}.enotype-icon-dribbble:before{content:"\e701"}.enotype-icon-dribbble2:before{content:"\e702"}.enotype-icon-stumbleupon:before{content:"\e703"}.enotype-icon-stumbleupon2:before{content:"\e704"}.enotype-icon-lastfm:before{content:"\e705"}.enotype-icon-lastfm2:before{content:"\e706"}.enotype-icon-rdio:before{content:"\e707"}.enotype-icon-rdio2:before{content:"\e708"}.enotype-icon-spotify:before{content:"\e709"}.enotype-icon-spotify2:before{content:"\e70a"}.enotype-icon-qq:before{content:"\e70b"}.enotype-icon-instagram:before{content:"\e70c"}.enotype-icon-dropbox:before{content:"\e70d"}.enotype-icon-evernote:before{content:"\e70e"}.enotype-icon-flattr:before{content:"\e70f"}.enotype-icon-skype:before{content:"\e710"}.enotype-icon-skype2:before{content:"\e711"}.enotype-icon-renren:before{content:"\e712"}.enotype-icon-sina-weibo:before{content:"\e713"}.enotype-icon-paypal:before{content:"\e714"}.enotype-icon-picasa:before{content:"\e715"}.enotype-icon-soundcloud:before{content:"\e716"}.enotype-icon-mixi:before{content:"\e717"}.enotype-icon-behance:before{content:"\e718"}.enotype-icon-circles:before{content:"\e719"}.enotype-icon-vk:before{content:"\e71a"}.enotype-icon-smashing:before{content:"\e71b"}

/* linecon icons - uncompressed version in fonts/icons/linecon/linecon.css */
@font-face{font-family:'linecon';src:url('../fonts/icons/linecon/linecon.eot');src:url('../fonts/icons/linecon/linecon.eot?#iefix') format('embedded-opentype'),url('../fonts/icons/linecon/linecon.ttf') format('truetype'),url('../fonts/icons/linecon/linecon.woff') format('woff'),url('../fonts/icons/linecon/linecon.svg#linecon') format('svg');font-weight:normal;font-style:normal}[class*="linecon-icon-"]{font-family:'linecon';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:inherit;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;-o-font-feature-settings:"liga";font-feature-settings:"liga";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.linecon-icon-heart:before{content:"\e600"}.linecon-icon-cloud:before{content:"\e601"}.linecon-icon-star:before{content:"\e602"}.linecon-icon-tv:before{content:"\e603"}.linecon-icon-sound:before{content:"\e604"}.linecon-icon-video:before{content:"\e605"}.linecon-icon-trash:before{content:"\e606"}.linecon-icon-user:before{content:"\e607"}.linecon-icon-key:before{content:"\e608"}.linecon-icon-search:before{content:"\e609"}.linecon-icon-settings:before{content:"\e60a"}.linecon-icon-camera:before{content:"\e60b"}.linecon-icon-tag:before{content:"\e60c"}.linecon-icon-lock:before{content:"\e60d"}.linecon-icon-bulb:before{content:"\e60e"}.linecon-icon-pen:before{content:"\e60f"}.linecon-icon-diamond:before{content:"\e610"}.linecon-icon-display:before{content:"\e611"}.linecon-icon-location:before{content:"\e612"}.linecon-icon-eye:before{content:"\e613"}.linecon-icon-bubble:before{content:"\e614"}.linecon-icon-stack:before{content:"\e615"}.linecon-icon-cup:before{content:"\e616"}.linecon-icon-phone:before{content:"\e617"}.linecon-icon-news:before{content:"\e618"}.linecon-icon-mail:before{content:"\e619"}.linecon-icon-like:before{content:"\e61a"}.linecon-icon-photo:before{content:"\e61b"}.linecon-icon-note:before{content:"\e61c"}.linecon-icon-clock:before{content:"\e61d"}.linecon-icon-paperplane:before{content:"\e61e"}.linecon-icon-params:before{content:"\e61f"}.linecon-icon-banknote:before{content:"\e620"}.linecon-icon-data:before{content:"\e621"}.linecon-icon-music:before{content:"\e622"}.linecon-icon-megaphone:before{content:"\e623"}.linecon-icon-study:before{content:"\e624"}.linecon-icon-lab:before{content:"\e625"}.linecon-icon-food:before{content:"\e626"}.linecon-icon-t-shirt:before{content:"\e627"}.linecon-icon-fire:before{content:"\e628"}.linecon-icon-clip:before{content:"\e629"}.linecon-icon-shop:before{content:"\e62a"}.linecon-icon-calendar:before{content:"\e62b"}.linecon-icon-wallet:before{content:"\e62c"}.linecon-icon-vynil:before{content:"\e62d"}.linecon-icon-truck:before{content:"\e62e"}.linecon-icon-world:before{content:"\e62f"}

/* steadysets icons - uncompressed version in fonts/icons/steadysets/steady.css */
@font-face{font-family:'steadysets';src:url('../fonts/icons/steadysets/steadysets.eot');src:url('../fonts/icons/steadysets/steadysets.eot?#iefix') format('embedded-opentype'),url('../fonts/icons/steadysets/steadysets.woff') format('woff'),url('../fonts/icons/steadysets/steadysets.ttf') format('truetype'),url('../fonts/icons/steadysets/steadysets.svg#steadysets') format('svg');font-weight:normal;font-style:normal}[class^="steady-icon-"],[class*=" steady-icon-"]{font-family:'steadysets';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.steady-icon-type:before{content:"\e600"}.steady-icon-box:before{content:"\e601"}.steady-icon-archive:before{content:"\e602"}.steady-icon-envelope:before{content:"\e603"}.steady-icon-email:before{content:"\e604"}.steady-icon-files:before{content:"\e605"}.steady-icon-uniE606:before{content:"\e606"}.steady-icon-file-settings:before{content:"\e607"}.steady-icon-file-add:before{content:"\e608"}.steady-icon-file:before{content:"\e609"}.steady-icon-align-left:before{content:"\e60a"}.steady-icon-align-right:before{content:"\e60b"}.steady-icon-align-center:before{content:"\e60c"}.steady-icon-align-justify:before{content:"\e60d"}.steady-icon-file-broken:before{content:"\e60e"}.steady-icon-browser:before{content:"\e60f"}.steady-icon-windows:before{content:"\e610"}.steady-icon-window:before{content:"\e611"}.steady-icon-folder:before{content:"\e612"}.steady-icon-folder-add:before{content:"\e613"}.steady-icon-folder-settings:before{content:"\e614"}.steady-icon-folder-check:before{content:"\e615"}.steady-icon-wifi-low:before{content:"\e616"}.steady-icon-wifi-mid:before{content:"\e617"}.steady-icon-wifi-full:before{content:"\e618"}.steady-icon-connection-empty:before{content:"\e619"}.steady-icon-connection-25:before{content:"\e61a"}.steady-icon-connection-50:before{content:"\e61b"}.steady-icon-connection-75:before{content:"\e61c"}.steady-icon-connection-full:before{content:"\e61d"}.steady-icon-list:before{content:"\e61e"}.steady-icon-grid:before{content:"\e61f"}.steady-icon-uniE620:before{content:"\e620"}.steady-icon-battery-charging:before{content:"\e621"}.steady-icon-battery-empty:before{content:"\e622"}.steady-icon-battery-25:before{content:"\e623"}.steady-icon-battery-50:before{content:"\e624"}.steady-icon-battery-75:before{content:"\e625"}.steady-icon-battery-full:before{content:"\e626"}.steady-icon-settings:before{content:"\e627"}.steady-icon-arrow-left:before{content:"\e628"}.steady-icon-arrow-up:before{content:"\e629"}.steady-icon-arrow-down:before{content:"\e62a"}.steady-icon-arrow-right:before{content:"\e62b"}.steady-icon-reload:before{content:"\e62c"}.steady-icon-refresh:before{content:"\e62d"}.steady-icon-volume:before{content:"\e62e"}.steady-icon-volume-increase:before{content:"\e62f"}.steady-icon-volume-decrease:before{content:"\e630"}.steady-icon-mute:before{content:"\e631"}.steady-icon-microphone:before{content:"\e632"}.steady-icon-microphone-off:before{content:"\e633"}.steady-icon-book:before{content:"\e634"}.steady-icon-checkmark:before{content:"\e635"}.steady-icon-checkbox-checked:before{content:"\e636"}.steady-icon-checkbox:before{content:"\e637"}.steady-icon-paperclip:before{content:"\e638"}.steady-icon-download:before{content:"\e639"}.steady-icon-tag:before{content:"\e63a"}.steady-icon-trashcan:before{content:"\e63b"}.steady-icon-search:before{content:"\e63c"}.steady-icon-zoom-in:before{content:"\e63d"}.steady-icon-zoom-out:before{content:"\e63e"}.steady-icon-chat:before{content:"\e63f"}.steady-icon-chat-1:before{content:"\e640"}.steady-icon-chat-2:before{content:"\e641"}.steady-icon-chat-3:before{content:"\e642"}.steady-icon-comment:before{content:"\e643"}.steady-icon-calendar:before{content:"\e644"}.steady-icon-bookmark:before{content:"\e645"}.steady-icon-email2:before{content:"\e646"}.steady-icon-heart:before{content:"\e647"}.steady-icon-enter:before{content:"\e648"}.steady-icon-cloud:before{content:"\e649"}.steady-icon-book2:before{content:"\e64a"}.steady-icon-star:before{content:"\e64b"}.steady-icon-clock:before{content:"\e64c"}.steady-icon-printer:before{content:"\e64d"}.steady-icon-home:before{content:"\e64e"}.steady-icon-flag:before{content:"\e64f"}.steady-icon-meter:before{content:"\e650"}.steady-icon-switch:before{content:"\e651"}.steady-icon-forbidden:before{content:"\e652"}.steady-icon-lock:before{content:"\e653"}.steady-icon-unlocked:before{content:"\e654"}.steady-icon-unlocked2:before{content:"\e655"}.steady-icon-users:before{content:"\e656"}.steady-icon-user:before{content:"\e657"}.steady-icon-users2:before{content:"\e658"}.steady-icon-user2:before{content:"\e659"}.steady-icon-bullhorn:before{content:"\e65a"}.steady-icon-share:before{content:"\e65b"}.steady-icon-screen:before{content:"\e65c"}.steady-icon-phone:before{content:"\e65d"}.steady-icon-phone-portrait:before{content:"\e65e"}.steady-icon-phone-landscape:before{content:"\e65f"}.steady-icon-tablet:before{content:"\e660"}.steady-icon-tablet-landscape:before{content:"\e661"}.steady-icon-laptop:before{content:"\e662"}.steady-icon-camera:before{content:"\e663"}.steady-icon-microwave-oven:before{content:"\e664"}.steady-icon-credit-cards:before{content:"\e665"}.steady-icon-calculator:before{content:"\e666"}.steady-icon-bag:before{content:"\e667"}.steady-icon-diamond:before{content:"\e668"}.steady-icon-drink:before{content:"\e669"}.steady-icon-shorts:before{content:"\e66a"}.steady-icon-vcard:before{content:"\e66b"}.steady-icon-sun:before{content:"\e66c"}.steady-icon-bill:before{content:"\e66d"}.steady-icon-coffee:before{content:"\e66e"}.steady-icon-uniE66F:before{content:"\e66f"}.steady-icon-newspaper:before{content:"\e670"}.steady-icon-stack:before{content:"\e671"}.steady-icon-map-marker:before{content:"\e672"}.steady-icon-map:before{content:"\e673"}.steady-icon-support:before{content:"\e674"}.steady-icon-uniE675:before{content:"\e675"}.steady-icon-barbell:before{content:"\e676"}.steady-icon-stopwatch:before{content:"\e677"}.steady-icon-atom:before{content:"\e678"}.steady-icon-syringe:before{content:"\e679"}.steady-icon-health:before{content:"\e67a"}.steady-icon-bolt:before{content:"\e67b"}.steady-icon-pill:before{content:"\e67c"}.steady-icon-bones:before{content:"\e67d"}.steady-icon-lab:before{content:"\e67e"}.steady-icon-clipboard:before{content:"\e67f"}.steady-icon-mug:before{content:"\e680"}.steady-icon-bucket:before{content:"\e681"}.steady-icon-select:before{content:"\e682"}.steady-icon-graph:before{content:"\e683"}.steady-icon-crop:before{content:"\e684"}.steady-icon-image:before{content:"\e685"}.steady-icon-cube:before{content:"\e686"}.steady-icon-bars:before{content:"\e687"}.steady-icon-chart:before{content:"\e688"}.steady-icon-pencil:before{content:"\e689"}.steady-icon-measure:before{content:"\e68a"}.steady-icon-eyedropper:before{content:"\e68b"}


/* iconvault icons - uncompressed version in fonts/icons/forecast/iconvault-preview.css */

@font-face {
    font-family: "iconvault";
    src: url("../fonts/icons/forecast/iconvault_forecastfont.eot");
    src: url("../fonts/icons/forecast/iconvault_forecastfont.eot?#iefix") format("embedded-opentype"),url("../fonts/icons/forecast/iconvault_forecastfont.woff") format("woff"),url("../fonts/icons/forecast/iconvault_forecastfont.ttf") format("truetype"),url("../fonts/icons/forecast/iconvault_forecastfont.svg#iconvault") format("svg");
    font-weight: normal;
    font-style: normal;
}



.weather-icon [class^="icon-"],
.weather-icon [class*=" icon-"] {
  font-family: 'iconvault';
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  font-size: 84px;

}

@media only screen and (min-width: 479px) and (max-width: 678px){
.weather-icon [class^="icon-"],
.weather-icon [class*=" icon-"] {
  font-family: 'iconvault';
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
}
.weather-icon i {
    font-style: normal;
    display: block;
}
.weather-icon ul, .weather-icon ul li {
           margin: 0;
       padding: 0;
       list-style: none;
}
/* -----BaseCloud----- */

	.basecloud:before  {
	font-family: 'iconvault';
	font-size:84px;
	content: '\f105';
	position:absolute;
	color:rgb(204, 204, 204);
	}
	
	
	
/* -----windyraincloud----- */

	.windyraincloud:before  {
	font-family: 'iconvault';
	font-size:84px;
	content: '\f111';
	position:absolute;
	color:rgb(204, 204, 204);
	}
	
/* -----Windysnowcloud----- */

	.windysnowcloud:before  {
	font-family: 'iconvault';
	font-size:84px;
	content: '\f109';
	position:absolute;
	color:rgb(204, 204, 204);
	}

/* -----Basethundercloud----- */

	.basethundercloud:before  {
	font-family: 'iconvault';
	font-size:84px;
	content: '\f105';
	position:absolute;
	color:#000;

	}


/* -----Thunder----- */

	.icon-thunder::before  {
	content: "\f114";
	position:absolute;
	color:rgb(255, 165, 0);
	}

/* -----Sunny----- */

	.icon-sunny::after {
	content: "\f101";
	color:rgb(255, 165, 0);
	position: absolute;
	}


/* -----Drizzle----- */

	.icon-drizzle::before  {
	content: "\f10a";
	color: #82b2e4;
	position: absolute;
}

/* -----Hail----- */

	.icon-hail::before {
	content: "\f10f";
	position:absolute;
	color:rgb(204, 204, 204);}

/* -----Showers----- */

	.icon-showers::before  {
	content: "\f104";
	position:absolute;
	color:#82b2e4;
}

/* -----Rainy----- */

	.icon-rainy::before {
	content: "\f107";
	position:absolute;
	color:#4681c3;
	}

/* -----Snowy----- */

	.icon-snowy::before  {
	content: "\f10b";
	position:absolute;
	color:#acd3f3;
	}

/* -----Frosty----- */

	.icon-frosty::before {
	content: "\f102";
	position:absolute;
	color:#85d8f7;
	}

/* -----Windy----- */

	.icon-windy::before  {
	content: "\f115";
	position:absolute;
	color:rgb(204, 204, 204);
	}

/* -----WindyRain----- */

	.icon-windyrain::before {
	content: "\f10e";
	position:absolute;
	color:#acd3f3;
	}

/* -----WindySnow----- */

	.icon-windysnow::before {
	content: "\f103";
	position:absolute;
	color:#acd3f3;
	}

/* -----Sleet----- */

	.icon-sleet::before  {
	content: "\f10c";
	position:absolute;
	color:#acd3f3;
	}

/* -----Moon----- */

	.icon-moon::after {
	content: "\f10d";
	color:rgb(255, 165, 0);
	position: absolute;
	}

/* -----Night----- */

	.icon-night::after {
	content: "\f100";
	position:absolute;
	color:rgb(255, 165, 0);
	}


/* -----Sun----- */

	.icon-sun::after {
	content: "\f113";
	color:rgb(255, 165, 0);
	position: absolute;
	}

/* -----Cloud----- */

	.icon-cloud::after {
	content: "\f106";
	color:rgb(204, 204, 204);
	position: absolute;
	}


/* -----Sunrise----- */

	.icon-sunrise:before  {
	content: '\f112';
	color:rgb(255, 165, 0);
	position: absolute;
	}

/* -----Sunset----- */

	.icon-sunset:before  {
	content: '\f110';
	color:#f96f23;
	position: absolute;
	}

/* -----Mist----- */

	.icon-mist:before  {
	content: '\f108';
	color:rgb(204, 204, 204);
	position: absolute;
	}
/* SimpTip v1.0.2
// a simple CSS tooltip made with Sass
// source: https://github.com/arashmanteghi/simptip/
// ducoment: http://arashm.net/lab/simptip/
// by @ArashManteghi - http://arashm.net */
[data-tooltip] {
    position: relative;
    display: inline-block;
    -moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
[data-tooltip]:after,
[data-tooltip]:before {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
[data-tooltip]:before {
    content: '';
    border: 6px solid transparent
}
[data-tooltip]:after {
    height: 22px;
    padding: 11px 11px 0;
    font-size: 13px;
    line-height: 11px;
    content: attr(data-tooltip);
    white-space: nowrap
}
[data-tooltip].simptip-position-top:before {
    border-top-color: #323232
}
[data-tooltip].simptip-position-top:after {
    background-color: #323232;
    color: #ecf0f1
}
[data-tooltip].simptip-position-bottom:before {
    border-bottom-color: #323232
}
[data-tooltip].simptip-position-bottom:after {
    background-color: #323232;
    color: #ecf0f1
}
[data-tooltip].simptip-position-left:before {
    border-left-color: #323232
}
[data-tooltip].simptip-position-left:after {
    background-color: #323232;
    color: #ecf0f1
}
[data-tooltip].simptip-position-right:before {
    border-right-color: #323232
}
[data-tooltip].simptip-position-right:after {
    background-color: #323232;
    color: #ecf0f1
}
[data-tooltip].simptip-position-bottom.half-arrow:before,
[data-tooltip].simptip-position-top.half-arrow:before {
    border-right: 7px solid #323232
}
[data-tooltip]:focus,
[data-tooltip]:hover {
    background-color: transparent
}
[data-tooltip]:focus:after,
[data-tooltip]:focus:before,
[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible
}
.simptip-position-left:after,
.simptip-position-left:before,
.simptip-position-right:after,
.simptip-position-right:before {
    bottom: 50%
}
.simptip-position-left:before,
.simptip-position-right:before {
    margin-bottom: -5px
}
.simptip-position-left:after,
.simptip-position-right:after {
    margin-bottom: -14.66667px
}
.half-arrow.simptip-position-left:before,
.half-arrow.simptip-position-right:before {
    bottom: 16px;
    border-style: none;
    border-top: 7px solid transparent
}
.simptip-multiline.simptip-position-left:after,
.simptip-multiline.simptip-position-left:before,
.simptip-multiline.simptip-position-right:after,
.simptip-multiline.simptip-position-right:before {
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-filter: blur(0px);
    filter: blur(0px)
}
.simptip-multiline.simptip-position-left:before,
.simptip-multiline.simptip-position-right:before {
    margin-bottom: 0
}
.simptip-multiline.half-arrow.simptip-position-left:before,
.simptip-multiline.half-arrow.simptip-position-right:before {
    margin-bottom: -2px
}
.simptip-position-right:after,
.simptip-position-right:before {
    left: 100%
}
.simptip-position-right:before {
    margin-left: -2px
}
.simptip-position-right:after {
    margin-left: 10px
}
.simptip-position-right.simptip-movable:before {
    margin-left: -10px
}
.simptip-position-right.simptip-movable:after {
    margin-left: 2px
}
.simptip-position-right.simptip-movable:hover:after,
.simptip-position-right.simptip-movable:hover:before {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px)
}
.simptip-position-right.simptip-movable.half-arrow:before {
    margin-left: -5px
}
.simptip-position-right.half-arrow:before {
    margin-left: 3px;
    border-right: 7px solid #323232
}
.simptip-position-left:after,
.simptip-position-left:before {
    right: 100%
}
.simptip-position-left:before {
    margin-right: -2px
}
.simptip-position-left:after {
    margin-right: 10px
}
.simptip-position-left.simptip-movable:before {
    margin-right: -10px
}
.simptip-position-left.simptip-movable:after {
    margin-right: 2px
}
.simptip-position-left.simptip-movable:hover:after,
.simptip-position-left.simptip-movable:hover:before {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px)
}
.simptip-position-left.simptip-movable.half-arrow:before {
    margin-right: -5px
}
.simptip-position-left.half-arrow:before {
    margin-right: 3px;
    border-left: 7px solid #323232
}
.simptip-position-bottom:after,
.simptip-position-bottom:before,
.simptip-position-top:after,
.simptip-position-top:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}
.simptip-position-bottom:after,
.simptip-position-top:after {
    width: auto
}
.half-arrow.simptip-position-bottom:before,
.half-arrow.simptip-position-top:before {
    border-style: none;
    border-right: 7px solid #323232
}
.simptip-position-bottom:after,
.simptip-position-bottom:before {
    top: 100%
}
.simptip-position-bottom:before {
    margin-top: -5px
}
.simptip-position-bottom:after {
    margin-top: 7px
}
.simptip-position-bottom:hover:after,
.simptip-position-bottom:hover:before {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}
.simptip-position-bottom.simptip-movable:before {
    margin-top: -15px
}
.simptip-position-bottom.simptip-movable:after {
    margin-top: -3px
}
.simptip-position-bottom.simptip-movable:hover:after,
.simptip-position-bottom.simptip-movable:hover:before {
    -webkit-transform: translate(-50%, 10px);
    -moz-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    -o-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px)
}
.simptip-position-bottom.simptip-movable.half-arrow:before {
    margin-top: -10px
}
.simptip-position-bottom.half-arrow:before {
    margin-top: 0;
    border-top: 7px solid transparent
}
.simptip-position-top:after,
.simptip-position-top:before {
    bottom: 100%
}
.simptip-position-top:before {
    margin-bottom: -5px
}
.simptip-position-top:after {
    margin-bottom: 7px
}
.simptip-position-top:hover:after,
.simptip-position-top:hover:before {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}
.simptip-position-top.simptip-movable:before {
    margin-bottom: -15px
}
.simptip-position-top.simptip-movable:after {
    margin-bottom: -3px
}
.simptip-position-top.simptip-movable:hover:after,
.simptip-position-top.simptip-movable:hover:before {
    -webkit-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    -o-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px)
}
.simptip-position-top.simptip-movable.half-arrow:before {
    margin-bottom: -10px
}
.simptip-position-top.half-arrow:before {
    margin-bottom: 0;
    border-bottom: 7px solid transparent
}
.simptip-movable:after,
.simptip-movable:before {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear
}
.simptip-smooth:after {
    -webkit-border-radius: 4px;
    border-radius: 4px
}
.simptip-fade:after,
.simptip-fade:before {
    -webkit-transition: opacity .2s linear, visibility .2s linear;
    -moz-transition: opacity .2s linear, visibility .2s linear;
    -o-transition: opacity .2s linear, visibility .2s linear;
    -ms-transition: opacity .2s linear, visibility .2s linear;
    transition: opacity .2s linear, visibility .2s linear
}
.simptip-multiline:after {
    height: auto;
    width: 150px;
    padding: 11px;
    line-height: 19px;
    white-space: normal;
    text-align: left
}
.simptip-success.simptip-position-top:before {
    border-top-color: #62c462
}
.simptip-success.simptip-position-top:after {
    background-color: #62c462;
    color: #ecf0f1
}
.simptip-success.simptip-position-bottom:before {
    border-bottom-color: #62c462
}
.simptip-success.simptip-position-bottom:after {
    background-color: #62c462;
    color: #ecf0f1
}
.simptip-success.simptip-position-left:before {
    border-left-color: #62c462
}
.simptip-success.simptip-position-left:after {
    background-color: #62c462;
    color: #ecf0f1
}
.simptip-success.simptip-position-right:before {
    border-right-color: #62c462
}
.simptip-success.simptip-position-right:after {
    background-color: #62c462;
    color: #ecf0f1
}
.simptip-success.simptip-position-bottom.half-arrow:before,
.simptip-success.simptip-position-top.half-arrow:before {
    border-right: 7px solid #62c462
}
.simptip-info.simptip-position-top:before {
    border-top-color: #5bc0de
}
.simptip-info.simptip-position-top:after {
    background-color: #5bc0de;
    color: #ecf0f1
}
.simptip-info.simptip-position-bottom:before {
    border-bottom-color: #5bc0de
}
.simptip-info.simptip-position-bottom:after {
    background-color: #5bc0de;
    color: #ecf0f1
}
.simptip-info.simptip-position-left:before {
    border-left-color: #5bc0de
}
.simptip-info.simptip-position-left:after {
    background-color: #5bc0de;
    color: #ecf0f1
}
.simptip-info.simptip-position-right:before {
    border-right-color: #5bc0de
}
.simptip-info.simptip-position-right:after {
    background-color: #5bc0de;
    color: #ecf0f1
}
.simptip-info.simptip-position-bottom.half-arrow:before,
.simptip-info.simptip-position-top.half-arrow:before {
    border-right: 7px solid #5bc0de
}
.simptip-danger.simptip-position-top:before {
    border-top-color: #e74c3c
}
.simptip-danger.simptip-position-top:after {
    background-color: #e74c3c;
    color: #ecf0f1
}
.simptip-danger.simptip-position-bottom:before {
    border-bottom-color: #e74c3c
}
.simptip-danger.simptip-position-bottom:after {
    background-color: #e74c3c;
    color: #ecf0f1
}
.simptip-danger.simptip-position-left:before {
    border-left-color: #e74c3c
}
.simptip-danger.simptip-position-left:after {
    background-color: #e74c3c;
    color: #ecf0f1
}
.simptip-danger.simptip-position-right:before {
    border-right-color: #e74c3c
}
.simptip-danger.simptip-position-right:after {
    background-color: #e74c3c;
    color: #ecf0f1
}
.simptip-danger.simptip-position-bottom.half-arrow:before,
.simptip-danger.simptip-position-top.half-arrow:before {
    border-right: 7px solid #e74c3c
}
.simptip-warning.simptip-position-top:before {
    border-top-color: #e67e22
}
.simptip-warning.simptip-position-top:after {
    background-color: #e67e22;
    color: #ecf0f1
}
.simptip-warning.simptip-position-bottom:before {
    border-bottom-color: #e67e22
}
.simptip-warning.simptip-position-bottom:after {
    background-color: #e67e22;
    color: #ecf0f1
}
.simptip-warning.simptip-position-left:before {
    border-left-color: #e67e22
}
.simptip-warning.simptip-position-left:after {
    background-color: #e67e22;
    color: #ecf0f1
}
.simptip-warning.simptip-position-right:before {
    border-right-color: #e67e22
}
.simptip-warning.simptip-position-right:after {
    background-color: #e67e22;
    color: #ecf0f1
}
.simptip-warning.simptip-position-bottom.half-arrow:before,
.simptip-warning.simptip-position-top.half-arrow:before {
    border-right: 7px solid #e67e22
}