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

Copyright (c) 2015 Daniel Eden
*/
@import url(font-awesome.min.css);
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,800,800italic");
.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-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*-------------------------------------------------*/
/*-------------------------------------------------*/
/*-------------------------------------------------*/
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  max-width: 100%;
  width: 100%;
  display: block;
}

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 100px;
  width: 100%;
  top: 20px;
}

.bx-controls {
  position: absolute;
  bottom: 100px;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(/images/327/images/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #FFF;
  text-indent: -9999px;
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  border: 2px solid #FFF;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(/images/327/images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url(/images/327/images/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(/images/327/images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(/images/327/images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/* Modicons */
@font-face {
  font-family: "modicons";
  src: url('/images/327/assets/fonts/modicons/modicons.eot?22429469');
  src: url('/images/327/assets/fonts/modicons/modicons.eot?22429469?#iefix') format('embedded-opentype'), url('/images/327/assets/fonts/modicons/modicons.ttf?22429469') format('truetype'), url('/images/327/assets/fonts/modicons/modicons.woff?22429469') format('woff'), url('/images/327/assets/fonts/modicons/modicons.svg?22429469#modicons') format('svg');
}
@font-face {
  font-family: "vtc_letterer_proregular";
  src: url('/images/327/assets/fonts/vtc_letterer_pro-webfont.eot');
  src: url('/images/327/assets/fonts/vtc_letterer_pro-webfont.eot?#iefix') format('embedded-opentype'), url('/images/327/assets/fonts/vtc_letterer_pro-webfont.eot') format('embedded-opentype'), url('/images/327/assets/fonts/vtc_letterer_pro-webfont.ttf') format('truetype'), url('/images/327/assets/fonts/vtc_letterer_pro-webfont.woff') format('woff'), url('/images/327/assets/fonts/vtc_letterer_pro-webfont.svg#vtc_letterer_proregular') format('svg');
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'modicons';
    src: url($assets_path}font/modicons.svg?22429469#modicons) format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "modicons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-quote:before {
  content: '\22';
}

/* '&quot;' */
.icon-quote-left:before {
  content: '\27';
}

/* ''' */
.icon-fivehundredpx:before {
  content: '\35';
}

/* '5' */
.icon-left-open:before {
  content: '\3c';
}

/* '&lt;' */
.icon-right-open:before {
  content: '\3e';
}

/* '&gt;' */
.icon-link:before {
  content: '\41';
}

/* 'A' */
.icon-facebook-circled:before {
  content: '\46';
}

/* 'F' */
.icon-menu:before {
  content: '\48';
}

/* 'H' */
.icon-linkedin-circled:before {
  content: '\49';
}

/* 'I' */
.icon-search:before {
  content: '\4d';
}

/* 'M' */
.icon-left-circle:before {
  content: '\52';
}

/* 'R' */
.icon-skype-circled:before {
  content: '\53';
}

/* 'S' */
.icon-adult:before {
  content: '\61';
}

/* 'a' */
.icon-home:before {
  content: '\68';
}

/* 'h' */
.icon-instagram:before {
  content: '\69';
}

/* 'i' */
.icon-mail-alt:before {
  content: '\6d';
}

/* 'm' */
.icon-rdio-circled:before {
  content: '\6f';
}

/* 'o' */
.icon-picture:before {
  content: '\70';
}

/* 'p' */
.icon-right-circle:before {
  content: '\72';
}

/* 'r' */
.icon-twitter-circled:before {
  content: '\73';
}

/* 's' */
.icon-tumblr-circled:before {
  content: '\74';
}

/* 't' */
.icon-vimeo-circled:before {
  content: '\76';
}

/* 'v' */
.icon-youtube:before {
  content: '\79';
}

/* 'y' */
/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, form input, form textarea, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

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

body {
  -webkit-text-size-adjust: none;
}

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

/* Grid */
.row {
  border-bottom: solid 1px transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.row > * {
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.row:after, .row:before {
  content: '';
  display: block;
  clear: both;
  height: 0;
}

.row.uniform > * > :first-child {
  margin-top: 0;
}

.row.uniform > * > :last-child {
  margin-bottom: 0;
}

.row.\30 \25  > * {
  padding: 0 0 0 0em;
}

.row.\30 \25 {
  margin: 0 0 -1px 0em;
}

.row.uniform.\30 \25  > * {
  padding: 0em 0 0 0em;
}

.row.uniform.\30 \25 {
  margin: 0em 0 -1px 0em;
}

.row > * {
  padding: 0 0 0 1.5em;
}

.row {
  margin: 0 0 -1px -1.5em;
}

.row.uniform > * {
  padding: 1.5em 0 0 1.5em;
}

.row.uniform {
  margin: -1.5em 0 -1px -1.5em;
}

.row.\32 00\25  > * {
  padding: 0 0 0 3em;
}

.row.\32 00\25 {
  margin: 0 0 -1px -3em;
}

.row.uniform.\32 00\25  > * {
  padding: 3em 0 0 3em;
}

.row.uniform.\32 00\25 {
  margin: -3em 0 -1px -3em;
}

.row.\31 50\25  > * {
  padding: 0 0 0 2.25em;
}

.row.\31 50\25 {
  margin: 0 0 -1px -2.25em;
}

.row.uniform.\31 50\25  > * {
  padding: 2.25em 0 0 2.25em;
}

.row.uniform.\31 50\25 {
  margin: -2.25em 0 -1px -2.25em;
}

.row.\35 0\25  > * {
  padding: 0 0 0 0.75em;
}

.row.\35 0\25 {
  margin: 0 0 -1px -0.75em;
}

.row.uniform.\35 0\25  > * {
  padding: 0.75em 0 0 0.75em;
}

.row.uniform.\35 0\25 {
  margin: -0.75em 0 -1px -0.75em;
}

.row.\32 5\25  > * {
  padding: 0 0 0 0.375em;
}

.row.\32 5\25 {
  margin: 0 0 -1px -0.375em;
}

.row.uniform.\32 5\25  > * {
  padding: 0.375em 0 0 0.375em;
}

.row.uniform.\32 5\25 {
  margin: -0.375em 0 -1px -0.375em;
}

.\31 2u, .\31 2u\24 {
  width: 100%;
  clear: none;
  margin-left: 0;
}

.\31 1u, .\31 1u\24 {
  width: 91.6666666667%;
  clear: none;
  margin-left: 0;
}

.\31 0u, .\31 0u\24 {
  width: 83.3333333333%;
  clear: none;
  margin-left: 0;
}

.\39 u, .\39 u\24 {
  width: 75%;
  clear: none;
  margin-left: 0;
}

.\38 u, .\38 u\24 {
  width: 66.6666666667%;
  clear: none;
  margin-left: 0;
}

.\37 u, .\37 u\24 {
  width: 58.3333333333%;
  clear: none;
  margin-left: 0;
}

.\36 u, .\36 u\24 {
  width: 50%;
  clear: none;
  margin-left: 0;
}

.\35 u, .\35 u\24 {
  width: 41.6666666667%;
  clear: none;
  margin-left: 0;
}

.\34 u, .\34 u\24 {
  width: 33.3333333333%;
  clear: none;
  margin-left: 0;
}

.\33 u, .\33 u\24 {
  width: 25%;
  clear: none;
  margin-left: 0;
}

.\32 u, .\32 u\24 {
  width: 16.6666666667%;
  clear: none;
  margin-left: 0;
}

.\31 u, .\31 u\24 {
  width: 8.3333333333%;
  clear: none;
  margin-left: 0;
}

.\31 2u\24  + *,
.\31 1u\24  + *,
.\31 0u\24  + *,
.\39 u\24  + *,
.\38 u\24  + *,
.\37 u\24  + *,
.\36 u\24  + *,
.\35 u\24  + *,
.\34 u\24  + *,
.\33 u\24  + *,
.\32 u\24  + *,
.\31 u\24  + * {
  clear: left;
}

.\-11u {
  margin-left: 91.66667%;
}

.\-10u {
  margin-left: 83.33333%;
}

.\-9u {
  margin-left: 75%;
}

.\-8u {
  margin-left: 66.66667%;
}

.\-7u {
  margin-left: 58.33333%;
}

.\-6u {
  margin-left: 50%;
}

.\-5u {
  margin-left: 41.66667%;
}

.\-4u {
  margin-left: 33.33333%;
}

.\-3u {
  margin-left: 25%;
}

.\-2u {
  margin-left: 16.66667%;
}

.\-1u {
  margin-left: 8.33333%;
}

@media screen and (min-width: 1281px) and (max-width: 5000px) {
  .row > * {
    padding: 0 0 0 1.5em;
  }

  .row {
    margin: 0 0 -1px -1.5em;
  }

  .row.uniform > * {
    padding: 1.5em 0 0 1.5em;
  }

  .row.uniform {
    margin: -1.5em 0 -1px -1.5em;
  }

  .row.\32 00\25  > * {
    padding: 0 0 0 3em;
  }

  .row.\32 00\25 {
    margin: 0 0 -1px -3em;
  }

  .row.uniform.\32 00\25  > * {
    padding: 3em 0 0 3em;
  }

  .row.uniform.\32 00\25 {
    margin: -3em 0 -1px -3em;
  }

  .row.\31 50\25  > * {
    padding: 0 0 0 2.25em;
  }

  .row.\31 50\25 {
    margin: 0 0 -1px -2.25em;
  }

  .row.uniform.\31 50\25  > * {
    padding: 2.25em 0 0 2.25em;
  }

  .row.uniform.\31 50\25 {
    margin: -2.25em 0 -1px -2.25em;
  }

  .row.\35 0\25  > * {
    padding: 0 0 0 0.75em;
  }

  .row.\35 0\25 {
    margin: 0 0 -1px -0.75em;
  }

  .row.uniform.\35 0\25  > * {
    padding: 0.75em 0 0 0.75em;
  }

  .row.uniform.\35 0\25 {
    margin: -0.75em 0 -1px -0.75em;
  }

  .row.\32 5\25  > * {
    padding: 0 0 0 0.375em;
  }

  .row.\32 5\25 {
    margin: 0 0 -1px -0.375em;
  }

  .row.uniform.\32 5\25  > * {
    padding: 0.375em 0 0 0.375em;
  }

  .row.uniform.\32 5\25 {
    margin: -0.375em 0 -1px -0.375em;
  }

  .\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 {
    width: 100%;
    clear: none;
    margin-left: 0;
  }

  .\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 {
    width: 91.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 {
    width: 83.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\39 u\28xlarge\29, .\39 u\24\28xlarge\29 {
    width: 75%;
    clear: none;
    margin-left: 0;
  }

  .\38 u\28xlarge\29, .\38 u\24\28xlarge\29 {
    width: 66.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\37 u\28xlarge\29, .\37 u\24\28xlarge\29 {
    width: 58.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\36 u\28xlarge\29, .\36 u\24\28xlarge\29 {
    width: 50%;
    clear: none;
    margin-left: 0;
  }

  .\35 u\28xlarge\29, .\35 u\24\28xlarge\29 {
    width: 41.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\34 u\28xlarge\29, .\34 u\24\28xlarge\29 {
    width: 33.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\33 u\28xlarge\29, .\33 u\24\28xlarge\29 {
    width: 25%;
    clear: none;
    margin-left: 0;
  }

  .\32 u\28xlarge\29, .\32 u\24\28xlarge\29 {
    width: 16.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 u\28xlarge\29, .\31 u\24\28xlarge\29 {
    width: 8.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\31 2u\24\28xlarge\29  + *,
  .\31 1u\24\28xlarge\29  + *,
  .\31 0u\24\28xlarge\29  + *,
  .\39 u\24\28xlarge\29  + *,
  .\38 u\24\28xlarge\29  + *,
  .\37 u\24\28xlarge\29  + *,
  .\36 u\24\28xlarge\29  + *,
  .\35 u\24\28xlarge\29  + *,
  .\34 u\24\28xlarge\29  + *,
  .\33 u\24\28xlarge\29  + *,
  .\32 u\24\28xlarge\29  + *,
  .\31 u\24\28xlarge\29  + * {
    clear: left;
  }

  .\-11u\28xlarge\29 {
    margin-left: 91.66667%;
  }

  .\-10u\28xlarge\29 {
    margin-left: 83.33333%;
  }

  .\-9u\28xlarge\29 {
    margin-left: 75%;
  }

  .\-8u\28xlarge\29 {
    margin-left: 66.66667%;
  }

  .\-7u\28xlarge\29 {
    margin-left: 58.33333%;
  }

  .\-6u\28xlarge\29 {
    margin-left: 50%;
  }

  .\-5u\28xlarge\29 {
    margin-left: 41.66667%;
  }

  .\-4u\28xlarge\29 {
    margin-left: 33.33333%;
  }

  .\-3u\28xlarge\29 {
    margin-left: 25%;
  }

  .\-2u\28xlarge\29 {
    margin-left: 16.66667%;
  }

  .\-1u\28xlarge\29 {
    margin-left: 8.33333%;
  }
}
@media screen and (max-width: 1280px) {
  .row > * {
    padding: 0 0 0 1.5em;
  }

  .row {
    margin: 0 0 -1px -1.5em;
  }

  .row.uniform > * {
    padding: 1.5em 0 0 1.5em;
  }

  .row.uniform {
    margin: -1.5em 0 -1px -1.5em;
  }

  .row.\32 00\25  > * {
    padding: 0 0 0 3em;
  }

  .row.\32 00\25 {
    margin: 0 0 -1px -3em;
  }

  .row.uniform.\32 00\25  > * {
    padding: 3em 0 0 3em;
  }

  .row.uniform.\32 00\25 {
    margin: -3em 0 -1px -3em;
  }

  .row.\31 50\25  > * {
    padding: 0 0 0 2.25em;
  }

  .row.\31 50\25 {
    margin: 0 0 -1px -2.25em;
  }

  .row.uniform.\31 50\25  > * {
    padding: 2.25em 0 0 2.25em;
  }

  .row.uniform.\31 50\25 {
    margin: -2.25em 0 -1px -2.25em;
  }

  .row.\35 0\25  > * {
    padding: 0 0 0 0.75em;
  }

  .row.\35 0\25 {
    margin: 0 0 -1px -0.75em;
  }

  .row.uniform.\35 0\25  > * {
    padding: 0.75em 0 0 0.75em;
  }

  .row.uniform.\35 0\25 {
    margin: -0.75em 0 -1px -0.75em;
  }

  .row.\32 5\25  > * {
    padding: 0 0 0 0.375em;
  }

  .row.\32 5\25 {
    margin: 0 0 -1px -0.375em;
  }

  .row.uniform.\32 5\25  > * {
    padding: 0.375em 0 0 0.375em;
  }

  .row.uniform.\32 5\25 {
    margin: -0.375em 0 -1px -0.375em;
  }

  .\31 2u\28large\29, .\31 2u\24\28large\29 {
    width: 100%;
    clear: none;
    margin-left: 0;
  }

  .\31 1u\28large\29, .\31 1u\24\28large\29 {
    width: 91.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 0u\28large\29, .\31 0u\24\28large\29 {
    width: 83.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\39 u\28large\29, .\39 u\24\28large\29 {
    width: 75%;
    clear: none;
    margin-left: 0;
  }

  .\38 u\28large\29, .\38 u\24\28large\29 {
    width: 66.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\37 u\28large\29, .\37 u\24\28large\29 {
    width: 58.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\36 u\28large\29, .\36 u\24\28large\29 {
    width: 50%;
    clear: none;
    margin-left: 0;
  }

  .\35 u\28large\29, .\35 u\24\28large\29 {
    width: 41.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\34 u\28large\29, .\34 u\24\28large\29 {
    width: 33.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\33 u\28large\29, .\33 u\24\28large\29 {
    width: 25%;
    clear: none;
    margin-left: 0;
  }

  .\32 u\28large\29, .\32 u\24\28large\29 {
    width: 16.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 u\28large\29, .\31 u\24\28large\29 {
    width: 8.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\31 2u\24\28large\29  + *,
  .\31 1u\24\28large\29  + *,
  .\31 0u\24\28large\29  + *,
  .\39 u\24\28large\29  + *,
  .\38 u\24\28large\29  + *,
  .\37 u\24\28large\29  + *,
  .\36 u\24\28large\29  + *,
  .\35 u\24\28large\29  + *,
  .\34 u\24\28large\29  + *,
  .\33 u\24\28large\29  + *,
  .\32 u\24\28large\29  + *,
  .\31 u\24\28large\29  + * {
    clear: left;
  }

  .\-11u\28large\29 {
    margin-left: 91.66667%;
  }

  .\-10u\28large\29 {
    margin-left: 83.33333%;
  }

  .\-9u\28large\29 {
    margin-left: 75%;
  }

  .\-8u\28large\29 {
    margin-left: 66.66667%;
  }

  .\-7u\28large\29 {
    margin-left: 58.33333%;
  }

  .\-6u\28large\29 {
    margin-left: 50%;
  }

  .\-5u\28large\29 {
    margin-left: 41.66667%;
  }

  .\-4u\28large\29 {
    margin-left: 33.33333%;
  }

  .\-3u\28large\29 {
    margin-left: 25%;
  }

  .\-2u\28large\29 {
    margin-left: 16.66667%;
  }

  .\-1u\28large\29 {
    margin-left: 8.33333%;
  }
}
@media screen and (min-width: 980px) {
  .row > * {
    padding: 0 0 0 1.5em;
  }

  .row {
    margin: 0 0 -1px -1.5em;
  }

  .row.uniform > * {
    padding: 1.5em 0 0 1.5em;
  }

  .row.uniform {
    margin: -1.5em 0 -1px -1.5em;
  }

  .row.\32 00\25  > * {
    padding: 0 0 0 3em;
  }

  .row.\32 00\25 {
    margin: 0 0 -1px -3em;
  }

  .row.uniform.\32 00\25  > * {
    padding: 3em 0 0 3em;
  }

  .row.uniform.\32 00\25 {
    margin: -3em 0 -1px -3em;
  }

  .row.\31 50\25  > * {
    padding: 0 0 0 2.25em;
  }

  .row.\31 50\25 {
    margin: 0 0 -1px -2.25em;
  }

  .row.uniform.\31 50\25  > * {
    padding: 2.25em 0 0 2.25em;
  }

  .row.uniform.\31 50\25 {
    margin: -2.25em 0 -1px -2.25em;
  }

  .row.\35 0\25  > * {
    padding: 0 0 0 0.75em;
  }

  .row.\35 0\25 {
    margin: 0 0 -1px -0.75em;
  }

  .row.uniform.\35 0\25  > * {
    padding: 0.75em 0 0 0.75em;
  }

  .row.uniform.\35 0\25 {
    margin: -0.75em 0 -1px -0.75em;
  }

  .row.\32 5\25  > * {
    padding: 0 0 0 0.375em;
  }

  .row.\32 5\25 {
    margin: 0 0 -1px -0.375em;
  }

  .row.uniform.\32 5\25  > * {
    padding: 0.375em 0 0 0.375em;
  }

  .row.uniform.\32 5\25 {
    margin: -0.375em 0 -1px -0.375em;
  }

  .\31 2u\28xmedium\29, .\31 2u\24\28xmedium\29 {
    width: 100%;
    clear: none;
    margin-left: 0;
  }

  .\31 1u\28xmedium\29, .\31 1u\24\28xmedium\29 {
    width: 91.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 0u\28xmedium\29, .\31 0u\24\28xmedium\29 {
    width: 83.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\39 u\28xmedium\29, .\39 u\24\28xmedium\29 {
    width: 75%;
    clear: none;
    margin-left: 0;
  }

  .\38 u\28xmedium\29, .\38 u\24\28xmedium\29 {
    width: 66.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\37 u\28xmedium\29, .\37 u\24\28xmedium\29 {
    width: 58.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\36 u\28xmedium\29, .\36 u\24\28xmedium\29 {
    width: 50%;
    clear: none;
    margin-left: 0;
  }

  .\35 u\28xmedium\29, .\35 u\24\28xmedium\29 {
    width: 41.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\34 u\28xmedium\29, .\34 u\24\28xmedium\29 {
    width: 33.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\33 u\28xmedium\29, .\33 u\24\28xmedium\29 {
    width: 25%;
    clear: none;
    margin-left: 0;
  }

  .\32 u\28xmedium\29, .\32 u\24\28xmedium\29 {
    width: 16.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 u\28xmedium\29, .\31 u\24\28xmedium\29 {
    width: 8.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\31 2u\24\28xmedium\29  + *,
  .\31 1u\24\28xmedium\29  + *,
  .\31 0u\24\28xmedium\29  + *,
  .\39 u\24\28xmedium\29  + *,
  .\38 u\24\28xmedium\29  + *,
  .\37 u\24\28xmedium\29  + *,
  .\36 u\24\28xmedium\29  + *,
  .\35 u\24\28xmedium\29  + *,
  .\34 u\24\28xmedium\29  + *,
  .\33 u\24\28xmedium\29  + *,
  .\32 u\24\28xmedium\29  + *,
  .\31 u\24\28xmedium\29  + * {
    clear: left;
  }

  .\-11u\28xmedium\29 {
    margin-left: 91.66667%;
  }

  .\-10u\28xmedium\29 {
    margin-left: 83.33333%;
  }

  .\-9u\28xmedium\29 {
    margin-left: 75%;
  }

  .\-8u\28xmedium\29 {
    margin-left: 66.66667%;
  }

  .\-7u\28xmedium\29 {
    margin-left: 58.33333%;
  }

  .\-6u\28xmedium\29 {
    margin-left: 50%;
  }

  .\-5u\28xmedium\29 {
    margin-left: 41.66667%;
  }

  .\-4u\28xmedium\29 {
    margin-left: 33.33333%;
  }

  .\-3u\28xmedium\29 {
    margin-left: 25%;
  }

  .\-2u\28xmedium\29 {
    margin-left: 16.66667%;
  }

  .\-1u\28xmedium\29 {
    margin-left: 8.33333%;
  }
}
@media screen and (max-width: 980px) {
  .row > * {
    padding: 0 0 0 1.5em;
  }

  .row {
    margin: 0 0 -1px -1.5em;
  }

  .row.uniform > * {
    padding: 1.5em 0 0 1.5em;
  }

  .row.uniform {
    margin: -1.5em 0 -1px -1.5em;
  }

  .row.\32 00\25  > * {
    padding: 0 0 0 3em;
  }

  .row.\32 00\25 {
    margin: 0 0 -1px -3em;
  }

  .row.uniform.\32 00\25  > * {
    padding: 3em 0 0 3em;
  }

  .row.uniform.\32 00\25 {
    margin: -3em 0 -1px -3em;
  }

  .row.\31 50\25  > * {
    padding: 0 0 0 2.25em;
  }

  .row.\31 50\25 {
    margin: 0 0 -1px -2.25em;
  }

  .row.uniform.\31 50\25  > * {
    padding: 2.25em 0 0 2.25em;
  }

  .row.uniform.\31 50\25 {
    margin: -2.25em 0 -1px -2.25em;
  }

  .row.\35 0\25  > * {
    padding: 0 0 0 0.75em;
  }

  .row.\35 0\25 {
    margin: 0 0 -1px -0.75em;
  }

  .row.uniform.\35 0\25  > * {
    padding: 0.75em 0 0 0.75em;
  }

  .row.uniform.\35 0\25 {
    margin: -0.75em 0 -1px -0.75em;
  }

  .row.\32 5\25  > * {
    padding: 0 0 0 0.375em;
  }

  .row.\32 5\25 {
    margin: 0 0 -1px -0.375em;
  }

  .row.uniform.\32 5\25  > * {
    padding: 0.375em 0 0 0.375em;
  }

  .row.uniform.\32 5\25 {
    margin: -0.375em 0 -1px -0.375em;
  }

  .\31 2u\28medium\29, .\31 2u\24\28medium\29 {
    width: 100%;
    clear: none;
    margin-left: 0;
  }

  .\31 1u\28medium\29, .\31 1u\24\28medium\29 {
    width: 91.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 0u\28medium\29, .\31 0u\24\28medium\29 {
    width: 83.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\39 u\28medium\29, .\39 u\24\28medium\29 {
    width: 75%;
    clear: none;
    margin-left: 0;
  }

  .\38 u\28medium\29, .\38 u\24\28medium\29 {
    width: 66.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\37 u\28medium\29, .\37 u\24\28medium\29 {
    width: 58.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\36 u\28medium\29, .\36 u\24\28medium\29 {
    width: 50%;
    clear: none;
    margin-left: 0;
  }

  .\35 u\28medium\29, .\35 u\24\28medium\29 {
    width: 41.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\34 u\28medium\29, .\34 u\24\28medium\29 {
    width: 33.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\33 u\28medium\29, .\33 u\24\28medium\29 {
    width: 25%;
    clear: none;
    margin-left: 0;
  }

  .\32 u\28medium\29, .\32 u\24\28medium\29 {
    width: 16.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 u\28medium\29, .\31 u\24\28medium\29 {
    width: 8.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\31 2u\24\28medium\29  + *,
  .\31 1u\24\28medium\29  + *,
  .\31 0u\24\28medium\29  + *,
  .\39 u\24\28medium\29  + *,
  .\38 u\24\28medium\29  + *,
  .\37 u\24\28medium\29  + *,
  .\36 u\24\28medium\29  + *,
  .\35 u\24\28medium\29  + *,
  .\34 u\24\28medium\29  + *,
  .\33 u\24\28medium\29  + *,
  .\32 u\24\28medium\29  + *,
  .\31 u\24\28medium\29  + * {
    clear: left;
  }

  .\-11u\28medium\29 {
    margin-left: 91.66667%;
  }

  .\-10u\28medium\29 {
    margin-left: 83.33333%;
  }

  .\-9u\28medium\29 {
    margin-left: 75%;
  }

  .\-8u\28medium\29 {
    margin-left: 66.66667%;
  }

  .\-7u\28medium\29 {
    margin-left: 58.33333%;
  }

  .\-6u\28medium\29 {
    margin-left: 50%;
  }

  .\-5u\28medium\29 {
    margin-left: 41.66667%;
  }

  .\-4u\28medium\29 {
    margin-left: 33.33333%;
  }

  .\-3u\28medium\29 {
    margin-left: 25%;
  }

  .\-2u\28medium\29 {
    margin-left: 16.66667%;
  }

  .\-1u\28medium\29 {
    margin-left: 8.33333%;
  }
}
@media screen and (max-width: 736px) {
  .row > * {
    padding: 0 0 0 1.5em;
  }

  .row {
    margin: 0 0 -1px -1.5em;
  }

  .row.uniform > * {
    padding: 1.5em 0 0 1.5em;
  }

  .row.uniform {
    margin: -1.5em 0 -1px -1.5em;
  }

  .row.\32 00\25  > * {
    padding: 0 0 0 3em;
  }

  .row.\32 00\25 {
    margin: 0 0 -1px -3em;
  }

  .row.uniform.\32 00\25  > * {
    padding: 3em 0 0 3em;
  }

  .row.uniform.\32 00\25 {
    margin: -3em 0 -1px -3em;
  }

  .row.\31 50\25  > * {
    padding: 0 0 0 2.25em;
  }

  .row.\31 50\25 {
    margin: 0 0 -1px -2.25em;
  }

  .row.uniform.\31 50\25  > * {
    padding: 2.25em 0 0 2.25em;
  }

  .row.uniform.\31 50\25 {
    margin: -2.25em 0 -1px -2.25em;
  }

  .row.\35 0\25  > * {
    padding: 0 0 0 0.75em;
  }

  .row.\35 0\25 {
    margin: 0 0 -1px -0.75em;
  }

  .row.uniform.\35 0\25  > * {
    padding: 0.75em 0 0 0.75em;
  }

  .row.uniform.\35 0\25 {
    margin: -0.75em 0 -1px -0.75em;
  }

  .row.\32 5\25  > * {
    padding: 0 0 0 0.375em;
  }

  .row.\32 5\25 {
    margin: 0 0 -1px -0.375em;
  }

  .row.uniform.\32 5\25  > * {
    padding: 0.375em 0 0 0.375em;
  }

  .row.uniform.\32 5\25 {
    margin: -0.375em 0 -1px -0.375em;
  }

  .\31 2u\28small\29, .\31 2u\24\28small\29 {
    width: 100%;
    clear: none;
    margin-left: 0;
  }

  .\31 1u\28small\29, .\31 1u\24\28small\29 {
    width: 91.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 0u\28small\29, .\31 0u\24\28small\29 {
    width: 83.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\39 u\28small\29, .\39 u\24\28small\29 {
    width: 75%;
    clear: none;
    margin-left: 0;
  }

  .\38 u\28small\29, .\38 u\24\28small\29 {
    width: 66.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\37 u\28small\29, .\37 u\24\28small\29 {
    width: 58.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\36 u\28small\29, .\36 u\24\28small\29 {
    width: 50%;
    clear: none;
    margin-left: 0;
  }

  .\35 u\28small\29, .\35 u\24\28small\29 {
    width: 41.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\34 u\28small\29, .\34 u\24\28small\29 {
    width: 33.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\33 u\28small\29, .\33 u\24\28small\29 {
    width: 25%;
    clear: none;
    margin-left: 0;
  }

  .\32 u\28small\29, .\32 u\24\28small\29 {
    width: 16.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 u\28small\29, .\31 u\24\28small\29 {
    width: 8.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\31 2u\24\28small\29  + *,
  .\31 1u\24\28small\29  + *,
  .\31 0u\24\28small\29  + *,
  .\39 u\24\28small\29  + *,
  .\38 u\24\28small\29  + *,
  .\37 u\24\28small\29  + *,
  .\36 u\24\28small\29  + *,
  .\35 u\24\28small\29  + *,
  .\34 u\24\28small\29  + *,
  .\33 u\24\28small\29  + *,
  .\32 u\24\28small\29  + *,
  .\31 u\24\28small\29  + * {
    clear: left;
  }

  .\-11u\28small\29 {
    margin-left: 91.66667%;
  }

  .\-10u\28small\29 {
    margin-left: 83.33333%;
  }

  .\-9u\28small\29 {
    margin-left: 75%;
  }

  .\-8u\28small\29 {
    margin-left: 66.66667%;
  }

  .\-7u\28small\29 {
    margin-left: 58.33333%;
  }

  .\-6u\28small\29 {
    margin-left: 50%;
  }

  .\-5u\28small\29 {
    margin-left: 41.66667%;
  }

  .\-4u\28small\29 {
    margin-left: 33.33333%;
  }

  .\-3u\28small\29 {
    margin-left: 25%;
  }

  .\-2u\28small\29 {
    margin-left: 16.66667%;
  }

  .\-1u\28small\29 {
    margin-left: 8.33333%;
  }
}
@media screen and (max-width: 480px) {
  .row > * {
    padding: 0 0 0 1.5em;
  }

  .row {
    margin: 0 0 -1px -1.5em;
  }

  .row.uniform > * {
    padding: 1.5em 0 0 1.5em;
  }

  .row.uniform {
    margin: -1.5em 0 -1px -1.5em;
  }

  .row.\32 00\25  > * {
    padding: 0 0 0 3em;
  }

  .row.\32 00\25 {
    margin: 0 0 -1px -3em;
  }

  .row.uniform.\32 00\25  > * {
    padding: 3em 0 0 3em;
  }

  .row.uniform.\32 00\25 {
    margin: -3em 0 -1px -3em;
  }

  .row.\31 50\25  > * {
    padding: 0 0 0 2.25em;
  }

  .row.\31 50\25 {
    margin: 0 0 -1px -2.25em;
  }

  .row.uniform.\31 50\25  > * {
    padding: 2.25em 0 0 2.25em;
  }

  .row.uniform.\31 50\25 {
    margin: -2.25em 0 -1px -2.25em;
  }

  .row.\35 0\25  > * {
    padding: 0 0 0 0.75em;
  }

  .row.\35 0\25 {
    margin: 0 0 -1px -0.75em;
  }

  .row.uniform.\35 0\25  > * {
    padding: 0.75em 0 0 0.75em;
  }

  .row.uniform.\35 0\25 {
    margin: -0.75em 0 -1px -0.75em;
  }

  .row.\32 5\25  > * {
    padding: 0 0 0 0.375em;
  }

  .row.\32 5\25 {
    margin: 0 0 -1px -0.375em;
  }

  .row.uniform.\32 5\25  > * {
    padding: 0.375em 0 0 0.375em;
  }

  .row.uniform.\32 5\25 {
    margin: -0.375em 0 -1px -0.375em;
  }

  .\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 {
    width: 100%;
    clear: none;
    margin-left: 0;
  }

  .\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 {
    width: 91.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 {
    width: 83.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\39 u\28xsmall\29, .\39 u\24\28xsmall\29 {
    width: 75%;
    clear: none;
    margin-left: 0;
  }

  .\38 u\28xsmall\29, .\38 u\24\28xsmall\29 {
    width: 66.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\37 u\28xsmall\29, .\37 u\24\28xsmall\29 {
    width: 58.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\36 u\28xsmall\29, .\36 u\24\28xsmall\29 {
    width: 50%;
    clear: none;
    margin-left: 0;
  }

  .\35 u\28xsmall\29, .\35 u\24\28xsmall\29 {
    width: 41.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\34 u\28xsmall\29, .\34 u\24\28xsmall\29 {
    width: 33.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\33 u\28xsmall\29, .\33 u\24\28xsmall\29 {
    width: 25%;
    clear: none;
    margin-left: 0;
  }

  .\32 u\28xsmall\29, .\32 u\24\28xsmall\29 {
    width: 16.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 u\28xsmall\29, .\31 u\24\28xsmall\29 {
    width: 8.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\31 2u\24\28xsmall\29  + *,
  .\31 1u\24\28xsmall\29  + *,
  .\31 0u\24\28xsmall\29  + *,
  .\39 u\24\28xsmall\29  + *,
  .\38 u\24\28xsmall\29  + *,
  .\37 u\24\28xsmall\29  + *,
  .\36 u\24\28xsmall\29  + *,
  .\35 u\24\28xsmall\29  + *,
  .\34 u\24\28xsmall\29  + *,
  .\33 u\24\28xsmall\29  + *,
  .\32 u\24\28xsmall\29  + *,
  .\31 u\24\28xsmall\29  + * {
    clear: left;
  }

  .\-11u\28xsmall\29 {
    margin-left: 91.66667%;
  }

  .\-10u\28xsmall\29 {
    margin-left: 83.33333%;
  }

  .\-9u\28xsmall\29 {
    margin-left: 75%;
  }

  .\-8u\28xsmall\29 {
    margin-left: 66.66667%;
  }

  .\-7u\28xsmall\29 {
    margin-left: 58.33333%;
  }

  .\-6u\28xsmall\29 {
    margin-left: 50%;
  }

  .\-5u\28xsmall\29 {
    margin-left: 41.66667%;
  }

  .\-4u\28xsmall\29 {
    margin-left: 33.33333%;
  }

  .\-3u\28xsmall\29 {
    margin-left: 25%;
  }

  .\-2u\28xsmall\29 {
    margin-left: 16.66667%;
  }

  .\-1u\28xsmall\29 {
    margin-left: 8.33333%;
  }
}
@media screen and (max-width: 360px) {
  .row > * {
    padding: 0 0 0 1.5em;
  }

  .row {
    margin: 0 0 -1px -1.5em;
  }

  .row.uniform > * {
    padding: 1.5em 0 0 1.5em;
  }

  .row.uniform {
    margin: -1.5em 0 -1px -1.5em;
  }

  .row.\32 00\25  > * {
    padding: 0 0 0 3em;
  }

  .row.\32 00\25 {
    margin: 0 0 -1px -3em;
  }

  .row.uniform.\32 00\25  > * {
    padding: 3em 0 0 3em;
  }

  .row.uniform.\32 00\25 {
    margin: -3em 0 -1px -3em;
  }

  .row.\31 50\25  > * {
    padding: 0 0 0 2.25em;
  }

  .row.\31 50\25 {
    margin: 0 0 -1px -2.25em;
  }

  .row.uniform.\31 50\25  > * {
    padding: 2.25em 0 0 2.25em;
  }

  .row.uniform.\31 50\25 {
    margin: -2.25em 0 -1px -2.25em;
  }

  .row.\35 0\25  > * {
    padding: 0 0 0 0.75em;
  }

  .row.\35 0\25 {
    margin: 0 0 -1px -0.75em;
  }

  .row.uniform.\35 0\25  > * {
    padding: 0.75em 0 0 0.75em;
  }

  .row.uniform.\35 0\25 {
    margin: -0.75em 0 -1px -0.75em;
  }

  .row.\32 5\25  > * {
    padding: 0 0 0 0.375em;
  }

  .row.\32 5\25 {
    margin: 0 0 -1px -0.375em;
  }

  .row.uniform.\32 5\25  > * {
    padding: 0.375em 0 0 0.375em;
  }

  .row.uniform.\32 5\25 {
    margin: -0.375em 0 -1px -0.375em;
  }

  .\31 2u\28xxsmall\29, .\31 2u\24\28xxsmall\29 {
    width: 100%;
    clear: none;
    margin-left: 0;
  }

  .\31 1u\28xxsmall\29, .\31 1u\24\28xxsmall\29 {
    width: 91.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 0u\28xxsmall\29, .\31 0u\24\28xxsmall\29 {
    width: 83.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\39 u\28xxsmall\29, .\39 u\24\28xxsmall\29 {
    width: 75%;
    clear: none;
    margin-left: 0;
  }

  .\38 u\28xxsmall\29, .\38 u\24\28xxsmall\29 {
    width: 66.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\37 u\28xxsmall\29, .\37 u\24\28xxsmall\29 {
    width: 58.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\36 u\28xxsmall\29, .\36 u\24\28xxsmall\29 {
    width: 50%;
    clear: none;
    margin-left: 0;
  }

  .\35 u\28xxsmall\29, .\35 u\24\28xxsmall\29 {
    width: 41.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\34 u\28xxsmall\29, .\34 u\24\28xxsmall\29 {
    width: 33.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\33 u\28xxsmall\29, .\33 u\24\28xxsmall\29 {
    width: 25%;
    clear: none;
    margin-left: 0;
  }

  .\32 u\28xxsmall\29, .\32 u\24\28xxsmall\29 {
    width: 16.6666666667%;
    clear: none;
    margin-left: 0;
  }

  .\31 u\28xxsmall\29, .\31 u\24\28xxsmall\29 {
    width: 8.3333333333%;
    clear: none;
    margin-left: 0;
  }

  .\31 2u\24\28xxsmall\29  + *,
  .\31 1u\24\28xxsmall\29  + *,
  .\31 0u\24\28xxsmall\29  + *,
  .\39 u\24\28xxsmall\29  + *,
  .\38 u\24\28xxsmall\29  + *,
  .\37 u\24\28xxsmall\29  + *,
  .\36 u\24\28xxsmall\29  + *,
  .\35 u\24\28xxsmall\29  + *,
  .\34 u\24\28xxsmall\29  + *,
  .\33 u\24\28xxsmall\29  + *,
  .\32 u\24\28xxsmall\29  + *,
  .\31 u\24\28xxsmall\29  + * {
    clear: left;
  }

  .\-11u\28xxsmall\29 {
    margin-left: 91.66667%;
  }

  .\-10u\28xxsmall\29 {
    margin-left: 83.33333%;
  }

  .\-9u\28xxsmall\29 {
    margin-left: 75%;
  }

  .\-8u\28xxsmall\29 {
    margin-left: 66.66667%;
  }

  .\-7u\28xxsmall\29 {
    margin-left: 58.33333%;
  }

  .\-6u\28xxsmall\29 {
    margin-left: 50%;
  }

  .\-5u\28xxsmall\29 {
    margin-left: 41.66667%;
  }

  .\-4u\28xxsmall\29 {
    margin-left: 33.33333%;
  }

  .\-3u\28xxsmall\29 {
    margin-left: 25%;
  }

  .\-2u\28xxsmall\29 {
    margin-left: 16.66667%;
  }

  .\-1u\28xxsmall\29 {
    margin-left: 8.33333%;
  }
}
/*-------------------------------------------------*/
/*-------------------------------------------------*/
/*-------------------------------------------------*/
/* ---- Showcase Module ---- */
.DRX_Showcase_Table {
  padding: 10px;
  width: 96%;
  margin-bottom: 15px;
}

.DRX_Showcase_Title {
  font-weight: bold;
  padding-bottom: 5px;
}

.DRX_ShowCase_ImageTable {
  width: 102px;
  padding: 1px;
  border: 1px solid #000000;
  border-spacing: 0px;
}

.DRX_Showcase_DetailImage {
  width: 200px;
  border: 1px solid #000000;
}

.cmsi-showcase-list {
  list-style-type: none;
  margin: 0px !important;
  padding: 0px !important;
}
.cmsi-showcase-list li {
  min-height: 200px;
}
.cmsi-showcase-list h3 {
  text-align: left;
}

.cmsi-showcase-desc {
  margin: 14px 0px;
  text-align: left;
  font-family: "proxima-nova",sans-serif;
}

.cmsi-showcase-thumb {
  float: right;
}

.cmsi-showcase-profile .cmsi-showcase-thumb {
  margin-left: 10px;
  margin-bottom: 10px;
}

.cmsi-showcase-list .cmsi-showcase-thumb a img {
  max-height: 170px;
}

.cmsi-showcase-thumb a img {
  border: 0px none;
}

ul.cmsi-showcase-list li {
  clear: both;
}

.cmsi-module-showcase-detail {
  text-align: left;
}

/* showcase floater item */
.showcase-floater-item img.thumb {
  float: right;
  width: 80px;
  margin-left: 4px;
}

/* ---- Shopping Cart Module ---- */
#drxMediaDescription {
  text-align: left;
}

/* ------------------------ */
.DRX_SimpleCartProducts {
  width: 100%;
}
.DRX_SimpleCartProducts td {
  vertical-align: top;
}

.DRX_SimpleCartProductTitle {
  font-weight: bold;
}

.DRX_SimpleCart_SummaryImage {
  width: 75px;
  border: 1px solid #000000;
}

.DRX_SimpleCart_DetailImage {
  width: 200px;
  border: 1px solid #000000;
}

.DRX_SimpleCartItemTable {
  width: 100%;
  border: 0px;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #ddd;
  table-layout: fixed;
}
.DRX_SimpleCartItemTable th, .DRX_SimpleCartItemTable td {
  border: 1px solid #ddd;
  padding: .25em .5em;
}
.DRX_SimpleCartItemTable th, .DRX_SimpleCartItemTable.totals .grandTotal td {
  background-color: #555;
  color: #fff;
  text-shadow: 0 1px 1px #222;
  border: 1px solid #444;
  text-align: left;
}
.DRX_SimpleCartItemTable tr:nth-of-type(odd) td {
  background-color: whiteSmoke;
}
.DRX_SimpleCartItemTable .qty {
  width: 50px;
  text-align: center;
}
.DRX_SimpleCartItemTable .modify {
  width: 150px;
}
.DRX_SimpleCartItemTable.totals {
  float: right;
  width: 50%;
  max-width: 250px;
}
.DRX_SimpleCartItemTable.totals td {
  text-align: right;
}
.DRX_SimpleCartItemTable.totals .grandTotal td {
  text-align: right;
}
.DRX_SimpleCartItemTable.totals .grandTotal td:first-child {
  font-weight: bold;
}

.calculate-shipping {
  float: left;
}

.btn-mod {
  padding: 0 .25em;
  width: 10px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.btn-mod.add {
  background: #468847;
}
.btn-mod.subtract {
  background: #d14;
  margin-right: 1em;
}
.btn-mod:hover {
  text-decoration: none;
  opacity: .5;
}

.remove {
  color: #d14;
}
.remove:hover {
  color: #000;
}

.clear {
  clear: both;
}

a.checkout {
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
  padding: 4px;
  display: block;
  border-radius: 0;
  float: right;
}
a.checkout:hover {
  background: #ccc;
}

.cmsi-product-list {
  margin: 0 0 2em 0;
  border-bottom: 1px dashed #ccc;
  padding: 0 0 2em 0;
}

.cmsi-product-feed .cmsi-product-list:first-child {
  margin-top: 40px;
}

@media handheld, only screen and (max-width: 767px) {
  /* SIMPLE CART V2 */
  .product-col-1, .product-col-2 {
    width: 100%;
    float: none;
    margin-bottom: 25px;
  }

  .cmsi-featured img {
    width: 100%;
  }
}
/* ---- Calendar ---- */
.DRX_CalendarTable {
  border: 1px solid #000000;
  padding: 2px;
  width: 350px;
}
.DRX_CalendarTable th {
  text-align: center;
}
.DRX_CalendarTable td {
  border: 1px solid #000000;
  width: 23px;
  height: 40px;
  text-align: center;
  padding: 2px;
}

.DRX_CalendarEvent {
  font-weight: bold;
  background-color: #c0c0c0;
  color: #000000;
}

.DRXOverLibText {
  text-align: left;
  color: #000000;
}

.DRX_CalendarTable {
  width: 100%;
  border-top: 4px solid #ccc;
  background: #fff;
}
.DRX_CalendarTable th {
  color: #fff;
  background: #231f20;
  width: 14.28%;
}
.DRX_CalendarTable td {
  height: 60px;
}

#overDiv table {
  margin: 0;
}
#overDiv hr {
  display: none;
}
#overDiv td td {
  padding: .5em;
}
#overDiv > table {
  box-shadow: 0 0 5px #555;
}
#overDiv table {
  background: whiteSmoke !important;
}
#overDiv table table:first-child {
  background: #231f20 !important;
}

td.DRX_CalendarEvent {
  background: #ddd;
}

table.CMSI_Module_Calendar_MonthSelector {
  width: 100%;
}

/* ---- Simple Cart ---- */
.CMSI_Auto_VehiclePhoto {
  border: 0px;
}

a.but-add-to-cart {
  background: #ff6839;
  border: 1px solid #e63600;
  padding: 3px;
  text-decoration: none;
  font-size: 110%;
  text-align: center;
}
a.but-add-to-cart span {
  color: #fff;
}

/* SimpleCart CSS */
ul.DRX_SimpleCartProducts {
  list-style-type: none;
  margin: 0px !important;
  padding: 0px !important;
}
ul.DRX_SimpleCartProducts li {
  margin: 12px 0px;
  min-height: 200px;
  border-bottom: 1px solid #EAF0F5;
  padding-bottom: 5px;
}

.DRX_SimpleCartProducts .productThumb {
  float: right;
  margin-left: 5px;
  text-align: center;
}
.DRX_SimpleCartProducts .but-add-to-cart {
  display: block;
  margin-top: 4px;
  font-size: 90%;
}
.DRX_SimpleCartProducts .productThumb img {
  border: 0px !important;
  max-height: 170px;
}
.DRX_SimpleCartProducts .readMore {
  clear: both;
}
.DRX_SimpleCartProducts .productTitle a {
  margin-right: 12px;
  text-decoration: none;
}
.DRX_SimpleCartProducts .productDesc {
  margin-bottom: 9px;
}

/* SimpleCart v2 */
.cmsi-featured-products, .cmsi-product-detail, .cmsi-product-image-thumbnails {
  margin: 0 -0.9375em !important;
  list-style: none;
}

.cmsi-featured-products, .cmsi-product-detail {
  padding-bottom: 60px;
}

.cmsi-product, .product-col-1, .product-col-2, .cmsi-product-image-thumbnails li {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 33.33%;
  float: left;
  padding: 0 .9375em !important;
  margin: 0;
}

.product-col-2 img {
  border: 1px solid #ccc;
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  max-width: 100%;
  width: 100%;
}

.cmsi-product-image-thumbnails li {
  margin-bottom: 1.875em !important;
}

.product-col-1 {
  width: 66%;
}

.product-col-2 {
  width: 33%;
}

.cmsi-product {
  text-align: center;
}
.cmsi-product img {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #fff;
  border: 1px solid #ccc;
  margin: 0 0 1em 0;
}
.cmsi-product h2 {
  margin: 0;
}

.product-col-1 h4 {
  margin: 1.2em 0 .5em 0;
}

.cmsi-featured {
  margin-bottom: 1.875em;
  display: block;
}

.cmsi-text-alert {
  color: red;
}

#cmsi-module-simplecart-form-cartadd p {
  margin-bottom: .25em;
}
#cmsi-module-simplecart-form-cartadd select {
  margin-bottom: 1.2em;
}

.cmsi-price {
  font-size: 24px;
  font-weight: bold;
}

.cmsi-featured-products h2.title {
  font-size: 15px;
}

.browse {
  background: #350102;
  padding: 1em;
  border: 1px solid #350102;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.browse select, .browse p {
  float: right;
}
.browse ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.browse ul li {
  margin: 0 1em 0 0 !important;
  padding: 0 !important;
  float: left;
  background: none !important;
}
.browse select {
  height: auto;
  line-height: normal;
  margin: 0;
}

.continueshopping {
  margin-top: 15px;
  display: inline-block;
  padding: 7px 12px;
  text-decoration: none;
  background: whitesmoke;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #555;
  border: 1px solid #ddd;
  cursor: pointer;
}

.stripe-checkout {
  padding: 2em;
  background: whiteSmoke;
  border: 1px solid #ddd;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
.stripe-checkout h2 {
  margin-top: 0;
}

/* details */
.product-details .product-image {
  width: 120px;
  float: left;
  margin-right: 10px;
  text-align: center;
}
.product-details .product-image img {
  max-width: 120px;
  width: 120px;
  border: 0px !important;
}
.product-details .price {
  display: block;
  font-weight: bold;
  font-size: 120%;
  float: right;
}
.product-details .but-add-to-cart {
  margin: 12px 0px;
  display: block;
  width: 75px;
  margin: 10px auto;
}
.product-details .product-information {
  margin-left: 130px;
}
.product-details .description {
  background-color: #F8F8F8;
  border: 1px solid #DADADA;
  padding: 10px;
}

/* simplecart floater item */
.simplecart-floater-item img.thumb {
  float: right;
  width: 80px;
  margin-left: 4px;
}

/* ---- Site Search ---- */
.search {
  margin: 14px 0px;
}
.search .keyword {
  padding: 4px;
  font-size: 1.2em;
  width: 60%;
}
.search .submit {
  padding: 3px;
  font-size: 1.2em;
}

.search-results h3 {
  margin-bottom: 3px;
}
.search-results ol {
  list-style-type: none !important;
  margin: 0px !important;
  padding: 0px !important;
}
.search-results ol li {
  margin: 14px 0px !important;
}
.search-results cite {
  font-style: normal;
  margin-top: 3px;
  display: block;
  text-decoration: none;
}
.search-results .desc {
  font-family: "proxima-nova",sans-serif;
}
.search-results .desc a {
  text-decoration: none;
}
.search-results .desc a cite {
  text-decoration: none;
}
.search-results .search-product-thumb {
  max-width: 60px;
  max-height: 60px;
  float: left;
  margin-right: 10px;
  padding: 0px !important;
  border-width: 1px !important;
}

/* ---- Testimonial ---- */
ul.testimonials {
  list-style-type: none;
  margin: 0px !important;
  padding: 0px !important;
}
ul.testimonials li {
  margin-bottom: 14px;
}
ul.testimonials li .text {
  margin-bottom: 8px;
}
ul.testimonials li .author {
  font-weight: bold;
}
ul.tweet_list {
  padding: 0px !important;
}
ul.tweet_list li {
  margin: 10px 0px !important;
  word-wrap: break-word;
}
ul.tweet_list li .tweet_time {
  display: block;
}
ul.media-album-list {
  list-style: none;
  margin: 0px !important;
  padding: 0px;
}
ul.media-album-items {
  list-style: none;
  margin: 0px !important;
  padding: 0px;
}
ul.media-album-items li {
  display: block;
  margin: 0px;
  width: 75px;
  float: left;
  padding: 4px;
  height: 100px;
  text-align: center;
}
ul.media-album-items li img {
  padding: 0px !important;
  margin: 0px !important;
  border: 0px !important;
}

/* ---- Twitter ---- */
/* ---- Media Albums ---- */
/* ---- BLOG ---- */
.blog-posts .entry {
  margin: 0 0 2em 0;
  border-bottom: 1px dashed #ccc;
  padding: 0 0 2em 0;
}
.blog-posts .entry:first-child {
  margin-top: 40px;
}

.cmsi-post-thumb {
  float: left;
  width: 20%;
}
@media screen and (max-width: 1280px) {
  .cmsi-post-thumb img {
    max-width: 100%;
  }
}
@media screen and (max-width: 736px) {
  .cmsi-post-thumb {
    width: 100%;
    float: none;
    text-align: center;
    margin: 1em 0;
  }
}

.cmsi-post-summary {
  float: right;
  width: 76.2%;
  overflow: hidden;
  *zoom: 1;
}
@media screen and (max-width: 736px) {
  .cmsi-post-summary {
    float: none;
    width: 100%;
  }
}
.cmsi-post-summary h2.title {
  margin: 0 0 .25em 0;
}
.cmsi-post-summary p {
  text-align: left;
}
.cmsi-post-summary p.meta {
  text-align: center;
}

.cmsi-single-blog-post h2.title {
  margin: 0 0 .25em 0;
}
.cmsi-single-blog-post p {
  text-align: left;
}
.cmsi-single-blog-post p.meta {
  text-align: center;
}

.cmsi-post-summary .meta, .cmsi-single-blog-post .meta {
  font-size: 12px;
}

.cmsi-post-full {
  float: none;
  width: 100%;
}

/* Blog Comments */
ul.comment-list {
  margin: 1.2em 0;
  list-style: none;
}
ul.comment-list li.comment {
  font-family: "proxima-nova",sans-serif;
  font-size: 0.6em;
  padding: 1em;
  border: 1px solid #ddd;
  border-top: 0;
  margin: 0;
  background: whiteSmoke;
}
ul.comment-list li.comment:first-child {
  border-top: 1px solid #ddd;
}
ul.comment-list li.comment:nth-child(even) {
  background: white;
}
ul.comment-list li.comment .gravatar {
  float: right;
  padding: 3px;
  border: 1px solid #ddd;
  background: #fff;
  margin: 0 0 1em 1em;
}

.gravatar img {
  width: 48px;
}

.comment-list li.comment .author, .comment-list li.comment .comment {
  margin: 0;
  padding: 0;
}
.comment-list li.comment .author {
  font-size: 12px;
  margin-bottom: 1em;
  text-transform: capitalize;
  font-weight: bold;
}
.comment-list li.comment .author a {
  font-size: 16px;
}

.success {
  color: #76a554;
}

/* Image Floats */
img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

/* Pagination */
.cmsi-pagination {
  text-align: center;
}
.cmsi-pagination ul {
  list-style: none;
  margin: 1.2em 0;
  font-size: 0;
}
.cmsi-pagination li {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  display: inline-block;
  font-size: 14px;
}
.cmsi-pagination a {
  padding: .25em .75em;
  margin: 0 .25em 0 0;
  border: 1px solid #ddd;
  display: inline-block;
  background: #F5F5F5;
  color: #999;
}
.cmsi-pagination .current a {
  font-weight: 700;
  color: #333;
}
.cmsi-pagination a:hover {
  opacity: .5;
}
.cmsi-pagination .info {
  display: block;
  float: none;
  margin: 1em 0;
  border: 0;
  background: none;
}

/* ---- Contact FORM ---- */
table.DRXQuickForm td {
  padding: 0 0 10px 0;
}
table.DRXQuickForm td:first-child {
  padding-right: 20px;
}
table.DRXQuickForm img {
  display: block;
}

span.requiredNote {
  font-size: 12px;
}

/* fix for the addthis clear */
.addthis_toolbox {
  height: 20px !important;
}
.addthis_toolbox.addthis_32x32_style {
  height: 32px !important;
}

.atclear {
  float: none;
}

.cmsi-showcase-thumb a.cmsi-showcase-readmore {
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
  padding: 4px;
  display: block;
  border-radius: 0;
}
.cmsi-showcase-thumb a.cmsi-showcase-readmore:hover {
  background: #ccc;
}

/* Showcase Page CSS */
#cmsi-module-showcase-photos {
  float: right;
  display: inline;
  width: 350px;
  margin: 0 0 2em 2em;
}
#cmsi-module-showcase-photos > a {
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
  padding: 4px;
  display: block;
}

#cmsi-module-showcase-thumbs {
  margin-left: -10px;
}
#cmsi-module-showcase-thumbs a img {
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
  padding: 4px;
  display: block;
}
#cmsi-module-showcase-thumbs img {
  margin: 10px  0 0 10px;
}
#cmsi-module-showcase-thumbs img:hover {
  background: #ccc;
}

/* Showcase Back + Learn More Buttons */
/* Showcase List Page CSS */
.cmsi-showcase-list .cmsi-showcase-thumb {
  margin: 0 0 1em 2em;
}

/* Login Form */
#cmsi-frontend-memberaccess-form label, #cmsi-frontend-memberaccess-form form input, form #cmsi-frontend-memberaccess-form input, #cmsi-frontend-memberaccess-form form textarea, form #cmsi-frontend-memberaccess-form textarea, .cmsi-memberaccess-buttons {
  display: block;
}

/* Buttons */
.btn-std, .btn-green, .btn-blue, .btn-red {
  display: inline-block;
  padding: 7px 12px;
  text-decoration: none;
  background: whiteSmoke;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #555;
  border-bottom: 3px solid #ddd;
  cursor: pointer;
}

.btn-std:hover, .btn-green:hover, .btn-blue:hover, .btn-red:hover {
  background: #ccc;
  border-color: #bbb;
  color: #333;
  text-decoration: none  !important;
}

.btn-green {
  background: #8ac33e;
  border-color: #537625;
  color: #fff !important;
  text-shadow: 0 1px 1px #1c280d;
}
.btn-green:hover {
  background: #537625;
  border-color: #1c280d;
  color: #fff !important;
}

.btn-blue {
  background: #3e66c4;
  border-color: #253d77;
  color: #fff !important;
}
.btn-blue:hover {
  background: #253d77;
  border-color: #0d1529;
  color: #fff !important;
}

.btn-red {
  background: #9e0b0f;
  border-color: #72080b;
  color: #fff !important;
  text-shadow: 0 1px 1px #5a080a;
}
.btn-red:hover {
  background: #5a080a;
  border-color: #330506;
  color: #fff !important;
}

/* ---- Map ---- */
.map {
  padding: 5px 5px 0 5px;
  border: 1px solid #ccc;
  background: #fff;
}

/* ---- Lightbox Fix ---- */
#fancybox-wrap #fancybox-outer {
  position: absolute !important;
}

/* Basic */
@-ms-viewport {
  width: device-width;
}
body {
  background: #000;
}
body.is-loading *, body.is-loading *:before, body.is-loading *:after {
  -moz-animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

body, input, select, textarea {
  color: #fff;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 15pt;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.65em;
}
@media screen and (min-width: 1281px) and (max-width: 5000px) {
  body, input, select, textarea {
    font-size: 13pt;
  }
}
@media screen and (max-width: 1280px) {
  body, input, select, textarea {
    font-size: 12pt;
  }
}
@media screen and (max-width: 736px) {
  body, input, select, textarea {
    font-size: 11pt;
    letter-spacing: 0.0375em;
  }
}

a {
  border-bottom: dotted 1px;
  color: inherit;
  text-decoration: none;
}

strong, b {
  color: #fff;
  font-weight: 600;
}

em, i {
  font-style: italic;
}

p {
  margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "vtc_letterer_proregular", "sans-serif";
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.225em;
  line-height: 1em;
  margin: 0 0 1em 0;
  text-transform: uppercase;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 1.5em;
}

h2 {
  font-size: 1.35em;
  line-height: 1.75em;
}

h3 {
  font-size: 1.25em;
  line-height: 1.75em;
}

h4 {
  font-size: 1em;
  line-height: 1.5em;
}

h5 {
  font-size: 0.8em;
  line-height: 1.5em;
}

h6 {
  font-size: 0.7em;
  line-height: 1.5em;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

hr {
  border: 0;
  border-bottom: solid 2px #fff;
  margin: 3em 0;
}
hr.major {
  margin: 4.5em 0;
}

blockquote {
  border-left: solid 4px #fff;
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 0.5em 0 0.5em 2em;
}

code {
  background: rgba(144, 144, 144, 0.25);
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  letter-spacing: 0;
  margin: 0 0.25em;
  padding: 0.25em 0.65em;
}

pre {
  -webkit-overflow-scrolling: touch;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0 2em 0;
}
pre code {
  display: block;
  line-height: 1.75em;
  padding: 1em 1.5em;
  overflow-x: auto;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* Section/Article */
section.special, article.special {
  text-align: center;
}
section .two-column, article .two-column {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  padding: 0 20px 0 0;
}
section .two-column p, article .two-column p {
  padding: 5px 0;
}
section.background, article.background {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 0 !important;
}
section.fullscreen, article.fullscreen {
  width: 100%;
  min-height: 100%;
}

header p {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  top: -0.25em;
}
header h3 + p {
  font-size: 1.1em;
}
header h4 + p,
header h5 + p,
header h6 + p {
  font-size: 0.9em;
}
header.major {
  margin: 0 0 3.5em 0;
}
header.major h2, header.major h3, header.major h4, header.major h5, header.major h6 {
  border-bottom: solid 2px #fff;
  display: inline-block;
  padding-bottom: 1em;
  position: relative;
}
header.major h2:after, header.major h3:after, header.major h4:after, header.major h5:after, header.major h6:after {
  content: '';
  display: block;
  height: 1px;
}
header.major p {
  color: #fff;
  top: 0;
}
@media screen and (max-width: 736px) {
  header.major {
    margin: 0 0 2em 0;
  }
}
@media screen and (max-width: 980px) {
  header br {
    display: none;
  }
}

/* Form */
/*-------------------------------------------------*/
/*-------------------------------------------------*/
/*-------------------------------------------------*/
/*-------------------------------------------------*/
/*-------------------------------------------------*/
form {
  width: 95%;
  margin: 0 auto;
}
form .field-wrap {
  margin-top: -20px;
  margin-top: -2rem;
}
form label, form input, form textarea, form td {
  font-weight: normal !important;
  vertical-align: middle;
}
@media screen and (max-width: 736px) {
  form label, form input, form textarea, form td {
    display: inline;
  }
}
form p {
  padding: 0px;
  padding: 0rem;
}
form img {
  height: auto !important;
}
form input, form textarea {
  font-family: "proxima-nova",sans-serif !important;
  width: 100% !important;
  padding: 20px !important;
  padding:  2rem !important;
  font-size: 16px !important;
  font-size:  1.6rem !important;
  margin: 0 0 10px !important;
  margin:  0 0 1rem !important;
  border: 1px solid #000;
}
form table {
  margin-top: 30px;
  margin-top: 3rem;
}
form table tr {
  margin: 0 0 30px;
  margin:  0 0 3rem;
}

/* Button */
input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button,
.cmsi-showcase-list a.cmsi-module-showcase-back,
.cmsi-showcase-list a.cmsi-showcase-readmore,
.cmsi-showcase-list a.checkout,
.cmsi-showcase-list a.cmsi-module-blog-summary-read-more,
.cmsi-module-showcase-detail a.cmsi-module-showcase-back,
.cmsi-module-showcase-detail a.cmsi-showcase-readmore,
.cmsi-module-showcase-detail a.checkout,
.cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more,
.cmsi-post-summary a.cmsi-module-showcase-back,
.cmsi-post-summary a.cmsi-showcase-readmore,
.cmsi-post-summary a.checkout,
.cmsi-post-summary a.cmsi-module-blog-summary-read-more {
  position: relative;
  display: inline-block;
  border-radius: 0.35em;
  text-decoration: none;
  padding: 0.75em 2.5em 0.75em 2.5em;
  cursor: pointer;
  width: auto !important;
}

#header .search {
  margin: 20px auto;
  position: relative;
  width: 10%;
  height: 50px;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
#header .search.searchbox-icon {
  width: 50%;
  height: 50px;
}
#header .search:focus {
  width: 30%;
}
#header .search .searchbox-input {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  outline: 0;
  width: 80%;
  height: 50px;
  margin: 0;
  padding: 0 40px 0 0 !important;
  padding:  0 4rem 0 0 !important;
  font-size: 0.8em !important;
  color: #FFF;
  background: none;
}
#header .search .searchbox-submit,
#header .search .searchbox-icon {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  line-height: 50px;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  font-family: modicons;
  font-size: 0.8em;
}
#header .search .searchbox {
  position: relative;
  min-width: 50px;
  height: 50px;
  float: right;
  overflow: hidden;
}
#header .search.searchbox-open {
  width: 100%;
}

form {
  margin: 0 0 2em 0;
}

label, form input, form textarea {
  color: #fff;
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: rgba(144, 144, 144, 0.25);
  border-radius: 3px;
  border: none;
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
}
input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
  box-shadow: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 2px #560004;
}

.select-wrapper {
  text-decoration: none;
  display: block;
  position: relative;
}
.select-wrapper:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}
.select-wrapper:before {
  -moz-pointer-events: none;
  -webkit-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  color: #fff;
  content: '\f078';
  display: block;
  height: 2.75em;
  line-height: 2.75em;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 2.75em;
}
.select-wrapper select::-ms-expand {
  display: none;
}

textarea {
  padding: 0.75em 1em;
}

input[type="checkbox"],
input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1;
}
input[type="checkbox"] + label, form input[type="checkbox"] + input, form input[type="checkbox"] + textarea,
input[type="radio"] + label,
form input[type="radio"] + input,
form input[type="radio"] + textarea {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  padding-left: 2.4em;
  padding-right: 0.75em;
  position: relative;
}
input[type="checkbox"] + label:before, form input[type="checkbox"] + input:before, form input[type="checkbox"] + textarea:before,
input[type="radio"] + label:before,
form input[type="radio"] + input:before,
form input[type="radio"] + textarea:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}
input[type="checkbox"] + label:before, form input[type="checkbox"] + input:before, form input[type="checkbox"] + textarea:before,
input[type="radio"] + label:before,
form input[type="radio"] + input:before,
form input[type="radio"] + textarea:before {
  background: rgba(144, 144, 144, 0.25);
  border-radius: 3px;
  content: '';
  display: inline-block;
  height: 1.65em;
  left: 0;
  line-height: 1.58125em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 1.65em;
}
input[type="checkbox"]:checked + label:before, form input[type="checkbox"]:checked + input:before, form input[type="checkbox"]:checked + textarea:before,
input[type="radio"]:checked + label:before,
form input[type="radio"]:checked + input:before,
form input[type="radio"]:checked + textarea:before {
  background: #000;
  color: #fff;
  content: '\f00c';
}
input[type="checkbox"]:focus + label:before, form input[type="checkbox"]:focus + input:before, form input[type="checkbox"]:focus + textarea:before,
input[type="radio"]:focus + label:before,
form input[type="radio"]:focus + input:before,
form input[type="radio"]:focus + textarea:before {
  box-shadow: 0 0 0 2px #560004;
}

input[type="checkbox"] + label:before, form input[type="checkbox"] + input:before, form input[type="checkbox"] + textarea:before {
  border-radius: 3px;
}

input[type="radio"] + label:before, form input[type="radio"] + input:before, form input[type="radio"] + textarea:before {
  border-radius: 100%;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1.0;
}

:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1.0;
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1.0;
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1.0;
}

.formerize-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1.0;
}

/* Box */
.box {
  border-radius: 3px;
  border: solid 2px #fff;
  margin-bottom: 2em;
  padding: 1.5em;
}
.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
  margin-bottom: 0;
}
.box.alt {
  border: 0;
  border-radius: 0;
  padding: 0;
}

/* Icon */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}
.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}
.icon > .label {
  display: none;
}
.icon.major {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 3px;
  border: solid 2px #fff;
  display: inline-block;
  font-size: 1.35em;
  height: calc(3em + 2px);
  line-height: 3em;
  text-align: center;
  width: calc(3em + 2px);
}
.icon.major:before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  font-size: 1.5em;
}
@media screen and (max-width: 736px) {
  .icon.major {
    font-size: 1em;
  }
}
.icon.style1 {
  color: #93d7ff;
}
.icon.style2 {
  color: #b8d5ff;
}
.icon.style3 {
  color: #a2f7c2;
}

/* Image */
.image {
  border-radius: 3px;
  border: 0;
  display: inline-block;
  position: relative;
}
.image img {
  border-radius: 3px;
  display: block;
}
.image p {
  padding: 0 !important;
  margin: 0 !important;
}
.image.left {
  float: left;
  margin: 0 2em 2em 0;
  top: 0.25em;
}
.image.right {
  float: right;
  margin: 0 0 2em 2em;
  top: 0.25em;
}
.image.left, .image.right {
  max-width: 40%;
}
.image.left img, .image.right img {
  width: 100%;
}
.image.fit {
  display: block;
  margin: 0 0 2em 0;
  width: 100%;
}
.image.fit img {
  width: 100%;
}

/* List */
ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em;
}
ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 2em 0;
  padding-left: 1em;
}
ul li {
  padding-left: 0.5em;
}
ul.alt {
  list-style: none;
  padding-left: 0;
}
ul.alt li {
  border-top: solid 1px #fff;
  padding: 0.5em 0;
}
ul.alt li:first-child {
  border-top: 0;
  padding-top: 0;
}
ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}
ul.icons li {
  display: inline-block;
  padding: 0 1em 0 0;
}
ul.icons li:last-child {
  padding-right: 0 !important;
}
ul.icons.major {
  padding: 1em 0;
}
ul.icons.major li {
  padding-right: 3.5em;
}
@media screen and (max-width: 736px) {
  ul.icons.major li {
    padding: 0 1em !important;
  }
}
ul.actions {
  cursor: default;
  list-style: none;
  padding-left: 0;
}
ul.actions li {
  display: inline-block;
  padding: 0 1.5em 0 0;
  vertical-align: middle;
}
ul.actions li:last-child {
  padding-right: 0;
}
ul.actions.small li {
  padding: 0 0.75em 0 0;
}
ul.actions.vertical li {
  display: block;
  padding: 1.5em 0 0 0;
}
ul.actions.vertical li:first-child {
  padding-top: 0;
}
ul.actions.vertical li > * {
  margin-bottom: 0;
}
ul.actions.vertical.small li {
  padding: 0.75em 0 0 0;
}
ul.actions.vertical.small li:first-child {
  padding-top: 0;
}
ul.actions.fit {
  display: table;
  margin-left: -1.5em;
  padding: 0;
  table-layout: fixed;
  width: calc(100% + 1.5em);
}
ul.actions.fit li {
  display: table-cell;
  padding: 0 0 0 1.5em;
}
ul.actions.fit li > * {
  margin-bottom: 0;
}
ul.actions.fit.small {
  margin-left: -0.75em;
  width: calc(100% + 0.75em);
}
ul.actions.fit.small li {
  padding: 0 0 0 0.75em;
}
@media screen and (max-width: 736px) {
  ul.actions li {
    display: block;
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }
  ul.actions li:first-child {
    padding-top: 0;
  }
  ul.actions li > * {
    margin: 0 auto !important;
    max-width: 30em;
    width: 100%;
  }
  ul.actions li > *.icon:before {
    margin-left: -1em;
  }
  ul.actions.small li {
    padding: 0.5em 0 0 0;
  }
  ul.actions.small li:first-child {
    padding-top: 0;
  }
}

dl {
  margin: 0 0 2em 0;
}

/* Table */
.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

table {
  margin: 0 0 2em 0;
  width: 100%;
}
table td {
  padding: 0.75em 0.75em;
}
table th {
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  padding: 0 0.75em 0.75em 0.75em;
  text-align: left;
}
table thead {
  border-bottom: solid 2px #fff;
}
table tfoot {
  border-top: solid 2px #fff;
}
table.alt {
  border-collapse: separate;
}
table.alt tbody tr td {
  border: solid 1px #fff;
  border-left-width: 0;
  border-top-width: 0;
}
table.alt tbody tr td:first-child {
  border-left-width: 1px;
}
table.alt tbody tr:first-child td {
  border-top-width: 1px;
}
table.alt thead {
  border-bottom: 0;
}
table.alt tfoot {
  border-top: 0;
}

/* Button */
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button,
.cmsi-showcase-list a.cmsi-module-showcase-back,
.cmsi-showcase-list a.cmsi-showcase-readmore,
.cmsi-showcase-list a.checkout,
.cmsi-showcase-list a.cmsi-module-blog-summary-read-more,
.cmsi-module-showcase-detail a.cmsi-module-showcase-back,
.cmsi-module-showcase-detail a.cmsi-showcase-readmore,
.cmsi-module-showcase-detail a.checkout,
.cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more,
.cmsi-post-summary a.cmsi-module-showcase-back,
.cmsi-post-summary a.cmsi-showcase-readmore,
.cmsi-post-summary a.checkout,
.cmsi-post-summary a.cmsi-module-blog-summary-read-more {
  padding: 15px 20px;
  border: solid 1px #FFF;
  margin-top: 1em;
  -moz-transition: border-color 0.3s linear;
  -webkit-transition: border-color 0.3s linear;
  -ms-transition: border-color 0.3s linear;
  transition: border-color 0.3s linear;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover,
.cmsi-showcase-list a.cmsi-module-showcase-back:hover,
.cmsi-showcase-list a.cmsi-showcase-readmore:hover,
.cmsi-showcase-list a.checkout:hover,
.cmsi-showcase-list a.cmsi-module-blog-summary-read-more:hover,
.cmsi-module-showcase-detail a.cmsi-module-showcase-back:hover,
.cmsi-module-showcase-detail a.cmsi-showcase-readmore:hover,
.cmsi-module-showcase-detail a.checkout:hover,
.cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more:hover,
.cmsi-post-summary a.cmsi-module-showcase-back:hover,
.cmsi-post-summary a.cmsi-showcase-readmore:hover,
.cmsi-post-summary a.checkout:hover,
.cmsi-post-summary a.cmsi-module-blog-summary-read-more:hover {
  border: solid 1px #E5B830;
}

/* Features */
.features {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  width: 100%;
}
.features li {
  padding: 4em 4em 2em 6em ;
  display: block;
  position: relative;
  text-align: left;
  width: 50%;
}
.features li:nth-child(1) {
  background-color: rgba(0, 0, 0, 0.035);
}
.features li:nth-child(2) {
  background-color: rgba(0, 0, 0, 0.07);
}
.features li:nth-child(3) {
  background-color: rgba(0, 0, 0, 0.105);
}
.features li:nth-child(4) {
  background-color: rgba(0, 0, 0, 0.14);
}
.features li:nth-child(5) {
  background-color: rgba(0, 0, 0, 0.175);
}
.features li:nth-child(6) {
  background-color: rgba(0, 0, 0, 0.21);
}
.features li:nth-child(7) {
  background-color: rgba(0, 0, 0, 0.245);
}
.features li:nth-child(8) {
  background-color: rgba(0, 0, 0, 0.28);
}
.features li:nth-child(9) {
  background-color: rgba(0, 0, 0, 0.315);
}
.features li:nth-child(10) {
  background-color: rgba(0, 0, 0, 0.35);
}
.features li:before {
  display: block;
  color: #93d7ff;
  position: absolute;
  left: 1.75em;
  top: 2.75em;
  font-size: 1.5em;
}
.features li:nth-child(1) {
  border-top-left-radius: 3px;
}
.features li:nth-child(2) {
  border-top-right-radius: 3px;
}
.features li:nth-last-child(1) {
  border-bottom-right-radius: 3px;
}
.features li:nth-last-child(2) {
  border-bottom-left-radius: 3px;
}
@media screen and (max-width: 980px) {
  .features li {
    padding: 3em 2em 1em 2em ;
    text-align: center;
  }
  .features li:before {
    left: 0;
    margin: 0 0 1em 0;
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 736px) {
  .features li {
    padding: 3em 0 1em 0 ;
    background-color: transparent !important;
    border-top: solid 2px #fff;
    width: 100%;
  }
  .features li:first-child {
    border-top: 0;
  }
}

/* Spotlight */
.spotlight {
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.spotlight .image {
  -moz-order: 1;
  -webkit-order: 1;
  -ms-order: 1;
  order: 1;
  border-radius: 0;
}
.spotlight .image img {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.spotlight .content {
  padding: 2em 4em 0.1em 4em ;
  -moz-order: 2;
  -webkit-order: 2;
  -ms-order: 2;
  order: 2;
  max-width: 48em;
  width: 60%;
}
.spotlight:nth-child(2n) {
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.spotlight:nth-child(1) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(1) h1, .spotlight:nth-child(1) h2, .spotlight:nth-child(1) h3, .spotlight:nth-child(1) h4, .spotlight:nth-child(1) h5, .spotlight:nth-child(1) strong, .spotlight:nth-child(1) a {
  color: #000;
}
.spotlight:nth-child(1) a.button, .spotlight:nth-child(1) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(1) a.cmsi-module-showcase-back, .spotlight:nth-child(1) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(1) a.cmsi-showcase-readmore, .spotlight:nth-child(1) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(1) a.checkout, .spotlight:nth-child(1) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(1) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(1) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(1) a.cmsi-module-showcase-back, .spotlight:nth-child(1) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(1) a.cmsi-showcase-readmore, .spotlight:nth-child(1) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(1) a.checkout, .spotlight:nth-child(1) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(1) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(1) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(1) a.cmsi-module-showcase-back, .spotlight:nth-child(1) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(1) a.cmsi-showcase-readmore, .spotlight:nth-child(1) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(1) a.checkout, .spotlight:nth-child(1) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(1) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(2) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(2) h1, .spotlight:nth-child(2) h2, .spotlight:nth-child(2) h3, .spotlight:nth-child(2) h4, .spotlight:nth-child(2) h5, .spotlight:nth-child(2) strong, .spotlight:nth-child(2) a {
  color: #000;
}
.spotlight:nth-child(2) a.button, .spotlight:nth-child(2) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(2) a.cmsi-module-showcase-back, .spotlight:nth-child(2) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(2) a.cmsi-showcase-readmore, .spotlight:nth-child(2) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(2) a.checkout, .spotlight:nth-child(2) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(2) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(2) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(2) a.cmsi-module-showcase-back, .spotlight:nth-child(2) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(2) a.cmsi-showcase-readmore, .spotlight:nth-child(2) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(2) a.checkout, .spotlight:nth-child(2) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(2) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(2) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(2) a.cmsi-module-showcase-back, .spotlight:nth-child(2) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(2) a.cmsi-showcase-readmore, .spotlight:nth-child(2) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(2) a.checkout, .spotlight:nth-child(2) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(2) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(3) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(3) h1, .spotlight:nth-child(3) h2, .spotlight:nth-child(3) h3, .spotlight:nth-child(3) h4, .spotlight:nth-child(3) h5, .spotlight:nth-child(3) strong, .spotlight:nth-child(3) a {
  color: #000;
}
.spotlight:nth-child(3) a.button, .spotlight:nth-child(3) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(3) a.cmsi-module-showcase-back, .spotlight:nth-child(3) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(3) a.cmsi-showcase-readmore, .spotlight:nth-child(3) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(3) a.checkout, .spotlight:nth-child(3) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(3) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(3) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(3) a.cmsi-module-showcase-back, .spotlight:nth-child(3) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(3) a.cmsi-showcase-readmore, .spotlight:nth-child(3) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(3) a.checkout, .spotlight:nth-child(3) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(3) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(3) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(3) a.cmsi-module-showcase-back, .spotlight:nth-child(3) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(3) a.cmsi-showcase-readmore, .spotlight:nth-child(3) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(3) a.checkout, .spotlight:nth-child(3) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(3) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(4) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(4) h1, .spotlight:nth-child(4) h2, .spotlight:nth-child(4) h3, .spotlight:nth-child(4) h4, .spotlight:nth-child(4) h5, .spotlight:nth-child(4) strong, .spotlight:nth-child(4) a {
  color: #000;
}
.spotlight:nth-child(4) a.button, .spotlight:nth-child(4) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(4) a.cmsi-module-showcase-back, .spotlight:nth-child(4) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(4) a.cmsi-showcase-readmore, .spotlight:nth-child(4) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(4) a.checkout, .spotlight:nth-child(4) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(4) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(4) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(4) a.cmsi-module-showcase-back, .spotlight:nth-child(4) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(4) a.cmsi-showcase-readmore, .spotlight:nth-child(4) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(4) a.checkout, .spotlight:nth-child(4) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(4) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(4) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(4) a.cmsi-module-showcase-back, .spotlight:nth-child(4) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(4) a.cmsi-showcase-readmore, .spotlight:nth-child(4) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(4) a.checkout, .spotlight:nth-child(4) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(4) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(5) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(5) h1, .spotlight:nth-child(5) h2, .spotlight:nth-child(5) h3, .spotlight:nth-child(5) h4, .spotlight:nth-child(5) h5, .spotlight:nth-child(5) strong, .spotlight:nth-child(5) a {
  color: #000;
}
.spotlight:nth-child(5) a.button, .spotlight:nth-child(5) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(5) a.cmsi-module-showcase-back, .spotlight:nth-child(5) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(5) a.cmsi-showcase-readmore, .spotlight:nth-child(5) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(5) a.checkout, .spotlight:nth-child(5) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(5) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(5) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(5) a.cmsi-module-showcase-back, .spotlight:nth-child(5) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(5) a.cmsi-showcase-readmore, .spotlight:nth-child(5) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(5) a.checkout, .spotlight:nth-child(5) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(5) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(5) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(5) a.cmsi-module-showcase-back, .spotlight:nth-child(5) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(5) a.cmsi-showcase-readmore, .spotlight:nth-child(5) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(5) a.checkout, .spotlight:nth-child(5) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(5) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(6) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(6) h1, .spotlight:nth-child(6) h2, .spotlight:nth-child(6) h3, .spotlight:nth-child(6) h4, .spotlight:nth-child(6) h5, .spotlight:nth-child(6) strong, .spotlight:nth-child(6) a {
  color: #000;
}
.spotlight:nth-child(6) a.button, .spotlight:nth-child(6) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(6) a.cmsi-module-showcase-back, .spotlight:nth-child(6) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(6) a.cmsi-showcase-readmore, .spotlight:nth-child(6) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(6) a.checkout, .spotlight:nth-child(6) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(6) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(6) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(6) a.cmsi-module-showcase-back, .spotlight:nth-child(6) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(6) a.cmsi-showcase-readmore, .spotlight:nth-child(6) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(6) a.checkout, .spotlight:nth-child(6) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(6) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(6) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(6) a.cmsi-module-showcase-back, .spotlight:nth-child(6) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(6) a.cmsi-showcase-readmore, .spotlight:nth-child(6) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(6) a.checkout, .spotlight:nth-child(6) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(6) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(7) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(7) h1, .spotlight:nth-child(7) h2, .spotlight:nth-child(7) h3, .spotlight:nth-child(7) h4, .spotlight:nth-child(7) h5, .spotlight:nth-child(7) strong, .spotlight:nth-child(7) a {
  color: #000;
}
.spotlight:nth-child(7) a.button, .spotlight:nth-child(7) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(7) a.cmsi-module-showcase-back, .spotlight:nth-child(7) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(7) a.cmsi-showcase-readmore, .spotlight:nth-child(7) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(7) a.checkout, .spotlight:nth-child(7) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(7) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(7) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(7) a.cmsi-module-showcase-back, .spotlight:nth-child(7) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(7) a.cmsi-showcase-readmore, .spotlight:nth-child(7) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(7) a.checkout, .spotlight:nth-child(7) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(7) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(7) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(7) a.cmsi-module-showcase-back, .spotlight:nth-child(7) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(7) a.cmsi-showcase-readmore, .spotlight:nth-child(7) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(7) a.checkout, .spotlight:nth-child(7) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(7) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(8) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(8) h1, .spotlight:nth-child(8) h2, .spotlight:nth-child(8) h3, .spotlight:nth-child(8) h4, .spotlight:nth-child(8) h5, .spotlight:nth-child(8) strong, .spotlight:nth-child(8) a {
  color: #000;
}
.spotlight:nth-child(8) a.button, .spotlight:nth-child(8) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(8) a.cmsi-module-showcase-back, .spotlight:nth-child(8) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(8) a.cmsi-showcase-readmore, .spotlight:nth-child(8) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(8) a.checkout, .spotlight:nth-child(8) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(8) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(8) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(8) a.cmsi-module-showcase-back, .spotlight:nth-child(8) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(8) a.cmsi-showcase-readmore, .spotlight:nth-child(8) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(8) a.checkout, .spotlight:nth-child(8) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(8) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(8) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(8) a.cmsi-module-showcase-back, .spotlight:nth-child(8) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(8) a.cmsi-showcase-readmore, .spotlight:nth-child(8) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(8) a.checkout, .spotlight:nth-child(8) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(8) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(9) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(9) h1, .spotlight:nth-child(9) h2, .spotlight:nth-child(9) h3, .spotlight:nth-child(9) h4, .spotlight:nth-child(9) h5, .spotlight:nth-child(9) strong, .spotlight:nth-child(9) a {
  color: #000;
}
.spotlight:nth-child(9) a.button, .spotlight:nth-child(9) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(9) a.cmsi-module-showcase-back, .spotlight:nth-child(9) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(9) a.cmsi-showcase-readmore, .spotlight:nth-child(9) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(9) a.checkout, .spotlight:nth-child(9) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(9) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(9) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(9) a.cmsi-module-showcase-back, .spotlight:nth-child(9) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(9) a.cmsi-showcase-readmore, .spotlight:nth-child(9) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(9) a.checkout, .spotlight:nth-child(9) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(9) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(9) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(9) a.cmsi-module-showcase-back, .spotlight:nth-child(9) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(9) a.cmsi-showcase-readmore, .spotlight:nth-child(9) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(9) a.checkout, .spotlight:nth-child(9) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(9) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight:nth-child(10) {
  background-color: #e5b830;
  color: #000;
}
.spotlight:nth-child(10) h1, .spotlight:nth-child(10) h2, .spotlight:nth-child(10) h3, .spotlight:nth-child(10) h4, .spotlight:nth-child(10) h5, .spotlight:nth-child(10) strong, .spotlight:nth-child(10) a {
  color: #000;
}
.spotlight:nth-child(10) a.button, .spotlight:nth-child(10) .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight:nth-child(10) a.cmsi-module-showcase-back, .spotlight:nth-child(10) .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight:nth-child(10) a.cmsi-showcase-readmore, .spotlight:nth-child(10) .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight:nth-child(10) a.checkout, .spotlight:nth-child(10) .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight:nth-child(10) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(10) .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight:nth-child(10) a.cmsi-module-showcase-back, .spotlight:nth-child(10) .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight:nth-child(10) a.cmsi-showcase-readmore, .spotlight:nth-child(10) .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight:nth-child(10) a.checkout, .spotlight:nth-child(10) .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight:nth-child(10) a.cmsi-module-blog-summary-read-more, .spotlight:nth-child(10) .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight:nth-child(10) a.cmsi-module-showcase-back, .spotlight:nth-child(10) .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight:nth-child(10) a.cmsi-showcase-readmore, .spotlight:nth-child(10) .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight:nth-child(10) a.checkout, .spotlight:nth-child(10) .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight:nth-child(10) a.cmsi-module-blog-summary-read-more {
  border: 1px solid #000;
}
.spotlight.focus {
  background-color: #560004;
  color: #FFF;
}
.spotlight.focus h1, .spotlight.focus h2, .spotlight.focus h3, .spotlight.focus h4, .spotlight.focus h5, .spotlight.focus strong, .spotlight.focus a {
  color: #FFF;
}
.spotlight.focus a.button, .spotlight.focus .cmsi-showcase-list a.cmsi-module-showcase-back, .cmsi-showcase-list .spotlight.focus a.cmsi-module-showcase-back, .spotlight.focus .cmsi-showcase-list a.cmsi-showcase-readmore, .cmsi-showcase-list .spotlight.focus a.cmsi-showcase-readmore, .spotlight.focus .cmsi-showcase-list a.checkout, .cmsi-showcase-list .spotlight.focus a.checkout, .spotlight.focus .cmsi-showcase-list a.cmsi-module-blog-summary-read-more, .cmsi-showcase-list .spotlight.focus a.cmsi-module-blog-summary-read-more, .spotlight.focus .cmsi-module-showcase-detail a.cmsi-module-showcase-back, .cmsi-module-showcase-detail .spotlight.focus a.cmsi-module-showcase-back, .spotlight.focus .cmsi-module-showcase-detail a.cmsi-showcase-readmore, .cmsi-module-showcase-detail .spotlight.focus a.cmsi-showcase-readmore, .spotlight.focus .cmsi-module-showcase-detail a.checkout, .cmsi-module-showcase-detail .spotlight.focus a.checkout, .spotlight.focus .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more, .cmsi-module-showcase-detail .spotlight.focus a.cmsi-module-blog-summary-read-more, .spotlight.focus .cmsi-post-summary a.cmsi-module-showcase-back, .cmsi-post-summary .spotlight.focus a.cmsi-module-showcase-back, .spotlight.focus .cmsi-post-summary a.cmsi-showcase-readmore, .cmsi-post-summary .spotlight.focus a.cmsi-showcase-readmore, .spotlight.focus .cmsi-post-summary a.checkout, .cmsi-post-summary .spotlight.focus a.checkout, .spotlight.focus .cmsi-post-summary a.cmsi-module-blog-summary-read-more, .cmsi-post-summary .spotlight.focus a.cmsi-module-blog-summary-read-more {
  border: 1px solid #FFF;
}
@media screen and (max-width: 1280px) {
  .spotlight .image {
    width: 45%;
  }
  .spotlight .content {
    width: 55%;
  }
}
@media screen and (max-width: 980px) {
  .spotlight {
    display: block;
  }
  .spotlight br {
    display: none;
  }
  .spotlight .image {
    width: 100%;
  }
  .spotlight .content {
    padding: 4em 3em 2em 3em ;
    max-width: none;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  .spotlight .content {
    padding: 3em 2em 1em 2em ;
  }
}

/* Wrapper */
.wrapper {
  padding: 6em 0 4em 0 ;
}
.wrapper > .inner {
  width: 60em;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .wrapper > .inner {
    width: 90%;
  }
}
@media screen and (max-width: 980px) {
  .wrapper > .inner {
    width: 100%;
  }
}
.wrapper.alt {
  padding: 0;
}
.wrapper.style1 {
  background-color: #560004;
  color: #d5bfc0;
}
.wrapper.style1 strong, .wrapper.style1 b {
  color: #ffffff;
}
.wrapper.style1 h2, .wrapper.style1 h3, .wrapper.style1 h4, .wrapper.style1 h5, .wrapper.style1 h6 {
  color: #ffffff;
}
.wrapper.style1 hr {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 blockquote {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 code {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style1 header p {
  color: #bb999b;
}
.wrapper.style1 header.major h2, .wrapper.style1 header.major h3, .wrapper.style1 header.major h4, .wrapper.style1 header.major h5, .wrapper.style1 header.major h6 {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 header.major p {
  color: #d5bfc0;
}
.wrapper.style1 label, .wrapper.style1 form input, form .wrapper.style1 input, .wrapper.style1 form textarea, form .wrapper.style1 textarea {
  color: #ffffff;
}
.wrapper.style1 input[type="text"],
.wrapper.style1 input[type="password"],
.wrapper.style1 input[type="email"],
.wrapper.style1 select,
.wrapper.style1 textarea {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style1 .select-wrapper:before {
  color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 input[type="checkbox"] + label, .wrapper.style1 form input[type="checkbox"] + input, form .wrapper.style1 input[type="checkbox"] + input, .wrapper.style1 form input[type="checkbox"] + textarea, form .wrapper.style1 input[type="checkbox"] + textarea,
.wrapper.style1 input[type="radio"] + label,
.wrapper.style1 form input[type="radio"] + input,
form .wrapper.style1 input[type="radio"] + input,
.wrapper.style1 form input[type="radio"] + textarea,
form .wrapper.style1 input[type="radio"] + textarea {
  color: #d5bfc0;
}
.wrapper.style1 input[type="checkbox"] + label:before, .wrapper.style1 form input[type="checkbox"] + input:before, form .wrapper.style1 input[type="checkbox"] + input:before, .wrapper.style1 form input[type="checkbox"] + textarea:before, form .wrapper.style1 input[type="checkbox"] + textarea:before,
.wrapper.style1 input[type="radio"] + label:before,
.wrapper.style1 form input[type="radio"] + input:before,
form .wrapper.style1 input[type="radio"] + input:before,
.wrapper.style1 form input[type="radio"] + textarea:before,
form .wrapper.style1 input[type="radio"] + textarea:before {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style1 input[type="checkbox"]:checked + label:before, .wrapper.style1 form input[type="checkbox"]:checked + input:before, form .wrapper.style1 input[type="checkbox"]:checked + input:before, .wrapper.style1 form input[type="checkbox"]:checked + textarea:before, form .wrapper.style1 input[type="checkbox"]:checked + textarea:before,
.wrapper.style1 input[type="radio"]:checked + label:before,
.wrapper.style1 form input[type="radio"]:checked + input:before,
form .wrapper.style1 input[type="radio"]:checked + input:before,
.wrapper.style1 form input[type="radio"]:checked + textarea:before,
form .wrapper.style1 input[type="radio"]:checked + textarea:before {
  background: #ffffff;
  color: #560004;
}
.wrapper.style1 ::-webkit-input-placeholder {
  color: #bb999b !important;
}
.wrapper.style1 :-moz-placeholder {
  color: #bb999b !important;
}
.wrapper.style1 ::-moz-placeholder {
  color: #bb999b !important;
}
.wrapper.style1 :-ms-input-placeholder {
  color: #bb999b !important;
}
.wrapper.style1 .formerize-placeholder {
  color: #bb999b !important;
}
.wrapper.style1 .icon.major {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 ul.alt li {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 table tbody tr {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 table th {
  color: #ffffff;
}
.wrapper.style1 table thead {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 table tfoot {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 table.alt tbody tr td {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style1 input[type="submit"],
.wrapper.style1 input[type="reset"],
.wrapper.style1 input[type="button"],
.wrapper.style1 button,
.wrapper.style1 .button,
.wrapper.style1 .cmsi-showcase-list a.cmsi-module-showcase-back,
.cmsi-showcase-list .wrapper.style1 a.cmsi-module-showcase-back,
.wrapper.style1 .cmsi-showcase-list a.cmsi-showcase-readmore,
.cmsi-showcase-list .wrapper.style1 a.cmsi-showcase-readmore,
.wrapper.style1 .cmsi-showcase-list a.checkout,
.cmsi-showcase-list .wrapper.style1 a.checkout,
.wrapper.style1 .cmsi-showcase-list a.cmsi-module-blog-summary-read-more,
.cmsi-showcase-list .wrapper.style1 a.cmsi-module-blog-summary-read-more,
.wrapper.style1 .cmsi-module-showcase-detail a.cmsi-module-showcase-back,
.cmsi-module-showcase-detail .wrapper.style1 a.cmsi-module-showcase-back,
.wrapper.style1 .cmsi-module-showcase-detail a.cmsi-showcase-readmore,
.cmsi-module-showcase-detail .wrapper.style1 a.cmsi-showcase-readmore,
.wrapper.style1 .cmsi-module-showcase-detail a.checkout,
.cmsi-module-showcase-detail .wrapper.style1 a.checkout,
.wrapper.style1 .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more,
.cmsi-module-showcase-detail .wrapper.style1 a.cmsi-module-blog-summary-read-more,
.wrapper.style1 .cmsi-post-summary a.cmsi-module-showcase-back,
.cmsi-post-summary .wrapper.style1 a.cmsi-module-showcase-back,
.wrapper.style1 .cmsi-post-summary a.cmsi-showcase-readmore,
.cmsi-post-summary .wrapper.style1 a.cmsi-showcase-readmore,
.wrapper.style1 .cmsi-post-summary a.checkout,
.cmsi-post-summary .wrapper.style1 a.checkout,
.wrapper.style1 .cmsi-post-summary a.cmsi-module-blog-summary-read-more,
.cmsi-post-summary .wrapper.style1 a.cmsi-module-blog-summary-read-more {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
  color: #ffffff;
  background: none;
}
.wrapper.style1 input[type="submit"].pricing,
.wrapper.style1 input[type="reset"].pricing,
.wrapper.style1 input[type="button"].pricing,
.wrapper.style1 button.pricing,
.wrapper.style1 .button.pricing,
.wrapper.style1 .cmsi-showcase-list a.pricing.cmsi-module-showcase-back,
.cmsi-showcase-list .wrapper.style1 a.pricing.cmsi-module-showcase-back,
.wrapper.style1 .cmsi-showcase-list a.pricing.cmsi-showcase-readmore,
.cmsi-showcase-list .wrapper.style1 a.pricing.cmsi-showcase-readmore,
.wrapper.style1 .cmsi-showcase-list a.pricing.checkout,
.cmsi-showcase-list .wrapper.style1 a.pricing.checkout,
.wrapper.style1 .cmsi-showcase-list a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-showcase-list .wrapper.style1 a.pricing.cmsi-module-blog-summary-read-more,
.wrapper.style1 .cmsi-module-showcase-detail a.pricing.cmsi-module-showcase-back,
.cmsi-module-showcase-detail .wrapper.style1 a.pricing.cmsi-module-showcase-back,
.wrapper.style1 .cmsi-module-showcase-detail a.pricing.cmsi-showcase-readmore,
.cmsi-module-showcase-detail .wrapper.style1 a.pricing.cmsi-showcase-readmore,
.wrapper.style1 .cmsi-module-showcase-detail a.pricing.checkout,
.cmsi-module-showcase-detail .wrapper.style1 a.pricing.checkout,
.wrapper.style1 .cmsi-module-showcase-detail a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-module-showcase-detail .wrapper.style1 a.pricing.cmsi-module-blog-summary-read-more,
.wrapper.style1 .cmsi-post-summary a.pricing.cmsi-module-showcase-back,
.cmsi-post-summary .wrapper.style1 a.pricing.cmsi-module-showcase-back,
.wrapper.style1 .cmsi-post-summary a.pricing.cmsi-showcase-readmore,
.cmsi-post-summary .wrapper.style1 a.pricing.cmsi-showcase-readmore,
.wrapper.style1 .cmsi-post-summary a.pricing.checkout,
.cmsi-post-summary .wrapper.style1 a.pricing.checkout,
.wrapper.style1 .cmsi-post-summary a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-post-summary .wrapper.style1 a.pricing.cmsi-module-blog-summary-read-more {
  font-family: "vtc_letterer_proregular", "sans-serif";
  border: none;
  border-bottom: dashed 1px #FFF;
  padding-bottom: 15px;
}
@media screen and (max-width: 736px) {
  .wrapper.style1 .features li {
    border-top-color: rgba(0, 0, 0, 0.125);
  }
}
.wrapper.style1 a {
  border: none !important;
}
.wrapper.style2 {
  background-color: #000;
}
.wrapper.style3 {
  background-color: #560004;
  color: #d5bfc0;
}
.wrapper.style3 strong, .wrapper.style3 b {
  color: #ffffff;
}
.wrapper.style3 h2, .wrapper.style3 h3, .wrapper.style3 h4, .wrapper.style3 h5, .wrapper.style3 h6 {
  color: #ffffff;
}
.wrapper.style3 hr {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 blockquote {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 code {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style3 header p {
  color: #bb999b;
}
.wrapper.style3 header.major h2, .wrapper.style3 header.major h3, .wrapper.style3 header.major h4, .wrapper.style3 header.major h5, .wrapper.style3 header.major h6 {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 header.major p {
  color: #d5bfc0;
}
.wrapper.style3 label, .wrapper.style3 form input, form .wrapper.style3 input, .wrapper.style3 form textarea, form .wrapper.style3 textarea {
  color: #ffffff;
}
.wrapper.style3 input[type="text"],
.wrapper.style3 input[type="password"],
.wrapper.style3 input[type="email"],
.wrapper.style3 select,
.wrapper.style3 textarea {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style3 .select-wrapper:before {
  color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 input[type="checkbox"] + label, .wrapper.style3 form input[type="checkbox"] + input, form .wrapper.style3 input[type="checkbox"] + input, .wrapper.style3 form input[type="checkbox"] + textarea, form .wrapper.style3 input[type="checkbox"] + textarea,
.wrapper.style3 input[type="radio"] + label,
.wrapper.style3 form input[type="radio"] + input,
form .wrapper.style3 input[type="radio"] + input,
.wrapper.style3 form input[type="radio"] + textarea,
form .wrapper.style3 input[type="radio"] + textarea {
  color: #d5bfc0;
}
.wrapper.style3 input[type="checkbox"] + label:before, .wrapper.style3 form input[type="checkbox"] + input:before, form .wrapper.style3 input[type="checkbox"] + input:before, .wrapper.style3 form input[type="checkbox"] + textarea:before, form .wrapper.style3 input[type="checkbox"] + textarea:before,
.wrapper.style3 input[type="radio"] + label:before,
.wrapper.style3 form input[type="radio"] + input:before,
form .wrapper.style3 input[type="radio"] + input:before,
.wrapper.style3 form input[type="radio"] + textarea:before,
form .wrapper.style3 input[type="radio"] + textarea:before {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style3 input[type="checkbox"]:checked + label:before, .wrapper.style3 form input[type="checkbox"]:checked + input:before, form .wrapper.style3 input[type="checkbox"]:checked + input:before, .wrapper.style3 form input[type="checkbox"]:checked + textarea:before, form .wrapper.style3 input[type="checkbox"]:checked + textarea:before,
.wrapper.style3 input[type="radio"]:checked + label:before,
.wrapper.style3 form input[type="radio"]:checked + input:before,
form .wrapper.style3 input[type="radio"]:checked + input:before,
.wrapper.style3 form input[type="radio"]:checked + textarea:before,
form .wrapper.style3 input[type="radio"]:checked + textarea:before {
  background: #ffffff;
  color: #560004;
}
.wrapper.style3 ::-webkit-input-placeholder {
  color: #bb999b !important;
}
.wrapper.style3 :-moz-placeholder {
  color: #bb999b !important;
}
.wrapper.style3 ::-moz-placeholder {
  color: #bb999b !important;
}
.wrapper.style3 :-ms-input-placeholder {
  color: #bb999b !important;
}
.wrapper.style3 .formerize-placeholder {
  color: #bb999b !important;
}
.wrapper.style3 .icon.major {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 ul.alt li {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 table tbody tr {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 table th {
  color: #ffffff;
}
.wrapper.style3 table thead {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 table tfoot {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 table.alt tbody tr td {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style3 input[type="submit"],
.wrapper.style3 input[type="reset"],
.wrapper.style3 input[type="button"],
.wrapper.style3 button,
.wrapper.style3 .button,
.wrapper.style3 .cmsi-showcase-list a.cmsi-module-showcase-back,
.cmsi-showcase-list .wrapper.style3 a.cmsi-module-showcase-back,
.wrapper.style3 .cmsi-showcase-list a.cmsi-showcase-readmore,
.cmsi-showcase-list .wrapper.style3 a.cmsi-showcase-readmore,
.wrapper.style3 .cmsi-showcase-list a.checkout,
.cmsi-showcase-list .wrapper.style3 a.checkout,
.wrapper.style3 .cmsi-showcase-list a.cmsi-module-blog-summary-read-more,
.cmsi-showcase-list .wrapper.style3 a.cmsi-module-blog-summary-read-more,
.wrapper.style3 .cmsi-module-showcase-detail a.cmsi-module-showcase-back,
.cmsi-module-showcase-detail .wrapper.style3 a.cmsi-module-showcase-back,
.wrapper.style3 .cmsi-module-showcase-detail a.cmsi-showcase-readmore,
.cmsi-module-showcase-detail .wrapper.style3 a.cmsi-showcase-readmore,
.wrapper.style3 .cmsi-module-showcase-detail a.checkout,
.cmsi-module-showcase-detail .wrapper.style3 a.checkout,
.wrapper.style3 .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more,
.cmsi-module-showcase-detail .wrapper.style3 a.cmsi-module-blog-summary-read-more,
.wrapper.style3 .cmsi-post-summary a.cmsi-module-showcase-back,
.cmsi-post-summary .wrapper.style3 a.cmsi-module-showcase-back,
.wrapper.style3 .cmsi-post-summary a.cmsi-showcase-readmore,
.cmsi-post-summary .wrapper.style3 a.cmsi-showcase-readmore,
.wrapper.style3 .cmsi-post-summary a.checkout,
.cmsi-post-summary .wrapper.style3 a.checkout,
.wrapper.style3 .cmsi-post-summary a.cmsi-module-blog-summary-read-more,
.cmsi-post-summary .wrapper.style3 a.cmsi-module-blog-summary-read-more {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
  color: #ffffff;
  background: none;
}
.wrapper.style3 input[type="submit"].pricing,
.wrapper.style3 input[type="reset"].pricing,
.wrapper.style3 input[type="button"].pricing,
.wrapper.style3 button.pricing,
.wrapper.style3 .button.pricing,
.wrapper.style3 .cmsi-showcase-list a.pricing.cmsi-module-showcase-back,
.cmsi-showcase-list .wrapper.style3 a.pricing.cmsi-module-showcase-back,
.wrapper.style3 .cmsi-showcase-list a.pricing.cmsi-showcase-readmore,
.cmsi-showcase-list .wrapper.style3 a.pricing.cmsi-showcase-readmore,
.wrapper.style3 .cmsi-showcase-list a.pricing.checkout,
.cmsi-showcase-list .wrapper.style3 a.pricing.checkout,
.wrapper.style3 .cmsi-showcase-list a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-showcase-list .wrapper.style3 a.pricing.cmsi-module-blog-summary-read-more,
.wrapper.style3 .cmsi-module-showcase-detail a.pricing.cmsi-module-showcase-back,
.cmsi-module-showcase-detail .wrapper.style3 a.pricing.cmsi-module-showcase-back,
.wrapper.style3 .cmsi-module-showcase-detail a.pricing.cmsi-showcase-readmore,
.cmsi-module-showcase-detail .wrapper.style3 a.pricing.cmsi-showcase-readmore,
.wrapper.style3 .cmsi-module-showcase-detail a.pricing.checkout,
.cmsi-module-showcase-detail .wrapper.style3 a.pricing.checkout,
.wrapper.style3 .cmsi-module-showcase-detail a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-module-showcase-detail .wrapper.style3 a.pricing.cmsi-module-blog-summary-read-more,
.wrapper.style3 .cmsi-post-summary a.pricing.cmsi-module-showcase-back,
.cmsi-post-summary .wrapper.style3 a.pricing.cmsi-module-showcase-back,
.wrapper.style3 .cmsi-post-summary a.pricing.cmsi-showcase-readmore,
.cmsi-post-summary .wrapper.style3 a.pricing.cmsi-showcase-readmore,
.wrapper.style3 .cmsi-post-summary a.pricing.checkout,
.cmsi-post-summary .wrapper.style3 a.pricing.checkout,
.wrapper.style3 .cmsi-post-summary a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-post-summary .wrapper.style3 a.pricing.cmsi-module-blog-summary-read-more {
  font-family: "vtc_letterer_proregular", "sans-serif";
  border: none;
  border-bottom: dashed 1px #FFF;
  padding-bottom: 15px;
}
@media screen and (max-width: 736px) {
  .wrapper.style3 .features li {
    border-top-color: rgba(0, 0, 0, 0.125);
  }
}
.wrapper.style4 {
  background-color: transparent;
}
.wrapper.style5 {
  background-color: #560004;
  color: #d5bfc0;
}
.wrapper.style5 strong, .wrapper.style5 b {
  color: #ffffff;
}
.wrapper.style5 h2, .wrapper.style5 h3, .wrapper.style5 h4, .wrapper.style5 h5, .wrapper.style5 h6 {
  color: #ffffff;
}
.wrapper.style5 hr {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 blockquote {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 code {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style5 header p {
  color: #bb999b;
}
.wrapper.style5 header.major h2, .wrapper.style5 header.major h3, .wrapper.style5 header.major h4, .wrapper.style5 header.major h5, .wrapper.style5 header.major h6 {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 header.major p {
  color: #d5bfc0;
}
.wrapper.style5 label, .wrapper.style5 form input, form .wrapper.style5 input, .wrapper.style5 form textarea, form .wrapper.style5 textarea {
  color: #ffffff;
}
.wrapper.style5 input[type="text"],
.wrapper.style5 input[type="password"],
.wrapper.style5 input[type="email"],
.wrapper.style5 select,
.wrapper.style5 textarea {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style5 .select-wrapper:before {
  color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 input[type="checkbox"] + label, .wrapper.style5 form input[type="checkbox"] + input, form .wrapper.style5 input[type="checkbox"] + input, .wrapper.style5 form input[type="checkbox"] + textarea, form .wrapper.style5 input[type="checkbox"] + textarea,
.wrapper.style5 input[type="radio"] + label,
.wrapper.style5 form input[type="radio"] + input,
form .wrapper.style5 input[type="radio"] + input,
.wrapper.style5 form input[type="radio"] + textarea,
form .wrapper.style5 input[type="radio"] + textarea {
  color: #d5bfc0;
}
.wrapper.style5 input[type="checkbox"] + label:before, .wrapper.style5 form input[type="checkbox"] + input:before, form .wrapper.style5 input[type="checkbox"] + input:before, .wrapper.style5 form input[type="checkbox"] + textarea:before, form .wrapper.style5 input[type="checkbox"] + textarea:before,
.wrapper.style5 input[type="radio"] + label:before,
.wrapper.style5 form input[type="radio"] + input:before,
form .wrapper.style5 input[type="radio"] + input:before,
.wrapper.style5 form input[type="radio"] + textarea:before,
form .wrapper.style5 input[type="radio"] + textarea:before {
  background: rgba(255, 255, 255, 0.075);
}
.wrapper.style5 input[type="checkbox"]:checked + label:before, .wrapper.style5 form input[type="checkbox"]:checked + input:before, form .wrapper.style5 input[type="checkbox"]:checked + input:before, .wrapper.style5 form input[type="checkbox"]:checked + textarea:before, form .wrapper.style5 input[type="checkbox"]:checked + textarea:before,
.wrapper.style5 input[type="radio"]:checked + label:before,
.wrapper.style5 form input[type="radio"]:checked + input:before,
form .wrapper.style5 input[type="radio"]:checked + input:before,
.wrapper.style5 form input[type="radio"]:checked + textarea:before,
form .wrapper.style5 input[type="radio"]:checked + textarea:before {
  background: #ffffff;
  color: #560004;
}
.wrapper.style5 ::-webkit-input-placeholder {
  color: #bb999b !important;
}
.wrapper.style5 :-moz-placeholder {
  color: #bb999b !important;
}
.wrapper.style5 ::-moz-placeholder {
  color: #bb999b !important;
}
.wrapper.style5 :-ms-input-placeholder {
  color: #bb999b !important;
}
.wrapper.style5 .formerize-placeholder {
  color: #bb999b !important;
}
.wrapper.style5 .icon.major {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 ul.alt li {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 table tbody tr {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 table th {
  color: #ffffff;
}
.wrapper.style5 table thead {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 table tfoot {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 table.alt tbody tr td {
  border-color: rgba(0, 0, 0, 0.125);
}
.wrapper.style5 input[type="submit"],
.wrapper.style5 input[type="reset"],
.wrapper.style5 input[type="button"],
.wrapper.style5 button,
.wrapper.style5 .button,
.wrapper.style5 .cmsi-showcase-list a.cmsi-module-showcase-back,
.cmsi-showcase-list .wrapper.style5 a.cmsi-module-showcase-back,
.wrapper.style5 .cmsi-showcase-list a.cmsi-showcase-readmore,
.cmsi-showcase-list .wrapper.style5 a.cmsi-showcase-readmore,
.wrapper.style5 .cmsi-showcase-list a.checkout,
.cmsi-showcase-list .wrapper.style5 a.checkout,
.wrapper.style5 .cmsi-showcase-list a.cmsi-module-blog-summary-read-more,
.cmsi-showcase-list .wrapper.style5 a.cmsi-module-blog-summary-read-more,
.wrapper.style5 .cmsi-module-showcase-detail a.cmsi-module-showcase-back,
.cmsi-module-showcase-detail .wrapper.style5 a.cmsi-module-showcase-back,
.wrapper.style5 .cmsi-module-showcase-detail a.cmsi-showcase-readmore,
.cmsi-module-showcase-detail .wrapper.style5 a.cmsi-showcase-readmore,
.wrapper.style5 .cmsi-module-showcase-detail a.checkout,
.cmsi-module-showcase-detail .wrapper.style5 a.checkout,
.wrapper.style5 .cmsi-module-showcase-detail a.cmsi-module-blog-summary-read-more,
.cmsi-module-showcase-detail .wrapper.style5 a.cmsi-module-blog-summary-read-more,
.wrapper.style5 .cmsi-post-summary a.cmsi-module-showcase-back,
.cmsi-post-summary .wrapper.style5 a.cmsi-module-showcase-back,
.wrapper.style5 .cmsi-post-summary a.cmsi-showcase-readmore,
.cmsi-post-summary .wrapper.style5 a.cmsi-showcase-readmore,
.wrapper.style5 .cmsi-post-summary a.checkout,
.cmsi-post-summary .wrapper.style5 a.checkout,
.wrapper.style5 .cmsi-post-summary a.cmsi-module-blog-summary-read-more,
.cmsi-post-summary .wrapper.style5 a.cmsi-module-blog-summary-read-more {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
  color: #ffffff;
  background: none;
}
.wrapper.style5 input[type="submit"].pricing,
.wrapper.style5 input[type="reset"].pricing,
.wrapper.style5 input[type="button"].pricing,
.wrapper.style5 button.pricing,
.wrapper.style5 .button.pricing,
.wrapper.style5 .cmsi-showcase-list a.pricing.cmsi-module-showcase-back,
.cmsi-showcase-list .wrapper.style5 a.pricing.cmsi-module-showcase-back,
.wrapper.style5 .cmsi-showcase-list a.pricing.cmsi-showcase-readmore,
.cmsi-showcase-list .wrapper.style5 a.pricing.cmsi-showcase-readmore,
.wrapper.style5 .cmsi-showcase-list a.pricing.checkout,
.cmsi-showcase-list .wrapper.style5 a.pricing.checkout,
.wrapper.style5 .cmsi-showcase-list a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-showcase-list .wrapper.style5 a.pricing.cmsi-module-blog-summary-read-more,
.wrapper.style5 .cmsi-module-showcase-detail a.pricing.cmsi-module-showcase-back,
.cmsi-module-showcase-detail .wrapper.style5 a.pricing.cmsi-module-showcase-back,
.wrapper.style5 .cmsi-module-showcase-detail a.pricing.cmsi-showcase-readmore,
.cmsi-module-showcase-detail .wrapper.style5 a.pricing.cmsi-showcase-readmore,
.wrapper.style5 .cmsi-module-showcase-detail a.pricing.checkout,
.cmsi-module-showcase-detail .wrapper.style5 a.pricing.checkout,
.wrapper.style5 .cmsi-module-showcase-detail a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-module-showcase-detail .wrapper.style5 a.pricing.cmsi-module-blog-summary-read-more,
.wrapper.style5 .cmsi-post-summary a.pricing.cmsi-module-showcase-back,
.cmsi-post-summary .wrapper.style5 a.pricing.cmsi-module-showcase-back,
.wrapper.style5 .cmsi-post-summary a.pricing.cmsi-showcase-readmore,
.cmsi-post-summary .wrapper.style5 a.pricing.cmsi-showcase-readmore,
.wrapper.style5 .cmsi-post-summary a.pricing.checkout,
.cmsi-post-summary .wrapper.style5 a.pricing.checkout,
.wrapper.style5 .cmsi-post-summary a.pricing.cmsi-module-blog-summary-read-more,
.cmsi-post-summary .wrapper.style5 a.pricing.cmsi-module-blog-summary-read-more {
  font-family: "vtc_letterer_proregular", "sans-serif";
  border: none;
  border-bottom: dashed 1px #FFF;
  padding-bottom: 15px;
}
@media screen and (max-width: 736px) {
  .wrapper.style5 .features li {
    border-top-color: rgba(0, 0, 0, 0.125);
  }
}
@media screen and (max-width: 980px) {
  .wrapper {
    padding: 4em 3em 2em 3em ;
  }
}
@media screen and (max-width: 736px) {
  .wrapper {
    padding: 3em 2em 1em 2em ;
  }
}

/* Page Wrapper + Menu */
#page-wrapper {
  -moz-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}
#page-wrapper:before {
  background: transparent;
  content: '';
  display: block;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}

@media screen and (min-width: 980px) {
  #menu {
    position: fixed;
    z-index: 10000;
    top: 0;
    width: 100%;
  }
  #menu ul {
    text-align: center;
  }
  #menu ul li {
    -moz-transition: padding 0.3s ease-out;
    -webkit-transition: padding 0.3s ease-out;
    -ms-transition: padding 0.3s ease-out;
    transition: padding 0.3s ease-out;
    display: inline-block;
    padding: 95px 20px 0;
  }
  #menu ul li a {
    border: none;
    font-size: 16px;
    text-transform: uppercase;
  }
  #menu ul li a:hover {
    color: #ff898e;
  }
  #menu ul li.active a {
    padding-bottom: 0.5em;
    border-bottom: solid 1px #ffffff;
  }
  #menu ul.social {
    position: absolute;
    top: 95px;
    right: 100px;
    z-index: 10000;
    -moz-transition: top 0.3s ease-out;
    -webkit-transition: top 0.3s ease-out;
    -ms-transition: top 0.3s ease-out;
    transition: top 0.3s ease-out;
  }
  #menu ul.social li {
    display: inline;
    list-property-style: none;
    padding: 0 10px 0;
  }
  #menu ul.social li a {
    font-size: 24px;
    font-family: "modicons";
    text-transform: none;
  }
  #menu.scroll ul li {
    -moz-transition: padding 0.3s ease-in;
    -webkit-transition: padding 0.3s ease-in;
    -ms-transition: padding 0.3s ease-in;
    transition: padding 0.3s ease-in;
    padding: 35px 30px 0px;
  }
  #menu.scroll ul li a.current {
    border: none;
    color: #ff898e;
  }
  #menu.scroll ul.social {
    -moz-transition: top 0.3s ease-in;
    -webkit-transition: top 0.3s ease-in;
    -ms-transition: top 0.3s ease-in;
    transition: top 0.3s ease-in;
    top: 35px;
  }
  #menu.scroll ul.social li {
    padding: 0 10px 0;
  }
}
@media screen and (max-width: 980px) {
  #menu {
    -moz-transform: translateX(20em);
    -webkit-transform: translateX(20em);
    -ms-transform: translateX(20em);
    transform: translateX(20em);
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    -webkit-overflow-scrolling: touch;
    background: #560004;
    color: #ffffff;
    height: 100%;
    max-width: 80%;
    overflow-y: auto;
    padding: 3em 2em;
    position: fixed;
    right: 0;
    top: 0;
    width: 20em;
    z-index: 10002;
  }
  #menu ul {
    list-style: none;
    padding: 0;
  }
  #menu ul > li {
    border-top: solid 1px rgba(0, 0, 0, 0.125);
    margin: 0.5em 0 0 0;
    padding: 0.5em 0 0 0;
  }
  #menu ul > li:first-child {
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  #menu ul > li > a {
    border: 0;
    color: inherit;
    display: block;
    font-size: 0.8em;
    letter-spacing: 0.225em;
    outline: 0;
    text-decoration: none;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 980px) and (max-width: 736px) {
  #menu ul > li > a {
    line-height: 3em;
  }
}
@media screen and (max-width: 980px) {
  #menu ul ul {
    left: 0 !important;
    width: 100% !important;
  }
  #menu .close {
    background: url(/images/327/assets/css/images/close.svg);
    background-position: 4.85em 1em;
    background-repeat: no-repeat;
    border: 0;
    cursor: pointer;
    display: block;
    height: 3em;
    position: absolute;
    right: 0;
    top: 0;
    vertical-align: middle;
    width: 7em;
  }
  #menu ul.social li {
    display: inline-block;
    list-property-style: none;
    padding: 0 20px 0 0;
    border: none;
  }
  #menu ul.social li a {
    text-transform: none;
    font-size: 24px;
    font-family: "modicons";
  }
}
#menu.sf-menu ul li {
  position: relative;
}
#menu.sf-menu ul ul {
  padding: 0px !important;
  position: absolute;
  display: none;
  z-index: 99;
  width: 150px;
  margin-top: 12px;
}
#menu.sf-menu ul ul li {
  text-align: left;
  padding: 0 !important;
  width: 100%;
}
#menu.sf-menu ul ul li a {
  background: rgba(86, 0, 4, 0.9);
  padding: 20px !important;
  display: block;
}
#menu.sf-menu ul ul li a:hover {
  background: #e5b831;
  border: none;
  color: #000;
}
@media screen and (max-width: 1280px) {
  #menu.sf-menu ul ul li {
    border: none;
  }
}
@media screen and (max-width: 1280px) {
  #menu.sf-menu ul ul {
    position: relative;
    left: 25px;
  }
}

body.is-menu-visible #page-wrapper {
  opacity: 0.35;
}
body.is-menu-visible #page-wrapper:before {
  display: block;
}
body.is-menu-visible #menu {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/* Header */
#header {
  -moz-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  line-height: 3em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
#header .logo {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  background: url(/images/327/images/button-boy-small.png) no-repeat;
  height: 55px;
  margin: 1em;
}
#header .logo h4 {
  padding: 1em 0 0 4em;
}
#header .logo.scroll {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity, ease-in 0.3s;
  -o-transition: opacity, ease-in 0.3s;
  -webkit-transition: opacity, ease-in 0.3s;
  transition: opacity, ease-in 0.3s;
}
#header h1 {
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  height: inherit;
  left: 1.25em;
  line-height: inherit;
  position: absolute;
  top: 0;
}
#header h1 a {
  border: 0;
  display: block;
  height: inherit;
  line-height: inherit;
}
@media screen and (max-width: 736px) {
  #header h1 a {
    font-size: 0.8em;
  }
}
#header nav {
  height: inherit;
  line-height: inherit;
  position: absolute;
  right: 0;
  top: 0;
}
#header nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
#header nav > ul > li {
  display: inline-block;
  padding: 0;
}
#header nav > ul > li > a {
  border: 0;
  color: #fff;
  display: block;
  font-size: 0.8em;
  letter-spacing: 0.225em;
  padding: 0 1.5em;
  text-transform: uppercase;
}
#header nav > ul > li > a.menuToggle {
  outline: 0;
  position: relative;
  display: none;
}
@media screen and (max-width: 980px) {
  #header nav > ul > li > a.menuToggle {
    display: block !important;
  }
}
#header nav > ul > li > a.menuToggle:after {
  background: url(/images/327/assets/css/images/bars.svg);
  background-position: right center;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  height: 3.75em;
  vertical-align: top;
  width: 2em;
}
@media screen and (max-width: 736px) {
  #header nav > ul > li > a.menuToggle {
    padding: 0 1.5em;
  }
  #header nav > ul > li > a.menuToggle span {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  #header nav > ul > li > a {
    padding: 0 0 0 1.5em;
  }
}
#header nav > ul > li:first-child {
  margin-left: 0;
}
#header.alt {
  background: transparent;
}
#header.alt h1 {
  -moz-pointer-events: none;
  -webkit-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  opacity: 0;
}

/* Banner */
#banner {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  cursor: default;
  height: 1000px;
  min-height: 35em;
  overflow: hidden;
  position: relative;
  text-align: center;
}
#banner .inner {
  padding: 0 20px;
}
#banner div.button-boy {
  width: 608px;
  height: 358px;
  background-image: url(/images/327/images/button-boy-bubble.png);
  background-repeat: no-repeat;
  margin: 60px 0;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
#banner div.button-boy div.speech-bubble {
  position: absolute;
  color: #000;
  top: 25px;
  left: 225px;
  width: 300px;
  overflow: hidden;
  height: 120px;
  line-height: 120px;
}
#banner div.button-boy div.speech-bubble p {
  font-family: "vtc_letterer_proregular", "sans-serif";
  display: inline-block;
  vertical-align: middle;
  line-height: 120%;
  margin: 0 !important;
  font-weight: 600;
}
@media screen and (max-width: 736px) {
  #banner div.button-boy {
    width: 100%;
    background-image: url(/images/327/images/button-boy.png);
    background-position: center top;
    height: 425px;
  }
  #banner div.button-boy div.speech-bubble {
    height: 140px;
    top: 310px;
    left: 0;
    bottom: 200px;
    width: 100%;
    border: 5px solid #000;
    background: #FFF;
    padding: 1em;
  }
  #banner div.button-boy div.speech-bubble p {
    display: block;
    height: auto;
    padding: 1.5em;
  }
}
@media screen and (max-width: 480px) {
  #banner div.button-boy div.speech-bubble p {
    padding: 0.5em;
  }
}
#banner p {
  letter-spacing: 0.225em;
  text-transform: uppercase;
}
#banner p a {
  color: inherit;
}
#banner .more {
  -moz-transition: -moz-transform 0.75s ease, opacity 0.75s ease;
  -webkit-transition: -webkit-transform 0.75s ease, opacity 0.75s ease;
  -ms-transition: -ms-transform 0.75s ease, opacity 0.75s ease;
  transition: transform 0.75s ease, opacity 0.75s ease;
  -moz-transition-delay: 3.5s;
  -webkit-transition-delay: 3.5s;
  -ms-transition-delay: 3.5s;
  transition-delay: 3.5s;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  border: none;
  bottom: 0;
  color: inherit;
  font-size: 0.8em;
  height: 8.5em;
  left: 50%;
  letter-spacing: 0.225em;
  margin-left: -8.5em;
  opacity: 1;
  outline: 0;
  padding-left: 0.225em;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 16em;
  z-index: 1;
}
#banner .more:after {
  background-image: url("images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 4em;
  content: '';
  display: block;
  height: 1.5em;
  left: 50%;
  margin: 0 0 0 -0.75em;
  position: absolute;
  width: 1.5em;
}
#banner:after {
  -moz-pointer-events: none;
  -webkit-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -moz-transition: opacity 3s ease-in-out;
  -webkit-transition: opacity 3s ease-in-out;
  -ms-transition: opacity 3s ease-in-out;
  transition: opacity 3s ease-in-out;
  -moz-transition-delay: 1.25s;
  -webkit-transition-delay: 1.25s;
  -ms-transition-delay: 1.25s;
  transition-delay: 1.25s;
  content: '';
  background: #000;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media screen and (max-width: 736px) {
  #banner {
    padding: 7em 3em 5em 3em ;
    height: auto;
    min-height: 0;
  }
  #banner h2 {
    font-size: 1.25em;
  }
  #banner br {
    display: none;
  }
  #banner .more {
    display: none;
  }
}

body.is-loading #banner h2 {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0;
}
body.is-loading #banner h2:before, body.is-loading #banner h2:after {
  width: 0;
}
body.is-loading #banner .more {
  -moz-transform: translateY(8.5em);
  -webkit-transform: translateY(8.5em);
  -ms-transform: translateY(8.5em);
  transform: translateY(8.5em);
  opacity: 0;
}
body.is-loading #banner:after {
  opacity: 1;
}

/* CTA */
#cta .inner {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  max-width: 45em;
}
#cta .inner header {
  -moz-order: 1;
  -webkit-order: 1;
  -ms-order: 1;
  order: 1;
  width: 100%;
}
#cta .inner header p {
  color: inherit;
}
#cta .inner .actions {
  -moz-order: 2;
  -webkit-order: 2;
  -ms-order: 2;
  order: 2;
  width: 30%;
}
@media screen and (max-width: 980px) {
  #cta .inner {
    display: block;
    text-align: center;
  }
  #cta .inner header {
    padding-right: 0;
    width: 100%;
  }
  #cta .inner .actions {
    margin-left: auto;
    margin-right: auto;
    max-width: 20em;
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  #cta .inner .actions {
    max-width: none;
  }
}

/* Main */
#main > header {
  padding: 12em 0px 10em !important;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
#main > header h2 {
  font-size: 1.75em;
  margin: 0 0 0.5em 0;
}
#main > header p {
  color: inherit;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  top: 0;
}
#main > header p a {
  color: inherit;
}
@media screen and (min-width: 1281px) and (max-width: 5000px) {
  #main > header {
    padding: 10em 0 8em 0 ;
  }
}
@media screen and (max-width: 1280px) {
  #main > header {
    padding: 8em 3em 6em 3em ;
  }
}
@media screen and (max-width: 980px) {
  #main > header {
    padding: 10em 3em 8em 3em ;
  }
}
@media screen and (max-width: 736px) {
  #main > header {
    padding: 5em 3em 3em 3em ;
  }
  #main > header h2 {
    font-size: 1.25em;
    margin: 0 0 1em 0;
  }
}

body.is-mobile #main > header {
  background-attachment: scroll;
}

/* Footer */
#footer {
  padding: 6em 0 4em 0 ;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
}
#footer .icons {
  font-size: 1.25em;
}
#footer .icons a {
  color: rgba(255, 255, 255, 0.5);
}
#footer .icons a:hover {
  color: #fff;
}
#footer .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8em;
  letter-spacing: 0.225em;
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}
#footer .copyright li {
  line-height: 1em;
  margin-left: 1em;
  padding-left: 1em;
}
#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}
#footer .copyright li a {
  color: inherit;
}
#footer .copyright li a:hover {
  color: #fff;
}
#footer .copyright li.credit {
  width: 149px;
  height: 33px;
  background-image: url(/images/327/images/pie-logo-designed-by-doncor.png);
  margin: 20px 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 480px) {
  #footer .copyright li {
    border: 0;
    display: block;
    line-height: 1.65em;
    margin: 0;
    padding: 0.5em 0;
  }
}
@media screen and (max-width: 980px) {
  #footer {
    padding: 4em 3em 2em 3em ;
  }
}
@media screen and (max-width: 736px) {
  #footer {
    padding: 3em 2em 1em 2em ;
  }
}

/* Landing */
body.landing #page-wrapper {
  padding-top: 0;
}
body.landing #footer {
  background-color: rgba(0, 0, 0, 0.7);
}

body.is-mobile.landing #banner,
body.is-mobile.landing .wrapper.style4 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.is-mobile.landing #footer {
  background-color: #000;
}
