@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

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

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

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

@-webkit-keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

@keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

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

@keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

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

@keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

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

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

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

@-webkit-keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

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

@keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

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

@keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

@keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

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

@keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

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

@keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

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

@keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

@keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

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

@-webkit-keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

@keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

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

@keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

@keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

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

@keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

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

@-webkit-keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

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

@-webkit-keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

@keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

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

@-webkit-keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

@keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

@-webkit-keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

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

@keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

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

@keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

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

@keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

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

@keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

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

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

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

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

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

@keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

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

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

@-webkit-keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

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

@keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

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

@keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

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

@keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

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

@keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

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

@keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

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

@keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

@keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

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

@-webkit-keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

@keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

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

@-webkit-keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

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

@-webkit-keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

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

@-webkit-keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -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: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-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: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

@-webkit-keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

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

@-webkit-keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  100% {
    opacity: 0;
  }
}

@keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

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

@keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

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

@-webkit-keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

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

@keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

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

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

@-webkit-keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

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

@keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

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

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

@-webkit-keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

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

@keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

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



@charset "UTF-8";/*!
Magic - http://minimamente.com
Licensed under the MIT license

Copyright (c) 2014 Christian Pucci

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.magictime {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.elxr_elxr_perspectiveDownRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveDownRetourn;
  -moz-animation-name: elxr_perspectiveDownRetourn;
  -ms-animation-name: elxr_perspectiveDownRetourn;
  -o-animation-name: elxr_perspectiveDownRetourn;
  animation-name: elxr_perspectiveDownRetourn;
}
.elxr_elxr_perspectiveLeftRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveLeftRetourn;
  -moz-animation-name: elxr_perspectiveLeftRetourn;
  -ms-animation-name: elxr_perspectiveLeftRetourn;
  -o-animation-name: elxr_perspectiveLeftRetourn;
  animation-name: elxr_perspectiveLeftRetourn;
}
.elxr_elxr_perspectiveRightRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveRightRetourn;
  -moz-animation-name: elxr_perspectiveRightRetourn;
  -ms-animation-name: elxr_perspectiveRightRetourn;
  -o-animation-name: elxr_perspectiveRightRetourn;
  animation-name: elxr_perspectiveRightRetourn;
}
.elxr_elxr_perspectiveUpRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveUpRetourn;
  -moz-animation-name: elxr_perspectiveUpRetourn;
  -ms-animation-name: elxr_perspectiveUpRetourn;
  -o-animation-name: elxr_perspectiveUpRetourn;
  animation-name: elxr_perspectiveUpRetourn;
}
.elxr_elxr_puffIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
  -webkit-animation-fill-mode: none;
  -moz-animation-fill-mode: none;
  -ms-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  animation-fill-mode: none;
}
.elxr_elxr_twisterInUp {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_twisterInUp;
  -moz-animation-name: elxr_twisterInUp;
  -ms-animation-name: elxr_twisterInUp;
  -o-animation-name: elxr_twisterInUp;
  animation-name: elxr_twisterInUp;
}
.elxr_elxr_vanishIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_vanishIn;
  -moz-animation-name: elxr_vanishIn;
  -ms-animation-name: elxr_vanishIn;
  -o-animation-name: elxr_vanishIn;
  animation-name: elxr_vanishIn;
}
.elxr_elxr_tinRightIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinRightIn;
  -moz-animation-name: elxr_tinRightIn;
  -ms-animation-name: elxr_tinRightIn;
  -o-animation-name: elxr_tinRightIn;
  animation-name: elxr_tinRightIn;
}
.elxr_elxr_tinLeftIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinLeftIn;
  -moz-animation-name: elxr_tinLeftIn;
  -ms-animation-name: elxr_tinLeftIn;
  -o-animation-name: elxr_tinLeftIn;
  animation-name: elxr_tinLeftIn;
}


@-moz-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_puffIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-moz-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-webkit-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-o-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-ms-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {;
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 0 0;
    -ms-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-moz-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-moz-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
.flip-clock-wrapper{font-family:"Helvetica Neue",Helvetica,sans-serif;font-weight:normal;text-align:center;position:relative;margin:2em auto;display:flex;flex-wrap:nowrap;justify-content:center}.flip-clock-wrapper *{margin:0;padding:0;line-height:normal;box-sizing:border-box}.flip-clock-wrapper a{cursor:normal;text-decoration:none}.flip-clock-wrapper ul{list-style:none}ul.flip{position:relative;display:inline-block;font-weight:bold;border-radius:6px;box-shadow:0 2px 5px rgba(0,0,0,0.5)}ul.flip li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%}ul.flip li:first-child{z-index:2}ul.flip li.flip-clock-active{z-index:3}ul.flip li a{display:block;height:100%;perspective:200px;margin:0 !important;overflow:visible !important}ul.flip li div{z-index:1;position:absolute;left:0;width:100%;height:50%;overflow:hidden}ul.flip li div .inn{height:200%;text-align:center;border-radius:6px}ul.flip li div.up{transform-origin:50% 100%;top:0}ul.flip li div.up:after{content:"";position:absolute;bottom:0;left:0;z-index:5;width:100%;height:1px;background-color:rgba(0,0,0,0.4)}ul.flip li div.up .inn{top:0}ul.flip li div.down{transform-origin:50% 0;bottom:0}ul.flip li div.down .inn{bottom:0}ul.flip li .shadow{position:absolute;width:100%;height:100%;z-index:2}.flip-clock-dot{display:block;position:absolute;border-radius:50%;left:50%;transform:translateX(-50%)}.flip-clock-dot.top{top:25%}.flip-clock-dot.bottom{bottom:25%}.flip-clock-label{position:absolute;transform:translateX(50%)}.label-top .flip-clock-label{top:-1.5em}.label-bottom .flip-clock-label{bottom:-1.5em}.flip-clock-divider{display:inline-block;position:relative}.flip-clock-divider:first-child{margin-left:0 !important;margin-right:0 !important;width:0 !important}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes turn{0%{transform:rotateX(90deg)}100%{transform:rotateX(0deg)}}@keyframes turn2{0%{transform:rotateX(0deg)}100%{transform:rotateX(-90deg)}}@keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes hide{0%{opacity:1}100%{opacity:0}}ul.play li.flip-clock-before{z-index:3}ul.play li.flip-clock-before .up{z-index:2;animation:turn2 .5s linear both}ul.play li.flip-clock-before .up .shadow{background:linear-gradient(to bottom,rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.2) 50%);animation:show .5s linear both}ul.play li.flip-clock-before .down .shadow{background:linear-gradient(to bottom,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.05) 100%);animation:show .5s linear both}ul.play li.flip-clock-active{z-index:3;animation:asd .5s .5s linear both}ul.play li.flip-clock-active .down{animation:turn .5s .5s linear both}ul.play li.flip-clock-active .down .shadow{background:linear-gradient(to bottom,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.05) 100%);animation:hide .5s .3s linear both}ul.play li.flip-clock-active .up .shadow{background:linear-gradient(to bottom,rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.2) 50%);animation:hide .5s .3s linear both}

/*Issue:Strata,remove z-index from #t-bandWriter,remove z-index from .wrapper.main*/@font-face{font-family:'velvet';src:url('../rw_common/plugins/stacks/velvet-icons/velvet.eot?ddr21z');src:url('../rw_common/plugins/stacks/velvet-icons/velvet.eot?ddr21z#iefix') format('embedded-opentype'),url('../rw_common/plugins/stacks/velvet-icons/velvet.woff2?ddr21z') format('woff2'),url('../rw_common/plugins/stacks/velvet-icons/velvet.ttf?ddr21z') format('truetype'),url('../rw_common/plugins/stacks/velvet-icons/velvet.woff?ddr21z') format('woff'),url('../rw_common/plugins/stacks/velvet-icons/velvet.svg?ddr21z#velvet') format('svg');font-weight:normal;font-style:normal}[class^="velvet-"],[class*=" velvet-"]{font-family:'velvet' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.velvet_alert{position:absolute;color:#fff;top:50%;left:50%;font-size:13px;transform:translate(-50%,-50%);padding:6px 10px;line-height:1.5;background:rgba(0,0,0,0.8);border-radius:5px;text-align:center;font-family:arial}.velvet-play-1:before{content:"\e903"}.velvet-play-2:before{content:"\e904"}.velvet-play-6:before{content:"\e905"}.velvet-play-3:before{content:"\e901"}.velvet-play-4:before{content:"\e902"}.velvet-play-5:before{content:"\e900"}.velvet-icon{position:absolute;z-index:2;pointer-events:none;text-align:center;text-shadow:none;transition:color 300ms}.velvet-icon:after{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.vzoom-img-op .velvet-icon{opacity:0}.cf:after{content:"";display:table;clear:both}.velvet_active{overflow:visible !important}.velvet_active:after{content:"";display:table;clear:both}.vzoom-img-in[data-preventzoom="True"]{z-index:0 !important}.vzoom-img-in[data-preventzoom="True"] img,.vzoom-img-in[data-preventzoom="True"] .vzoom-img-wrap{transform:none !important}.vzoom-player table,.vzoom-player tbody,.vzoom-player td{background:transparent !important;border:none!important;margin:0;padding:0}.vzoom-player .embed-center{max-width:150vh;margin:0 auto}.vzoom-player .embed-container{position:relative;padding-bottom:56.25%;height:0;background:#000;overflow:hidden !important;max-width:100%;margin-bottom:0 !important;line-height:0;box-shadow:0 10px 40px rgba(0,0,0,0.4)}body.velvet_scaleIn .vzoom-player .embed-container{animation:ncdVideoScaleIn .5s .2s backwards}.vzoom-player .embed-container:before{height:100%;width:100%;background:#000;content:'';display:block;position:absolute;z-index:0;opacity:0;transition:opacity 150ms}.vzoom-player .embed-container:after{padding-top:100%;content:'';display:block}.vzoom-player.close .embed-container:before{z-index:1;opacity:1}.vzoom-player .embed-container iframe,.vzoom-player .embed-container object,.vzoom-player .embed-container embed{position:absolute;top:0;left:0;width:100%;height:100%}.vzoom-player .embed-container video{position:relative;z-index:1000}.vzoom-img,.vzoom-img-wrap{position:relative;z-index:66669999;-webkit-transition:all 300ms 100ms;-o-transition:all 300ms 100ms;transition:all 300ms 100ms}.vzoom-overlay-open .vzoom-img,.vzoom-overlay-open .vzoom-img-wrap{-webkit-transition:all 325ms cubic-bezier(0.165,0.840,0.440,1.000);-o-transition:all 325ms cubic-bezier(0.165,0.840,0.440,1.000);transition:all 325ms cubic-bezier(0.165,0.840,0.440,1.000)}img[data-action="vzoom"]{cursor:pointer;width:100%;max-width:none;float:left;position:relative;cursor:-webkit-zoom-in;cursor:-moz-zoom-in}img.vzoom-img{cursor:pointer;cursor:-webkit-zoom-out;cursor:-moz-zoom-out}.velvet_placeholder{text-align:center}@media screen and (min-width:900px){.velvet_placeholder{height:0;padding-top:50%}}.velvet_placeholder img{float:none;position:absolute;left:0;top:0;height:100%}.velvet_placeholder .velvet-icon{display:none}.no_image + .velvet-icon{display:block}.vzoom-img-in{transition:opacity .4s .1s;position:relative}.vzoom-img-in img{margin:0}.vzoom-img-in:before{position:absolute;pointer-events:none;top:0;left:0;right:0;bottom:0;content:'';z-index:1;transition:background 300ms}.vzoom-img-in:hover:before{background:}.vzoom-img-in.velvet_active{z-index:77779999}.vzoom-img-in:after{content:"";display:table;clear:both}.vzoom-img-in.vzoom-img-op{transition:opacity .35s;opacity:0;pointer-events:none}.vzoom-img-in.vzoom-img-op[data-preventzoom="True"]{opacity:1}.vzoom-overlay,.vzoom-player{z-index:1000;background:#000000;position:fixed;top:0;left:0;right:0;bottom:0;pointer-events:none;filter:"alpha(opacity=0)";opacity:0;-webkit-transition:opacity 500ms;-o-transition:opacity 500ms;transition:opacity 500ms}.vzoom-overlay-open .vzoom-overlay{filter:"alpha(opacity=89)";opacity:.89}.vzoom-overlay{-webkit-transition:opacity 300ms 300ms;-o-transition:opacity 300ms 300ms;transition:opacity 300ms 300ms}.vzoom-overlay-open .vzoom-overlay{-webkit-transition:opacity 300ms;-o-transition:opacity 300ms;transition:opacity 300ms}.vzoom-player{z-index:1001;background:none;margin:40px;opacity:1;filter:none;pointer-events:auto;animation:ncdVideoOpacityIn .6s .25s backwards;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d}.vzoom-player table{height:100%;width:100%;border-collapse:collapse}.vzoom-player table td{vertical-align:middle}.vzoom-player *{box-sizing:content-box}.vzoom-player.close .embed-container{transition:opacity 300ms;opacity:0}.vzoom-overlay-open,.vzoom-overlay-transitioning{cursor:default}@keyframes ncdVideoOpacityIn{0%{opacity:0}100%{opacity:1}}@keyframes ncdVideoScaleIn{0%{transform:scale(0.96)}100%{transform:scale(1)}}.vzoom-img-in .embed-container{position:relative;padding-bottom:56.25%;height:0;background:#000;overflow:hidden !important;max-width:100%;line-height:0}.vzoom-img-in .embed-container iframe,.vzoom-img-in .embed-container object,.vzoom-img-in .embed-container embed{position:absolute;top:0;left:0;width:100%;height:100%}@media screen and (min-width:900px){.vzoom-img-in .embed-container{display:none}}@media screen and (max-width:900px){.vzoom-img-in img,.vzoom-img-in:before,.vzoom-img-in .velvet-icon{display:none !important}.vzoom-img-in .embed-container,.vzoom-img-in .embed-container iframe,.vzoom-img-in .embed-container object,.vzoom-img-in .embed-container embed{display:block}}
/* If modifying any of this code, update the template.html file too */

#backToTopAnchorPoint {
	display: block;
	height: 0px;
	overflow: hidden;
}

.backToTopButton {
	text-decoration: none;
	color: #FED808;
	
	display: none;
	position: fixed;
	z-index: 999;
	bottom:50px;right:50px;
	
	
	font-size: 43px;
	line-height: 1.00em;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 1.00);
	transition: all 300ms ease-in-out;
}

.backToTopButton:hover {
	border: 1px solid rgba(0, 0, 0, 1.00);
	color: #D80016;
}




/* Vertical gradient fill */
.backToTopButton {
	background-color: rgba(129, 0, 16, 1.00);
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(rgba(129, 0, 16, 1.00)), to(rgba(216, 0, 22, 1.00)));
	background-image: -moz-linear-gradient(top, rgba(129, 0, 16, 1.00), rgba(216, 0, 22, 1.00));
	background-image: -ms-linear-gradient(top, rgba(129, 0, 16, 1.00), rgba(216, 0, 22, 1.00));
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(129, 0, 16, 1.00)), color-stop(100%, rgba(216, 0, 22, 1.00)));
	background-image: -webkit-linear-gradient(top, rgba(129, 0, 16, 1.00), rgba(216, 0, 22, 1.00));
	background-image: -o-linear-gradient(top, rgba(129, 0, 16, 1.00), rgba(216, 0, 22, 1.00));
	background-image: linear-gradient(top, rgba(129, 0, 16, 1.00), rgba(216, 0, 22, 1.00));
}

.backToTopButton:hover {
	background-color: rgba(254, 216, 8, 1.00);
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(rgba(254, 216, 8, 1.00)), to(rgba(254, 216, 8, 1.00)));
	background-image: -moz-linear-gradient(top, rgba(254, 216, 8, 1.00), rgba(254, 216, 8, 1.00));
	background-image: -ms-linear-gradient(top, rgba(254, 216, 8, 1.00), rgba(254, 216, 8, 1.00));
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(254, 216, 8, 1.00)), color-stop(100%, rgba(254, 216, 8, 1.00)));
	background-image: -webkit-linear-gradient(top, rgba(254, 216, 8, 1.00), rgba(254, 216, 8, 1.00));
	background-image: -o-linear-gradient(top, rgba(254, 216, 8, 1.00), rgba(254, 216, 8, 1.00));
	background-image: linear-gradient(top, rgba(254, 216, 8, 1.00), rgba(254, 216, 8, 1.00));
}














@media print {
	/* Hides the button if the page is printed or saved as a PDF */
	.backToTopButton {
		display: none;
	}
}















#stacks_in_1100{
	max-width: 1000px;margin: 0 auto;
}
#stacks_in_1100{
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1100{
		padding: 0px 0px 0px 0px;
	}
}#stacks_in_1101>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1101>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_1101>.s3_row>.s3_column_right {
	width: 80.000000%;
}




#stacks_in_1101>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_1101>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_1101>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





#stacks_in_638.aspen_split{
	position: relative;
	font-size: 17px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_638.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_638.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_638.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_638.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.9;
	
	background-size: cover;
}

#stacks_in_638.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_638 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_638.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00));
}

 
#stacks_in_638.aspen_split{color:rgba(255, 255, 255, 1.00);} 
#stacks_in_638.aspen_split h1, 
#stacks_in_638.aspen_split h2,
#stacks_in_638.aspen_split h3, 
#stacks_in_638.aspen_split h4, 
#stacks_in_638.aspen_split h5, 
#stacks_in_638.aspen_split h6{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_638.aspen_split a{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_638.aspen_split a:hover{color: rgba(255, 255, 255, 1.00);}#liftoff_stacks_in_1697{overflow:hidden}#reveal_stacks_in_1697{display:none;overflow:hidden}#liftoff_stacks_in_1697 .flip-clock-wrapper{font-size:10px}#liftoff_stacks_in_1697 .flip-clock-wrapper > *:not(.flip-clock-meridium){height:calc(50px * 1.25)}#liftoff_stacks_in_1697 ul.flip{margin:calc(0.625rem / 2);width:calc(50px - 0.625rem)}#liftoff_stacks_in_1697 ul.flip .inn{font-size:50px;line-height:1.25em}#liftoff_stacks_in_1697 .flip-clock-label{right:calc(-50px - 0.625rem)}#liftoff_stacks_in_1697 .flip-clock-dot{width:calc(50px * 0.15);height:calc(50px * 0.15)}#liftoff_stacks_in_1697 .flip-clock-divider{margin:calc(0.625rem / 2) 0.625rem;width:calc(50px * 0.15)}#liftoff_stacks_in_1697 .flip-clock-divider:first-child .flip-clock-label{right:-50px}@media screen and (min-width:40em){#liftoff_stacks_in_1697 .flip-clock-wrapper{font-size:10px}#liftoff_stacks_in_1697 .flip-clock-wrapper > *:not(.flip-clock-meridium){height:calc(70px * 1.25)}#liftoff_stacks_in_1697 ul.flip{margin:calc(0.625rem / 2);width:calc(70px - 0.625rem)}#liftoff_stacks_in_1697 ul.flip .inn{font-size:70px;line-height:1.25em}#liftoff_stacks_in_1697 .flip-clock-label{right:calc(-70px - 0.625rem)}#liftoff_stacks_in_1697 .flip-clock-dot{width:calc(70px * 0.15);height:calc(70px * 0.15)}#liftoff_stacks_in_1697 .flip-clock-divider{margin:calc(0.625rem / 2) 0.625rem;width:calc(70px * 0.15)}#liftoff_stacks_in_1697 .flip-clock-divider:first-child .flip-clock-label{right:-70px}}@media screen and (min-width:64em){#liftoff_stacks_in_1697 .flip-clock-wrapper{font-size:12px}#liftoff_stacks_in_1697 .flip-clock-wrapper > *:not(.flip-clock-meridium){height:calc(90px * 1.25)}#liftoff_stacks_in_1697 ul.flip{margin:calc(0.625rem / 2);width:calc(90px - 0.625rem)}#liftoff_stacks_in_1697 ul.flip .inn{font-size:90px;line-height:1.25em}#liftoff_stacks_in_1697 .flip-clock-label{right:calc(-90px - 0.625rem)}#liftoff_stacks_in_1697 .flip-clock-dot{width:calc(90px * 0.15);height:calc(90px * 0.15)}#liftoff_stacks_in_1697 .flip-clock-divider{margin:calc(0.625rem / 2) 0.625rem;width:calc(90px * 0.15)}#liftoff_stacks_in_1697 .flip-clock-divider:first-child .flip-clock-label{right:-90px}}@media screen and (min-width:75em){#liftoff_stacks_in_1697 .flip-clock-wrapper{font-size:14px}#liftoff_stacks_in_1697 .flip-clock-wrapper > *:not(.flip-clock-meridium){height:calc(90px * 1.25)}#liftoff_stacks_in_1697 ul.flip{margin:calc(0.625rem / 2);width:calc(90px - 0.625rem)}#liftoff_stacks_in_1697 ul.flip .inn{font-size:90px;line-height:1.25em}#liftoff_stacks_in_1697 .flip-clock-label{right:calc(-90px - 0.625rem)}#liftoff_stacks_in_1697 .flip-clock-dot{width:calc(90px * 0.15);height:calc(90px * 0.15)}#liftoff_stacks_in_1697 .flip-clock-divider{margin:calc(0.625rem / 2) 0.625rem;width:calc(90px * 0.15)}#liftoff_stacks_in_1697 .flip-clock-divider:first-child .flip-clock-label{right:-90px}}#liftoff_stacks_in_1697 ul.flip .inn{color:rgba(216, 0, 22, 1.00);background-color:rgba(254, 216, 8, 1.00)}#liftoff_stacks_in_1697 .flip-clock-dot{background:rgba(216, 0, 22, 1.00)}#liftoff_stacks_in_1697 .flip-clock-label,#liftoff_stacks_in_1697 .flip-clock-meridium a{color:rgba(216, 0, 22, 1.00)}
/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_1220buttonPressWrapper{
	position: relative !important;
}

#stacks_in_1220 a, #stacks_in_1220 a:hover, #stacks_in_1220 a:visited, #stacks_in_1220 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_1220button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #D80016 !important;
	background-color: #FED808 !important;
	border-color: #D7B706 !important;
	box-sizing: border-box !important;
}

.stacks_in_1220button:hover{
	color: #FED808 !important;
	background-color: #D80016 !important;
	border-color: #B70012 !important;
}

#stacks_in_1220 a, #stacks_in_1220 a:visited, #stacks_in_1220 a:active{
	color: #D80016 !important;
}

#stacks_in_1220 a:hover{
	color: #FED808 !important;
}






































.stacks_in_1220buttonPressWrapper *{
	border-radius: 0 !important;
	
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_1220buttonPressWrapper{
	position: relative !important;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_1220buttonPressWrapper{
		text-align: center !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_1220buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */
#stacks_in_1220 {
	border: solid rgba(216, 0, 22, 1.00);
	border-width: 2px 2px 2px 2px;
	margin:  7px;
}
/* 1.0.1
- fixed a mobile firefox bug that prevented the text from resizing on page load.
- fixed a conflict with theme frameworks
- fixes added for Stacks HTML comments and whitespace settings
- fixed bug that could cause the text to jumble if you added bolding or other text styles to the first letter or word of a frame
*/
#stacks_in_1048 {
  overflow: hidden;
}
.text-fx-stacks_in_1048 .text-fx-example-wrap,
.text-fx-stacks_in_1048 .text-fx-frame,
.text-fx-stacks_in_1048 .tfx-a,
.text-fx-stacks_in_1048 .tfx-w {
  perspective: 1000px;
}
.text-fx-stacks_in_1048 > *,
.text-fx-stacks_in_1048 .text-fx-frame-example {
  
  text-align: center;
  
  margin-top: 16px;
  margin-bottom: 16px;
  word-spacing: 0.00px;
}

.text-fx-stacks_in_1048 .text-fx-wrapper,
.text-fx-stacks_in_1048 .text-fx-frame,
.text-fx-stacks_in_1048 .text-fx-frame-clone,
.text-fx-stacks_in_1048 > * span {
  line-height: 1.1;
}

.text-fx-stacks_in_1048 > *,
.text-fx-stacks_in_1048 .text-fx-frame-example span {
  font-family: inherit;
  
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 1.00px;
  line-height: 110%;
  color: rgba(0, 0, 0, 1.00);
  
}

.text-fx-stacks_in_1048 {
  opacity: 0;
}
.text-fx-stacks_in_1048.text-fx-start {
  opacity: 1;
}


#stacks_in_1048 .text-fx-timeline-wrap {
  display: block;
  position: relative;
  padding: 0;
  background: #e3e3e3;
}
#stacks_in_1048 .text-fx-progress {
  background: #999;
  height: 20px;
  position: absolute;
  z-index: 0;
  top: 50%;
  margin-top: -10px;
  width: 100%;
  left: 0px;
  transform-origin: left;
}
#stacks_in_1048 .text-fx-timeline {
  display: inline-block;
  text-align: left;
  width: 100%;
  overflow: hidden;
  padding: 32px 0 24px 0;
}
#stacks_in_1048 .tl-frame {
  display: block;
  float: left;
  position: relative;
}

#stacks_in_1048 .tl-frame > div:nth-child(4):after {
  transform: translate(-50%,-25%);
}
#stacks_in_1048 .tl-frame,
#stacks_in_1048 .tl-frame-inherited {

}
#stacks_in_1048 .tl-frame > div,
#stacks_in_1048 .text-fx-visual-inherited {
  position: relative;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
  background: #000;
  color: #fff;
  display: block;
  float: left;
}
#stacks_in_1048 .text-fx-visual-inherited {
  float: none;
}
#stacks_in_1048 .tl-frame > div:first-child {
  background: #666;
}
#stacks_in_1048 .tl-frame > div:nth-child(2) {
  background: #02C456;
}
#stacks_in_1048 .tl-frame > div:nth-child(3) {
  background: #4056F4;
}
#stacks_in_1048 .tl-frame > div:nth-child(4) {
  background: #FF4040;
}
#stacks_in_1048 .tl-frame > div:nth-child(5) {
    transform: translate(0,5px);
}
#stacks_in_1048 .tl-frame > div:before {
  position: relative;
  z-index: 99;
}
#stacks_in_1048 .tl-frame > div:after {
  position: absolute;
  bottom: 100%;
  color: #333;
  left: 50%;
  transform: translate(-50%,0);
}
#stacks_in_1048 .tl-frame > div:first-child:after {
  content: "";
  color: #666;
}
#stacks_in_1048 .tl-frame > div:nth-child(2):after {
  content: "In";
  color: #02C456;
}
#stacks_in_1048 .tl-frame > div:nth-child(3):after {
  content: "Active";
  color: #4056F4;
}
#stacks_in_1048 .tl-frame > div:nth-child(4):after {
  content: "Out";
  color: #FF4040;
}
#stacks_in_1048 .tl-frame > div:last-child:after {
  content: attr(data-name);
  bottom: auto;
  top: 100%;
  color: #333;
}
#stacks_in_1048 .tl-frame > div:last-child:before {
  content: "";
  background: #666;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  transform: scale(0,1);
}
#stacks_in_1048 .tl-frame > div:last-child,
#stacks_in_1048 .text-fx-visual-inherited {
  background: #333;
  grid-column: span 4;
  border-right: 1px solid rgba(255,255,255,0.3);
  grid-column: span 3;
}


/* .text-fx-stacks_in_1048 > * #stacks_in_1048 span.tfx-l,
.text-fx-stacks_in_1048 > * #stacks_in_1048 span.tfx-w {
  color: rgba(0, 0, 0, 1.00);
} */
.text-fx-stacks_in_1048 .text-fx-wrapper {
  display: grid;
  position: relative;
  width: 100%;
  align-items: center;
}
.text-fx-stacks_in_1048 .text-fx-frame,
.text-fx-stacks_in_1048 .text-fx-frame-clone {
  display: inline-block;
}
.text-fx-stacks_in_1048 .tfx-c,
.text-fx-stacks_in_1048 .tfx-a,
.text-fx-stacks_in_1048 .tfx-w .tfx-l,
.text-fx-stacks_in_1048 .tfx-w {
   display: inline-block;
   will-change: opacity, transform;
}
.text-fx-stacks_in_1048 .tfx-a {
  position: relative;
}
.text-fx-stacks_in_1048 > * span.tfx-c {
  position: absolute;
  animation: tfx-blink_stacks_in_1048 1s linear infinite;
  color: rgba(0, 0, 0, 1.00);
}
@keyframes tfx-blink_stacks_in_1048 {
  from {
    color: rgba(0, 0, 0, 1.00);
  }
  66% {
    color: rgba(0, 0, 0, 1.00);
  }
  66.1% {
    color: transparent;
  }
  to {
    color: transparent;
  }
}
.text-fx-stacks_in_1048 .tfx-w {
  white-space: nowrap;
}
.text-fx-stacks_in_1048 .tfx-l.inline-letter {
  display: inline;
}


.frame_bg_stacks_in_1057 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.050000);
  opacity: 0.000000;
  transform-origin: left bottom;
  background-color: rgba(0, 0, 0, 1.00);
}
.frame_bg_edit_stacks_in_1057 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: left bottom;
  background-color: rgba(0, 0, 0, 1.00);
  animation: edit_stacks_in_1057 500ms ease 1;
  
  transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1,0.05);
  opacity: 1;
  

}
@keyframes edit_stacks_in_1057 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.050000);
    opacity: 0.000000;
  }
  
  to {
    transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1,0.05);
    opacity: 1;
  }
  

}
#stacks_in_1859>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1859>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1859>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1859>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_1859>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_1859>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





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



.wow {
	visibility: hidden;
}

#stacks_in_1044 {
	margin:  6px;
}

#stacks_out_1044 {
	width: 250px;
}
#stacks_in_1029 *,
#stacks_in_1029 *:before,
#stacks_in_1029 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1030 {
	margin:  6px;
}

#stacks_out_1030 {
	width: 250px;
}
#stacks_in_1034 *,
#stacks_in_1034 *:before,
#stacks_in_1034 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1035 {
	margin:  6px;
}

#stacks_out_1035 {
	width: 250px;
}
#stacks_in_1865 *,
#stacks_in_1865 *:before,
#stacks_in_1865 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1866 {
	margin:  6px;
}

#stacks_out_1866 {
	width: 250px;
}
/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_1219buttonPressWrapper{
	position: relative !important;
}

#stacks_in_1219 a, #stacks_in_1219 a:hover, #stacks_in_1219 a:visited, #stacks_in_1219 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_1219button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #D80016 !important;
	background-color: #FED808 !important;
	border-color: #D7B706 !important;
	box-sizing: border-box !important;
}

.stacks_in_1219button:hover{
	color: #FED808 !important;
	background-color: #D80016 !important;
	border-color: #B70012 !important;
}

#stacks_in_1219 a, #stacks_in_1219 a:visited, #stacks_in_1219 a:active{
	color: #D80016 !important;
}

#stacks_in_1219 a:hover{
	color: #FED808 !important;
}






































.stacks_in_1219buttonPressWrapper *{
	border-radius: 0 !important;
	
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_1219buttonPressWrapper{
	position: relative !important;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_1219buttonPressWrapper{
		text-align: center !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_1219buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */
#stacks_in_1219 {
	border: solid rgba(216, 0, 22, 1.00);
	border-width: 2px 2px 2px 2px;
	margin:  7px;
}
/* 1.0.1
- fixed a mobile firefox bug that prevented the text from resizing on page load.
- fixed a conflict with theme frameworks
- fixes added for Stacks HTML comments and whitespace settings
- fixed bug that could cause the text to jumble if you added bolding or other text styles to the first letter or word of a frame
*/
#stacks_in_1896 {
  overflow: hidden;
}
.text-fx-stacks_in_1896 .text-fx-example-wrap,
.text-fx-stacks_in_1896 .text-fx-frame,
.text-fx-stacks_in_1896 .tfx-a,
.text-fx-stacks_in_1896 .tfx-w {
  perspective: 1000px;
}
.text-fx-stacks_in_1896 > *,
.text-fx-stacks_in_1896 .text-fx-frame-example {
  
  text-align: center;
  
  margin-top: 0px;
  margin-bottom: 0px;
  word-spacing: 0.00px;
}

.text-fx-stacks_in_1896 .text-fx-wrapper,
.text-fx-stacks_in_1896 .text-fx-frame,
.text-fx-stacks_in_1896 .text-fx-frame-clone,
.text-fx-stacks_in_1896 > * span {
  line-height: 1.1;
}

.text-fx-stacks_in_1896 > *,
.text-fx-stacks_in_1896 .text-fx-frame-example span {
  font-family: "helveticaNeue",helvetica;
  
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.00px;
  line-height: 100%;
  color: rgba(254, 216, 8, 1.00);
  
}

.text-fx-stacks_in_1896 {
  opacity: 0;
}
.text-fx-stacks_in_1896.text-fx-start {
  opacity: 1;
}


#stacks_in_1896 .text-fx-timeline-wrap {
  display: block;
  position: relative;
  padding: 0;
  background: #e3e3e3;
}
#stacks_in_1896 .text-fx-progress {
  background: #999;
  height: 20px;
  position: absolute;
  z-index: 0;
  top: 50%;
  margin-top: -10px;
  width: 100%;
  left: 0px;
  transform-origin: left;
}
#stacks_in_1896 .text-fx-timeline {
  display: inline-block;
  text-align: left;
  width: 100%;
  overflow: hidden;
  padding: 32px 0 24px 0;
}
#stacks_in_1896 .tl-frame {
  display: block;
  float: left;
  position: relative;
}

#stacks_in_1896 .tl-frame > div:nth-child(2):after,

#stacks_in_1896 .tl-frame > div:nth-child(4):after {
  transform: translate(-50%,-25%);
}
#stacks_in_1896 .tl-frame,
#stacks_in_1896 .tl-frame-inherited {

}
#stacks_in_1896 .tl-frame > div,
#stacks_in_1896 .text-fx-visual-inherited {
  position: relative;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
  background: #000;
  color: #fff;
  display: block;
  float: left;
}
#stacks_in_1896 .text-fx-visual-inherited {
  float: none;
}
#stacks_in_1896 .tl-frame > div:first-child {
  background: #666;
}
#stacks_in_1896 .tl-frame > div:nth-child(2) {
  background: #02C456;
}
#stacks_in_1896 .tl-frame > div:nth-child(3) {
  background: #4056F4;
}
#stacks_in_1896 .tl-frame > div:nth-child(4) {
  background: #FF4040;
}
#stacks_in_1896 .tl-frame > div:nth-child(5) {
    transform: translate(0,5px);
}
#stacks_in_1896 .tl-frame > div:before {
  position: relative;
  z-index: 99;
}
#stacks_in_1896 .tl-frame > div:after {
  position: absolute;
  bottom: 100%;
  color: #333;
  left: 50%;
  transform: translate(-50%,0);
}
#stacks_in_1896 .tl-frame > div:first-child:after {
  content: "";
  color: #666;
}
#stacks_in_1896 .tl-frame > div:nth-child(2):after {
  content: "In";
  color: #02C456;
}
#stacks_in_1896 .tl-frame > div:nth-child(3):after {
  content: "Active";
  color: #4056F4;
}
#stacks_in_1896 .tl-frame > div:nth-child(4):after {
  content: "Out";
  color: #FF4040;
}
#stacks_in_1896 .tl-frame > div:last-child:after {
  content: attr(data-name);
  bottom: auto;
  top: 100%;
  color: #333;
}
#stacks_in_1896 .tl-frame > div:last-child:before {
  content: "";
  background: #666;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  transform: scale(0,1);
}
#stacks_in_1896 .tl-frame > div:last-child,
#stacks_in_1896 .text-fx-visual-inherited {
  background: #333;
  grid-column: span 4;
  border-right: 1px solid rgba(255,255,255,0.3);
  
}


/* .text-fx-stacks_in_1896 > * #stacks_in_1896 span.tfx-l,
.text-fx-stacks_in_1896 > * #stacks_in_1896 span.tfx-w {
  color: rgba(254, 216, 8, 1.00);
} */
.text-fx-stacks_in_1896 .text-fx-wrapper {
  display: grid;
  position: relative;
  width: 100%;
  align-items: center;
}
.text-fx-stacks_in_1896 .text-fx-frame,
.text-fx-stacks_in_1896 .text-fx-frame-clone {
  display: inline-block;
}
.text-fx-stacks_in_1896 .tfx-c,
.text-fx-stacks_in_1896 .tfx-a,
.text-fx-stacks_in_1896 .tfx-w .tfx-l,
.text-fx-stacks_in_1896 .tfx-w {
   display: inline-block;
   will-change: opacity, transform;
}
.text-fx-stacks_in_1896 .tfx-a {
  position: relative;
}
.text-fx-stacks_in_1896 > * span.tfx-c {
  position: absolute;
  animation: tfx-blink_stacks_in_1896 1s linear infinite;
  color: rgba(254, 216, 8, 1.00);
}
@keyframes tfx-blink_stacks_in_1896 {
  from {
    color: rgba(254, 216, 8, 1.00);
  }
  66% {
    color: rgba(254, 216, 8, 1.00);
  }
  66.1% {
    color: transparent;
  }
  to {
    color: transparent;
  }
}
.text-fx-stacks_in_1896 .tfx-w {
  white-space: nowrap;
}
.text-fx-stacks_in_1896 .tfx-l.inline-letter {
  display: inline;
}



#stacks_in_1898 {
	font-size: 50%;
}
.frame_bg_stacks_in_1899 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.030000);
  opacity: 0.000000;
  transform-origin: left top;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1899 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: left top;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1899 300ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,0.030000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1899 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.030000);
    opacity: 0.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,0.030000);
    opacity: 1.000000;
  }
  

}
.frame_bg_stacks_in_1900 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,0.000000);
  opacity: 0.000000;
  transform-origin: right top;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1900 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: right top;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1900 100ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,1.000000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1900 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,0.000000);
    opacity: 0.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,1.000000);
    opacity: 1.000000;
  }
  

}
.frame_bg_stacks_in_1901 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.030000);
  opacity: 0.000000;
  transform-origin: right bottom;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1901 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: right bottom;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1901 300ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,0.030000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1901 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.030000);
    opacity: 0.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,0.030000);
    opacity: 1.000000;
  }
  

}
.frame_bg_stacks_in_1902 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,0.000000);
  opacity: 0.000000;
  transform-origin: left bottom;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1902 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: left bottom;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1902 100ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,1.000000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1902 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,0.000000);
    opacity: 0.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,1.000000);
    opacity: 1.000000;
  }
  

}
.frame_bg_stacks_in_1903 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,1.000000);
  opacity: 1.000000;
  transform-origin: left center;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1903 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: left center;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1903 400ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,1.000000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1903 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,1.000000);
    opacity: 1.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,1.000000);
    opacity: 1.000000;
  }
  

}

#stacks_in_1907 {
	font-size: 50%;
}

#stacks_out_1909 {
	width: 250px;
}
/* 1.0.1
- fixed a mobile firefox bug that prevented the text from resizing on page load.
- fixed a conflict with theme frameworks
- fixes added for Stacks HTML comments and whitespace settings
- fixed bug that could cause the text to jumble if you added bolding or other text styles to the first letter or word of a frame
*/
#stacks_in_1060 {
  overflow: hidden;
}
.text-fx-stacks_in_1060 .text-fx-example-wrap,
.text-fx-stacks_in_1060 .text-fx-frame,
.text-fx-stacks_in_1060 .tfx-a,
.text-fx-stacks_in_1060 .tfx-w {
  perspective: 1000px;
}
.text-fx-stacks_in_1060 > *,
.text-fx-stacks_in_1060 .text-fx-frame-example {
  
  text-align: center;
  
  margin-top: 16px;
  margin-bottom: 16px;
  word-spacing: 0.00px;
}

.text-fx-stacks_in_1060 .text-fx-wrapper,
.text-fx-stacks_in_1060 .text-fx-frame,
.text-fx-stacks_in_1060 .text-fx-frame-clone,
.text-fx-stacks_in_1060 > * span {
  line-height: 1.1;
}

.text-fx-stacks_in_1060 > *,
.text-fx-stacks_in_1060 .text-fx-frame-example span {
  font-family: inherit;
  
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 1.00px;
  line-height: 110%;
  color: rgba(0, 0, 0, 1.00);
  
}

.text-fx-stacks_in_1060 {
  opacity: 0;
}
.text-fx-stacks_in_1060.text-fx-start {
  opacity: 1;
}


#stacks_in_1060 .text-fx-timeline-wrap {
  display: block;
  position: relative;
  padding: 0;
  background: #e3e3e3;
}
#stacks_in_1060 .text-fx-progress {
  background: #999;
  height: 20px;
  position: absolute;
  z-index: 0;
  top: 50%;
  margin-top: -10px;
  width: 100%;
  left: 0px;
  transform-origin: left;
}
#stacks_in_1060 .text-fx-timeline {
  display: inline-block;
  text-align: left;
  width: 100%;
  overflow: hidden;
  padding: 32px 0 24px 0;
}
#stacks_in_1060 .tl-frame {
  display: block;
  float: left;
  position: relative;
}

#stacks_in_1060 .tl-frame > div:nth-child(4):after {
  transform: translate(-50%,-25%);
}
#stacks_in_1060 .tl-frame,
#stacks_in_1060 .tl-frame-inherited {

}
#stacks_in_1060 .tl-frame > div,
#stacks_in_1060 .text-fx-visual-inherited {
  position: relative;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
  background: #000;
  color: #fff;
  display: block;
  float: left;
}
#stacks_in_1060 .text-fx-visual-inherited {
  float: none;
}
#stacks_in_1060 .tl-frame > div:first-child {
  background: #666;
}
#stacks_in_1060 .tl-frame > div:nth-child(2) {
  background: #02C456;
}
#stacks_in_1060 .tl-frame > div:nth-child(3) {
  background: #4056F4;
}
#stacks_in_1060 .tl-frame > div:nth-child(4) {
  background: #FF4040;
}
#stacks_in_1060 .tl-frame > div:nth-child(5) {
    transform: translate(0,5px);
}
#stacks_in_1060 .tl-frame > div:before {
  position: relative;
  z-index: 99;
}
#stacks_in_1060 .tl-frame > div:after {
  position: absolute;
  bottom: 100%;
  color: #333;
  left: 50%;
  transform: translate(-50%,0);
}
#stacks_in_1060 .tl-frame > div:first-child:after {
  content: "";
  color: #666;
}
#stacks_in_1060 .tl-frame > div:nth-child(2):after {
  content: "In";
  color: #02C456;
}
#stacks_in_1060 .tl-frame > div:nth-child(3):after {
  content: "Active";
  color: #4056F4;
}
#stacks_in_1060 .tl-frame > div:nth-child(4):after {
  content: "Out";
  color: #FF4040;
}
#stacks_in_1060 .tl-frame > div:last-child:after {
  content: attr(data-name);
  bottom: auto;
  top: 100%;
  color: #333;
}
#stacks_in_1060 .tl-frame > div:last-child:before {
  content: "";
  background: #666;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  transform: scale(0,1);
}
#stacks_in_1060 .tl-frame > div:last-child,
#stacks_in_1060 .text-fx-visual-inherited {
  background: #333;
  grid-column: span 4;
  border-right: 1px solid rgba(255,255,255,0.3);
  grid-column: span 3;
}


/* .text-fx-stacks_in_1060 > * #stacks_in_1060 span.tfx-l,
.text-fx-stacks_in_1060 > * #stacks_in_1060 span.tfx-w {
  color: rgba(0, 0, 0, 1.00);
} */
.text-fx-stacks_in_1060 .text-fx-wrapper {
  display: grid;
  position: relative;
  width: 100%;
  align-items: center;
}
.text-fx-stacks_in_1060 .text-fx-frame,
.text-fx-stacks_in_1060 .text-fx-frame-clone {
  display: inline-block;
}
.text-fx-stacks_in_1060 .tfx-c,
.text-fx-stacks_in_1060 .tfx-a,
.text-fx-stacks_in_1060 .tfx-w .tfx-l,
.text-fx-stacks_in_1060 .tfx-w {
   display: inline-block;
   will-change: opacity, transform;
}
.text-fx-stacks_in_1060 .tfx-a {
  position: relative;
}
.text-fx-stacks_in_1060 > * span.tfx-c {
  position: absolute;
  animation: tfx-blink_stacks_in_1060 1s linear infinite;
  color: rgba(0, 0, 0, 1.00);
}
@keyframes tfx-blink_stacks_in_1060 {
  from {
    color: rgba(0, 0, 0, 1.00);
  }
  66% {
    color: rgba(0, 0, 0, 1.00);
  }
  66.1% {
    color: transparent;
  }
  to {
    color: transparent;
  }
}
.text-fx-stacks_in_1060 .tfx-w {
  white-space: nowrap;
}
.text-fx-stacks_in_1060 .tfx-l.inline-letter {
  display: inline;
}


.frame_bg_stacks_in_1068 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.050000);
  opacity: 0.000000;
  transform-origin: left bottom;
  background-color: rgba(0, 0, 0, 1.00);
}
.frame_bg_edit_stacks_in_1068 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: left bottom;
  background-color: rgba(0, 0, 0, 1.00);
  animation: edit_stacks_in_1068 500ms ease 1;
  
  transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1,0.05);
  opacity: 1;
  

}
@keyframes edit_stacks_in_1068 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.050000);
    opacity: 0.000000;
  }
  
  to {
    transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1,0.05);
    opacity: 1;
  }
  

}
#stacks_in_1878>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1878>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1878>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1878>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_1878>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_1878>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





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



.wow {
	visibility: hidden;
}
#stacks_in_1007 *,
#stacks_in_1007 *:before,
#stacks_in_1007 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1013 {
	margin:  6px;
}

#stacks_out_1013 {
	width: 250px;
}

#stacks_in_791 {
	margin:  6px;
}

#stacks_out_791 {
	width: 250px;
}
#stacks_in_1113 *,
#stacks_in_1113 *:before,
#stacks_in_1113 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1021 {
	margin:  6px;
}

#stacks_out_1021 {
	width: 250px;
}
#stacks_in_863 *,
#stacks_in_863 *:before,
#stacks_in_863 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_789 {
	margin:  6px;
}

#stacks_out_789 {
	width: 250px;
}
#stacks_in_1009 *,
#stacks_in_1009 *:before,
#stacks_in_1009 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1016 {
	margin:  6px;
}

#stacks_out_1016 {
	width: 250px;
}
/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_1099buttonPressWrapper{
	position: relative !important;
}

#stacks_in_1099 a, #stacks_in_1099 a:hover, #stacks_in_1099 a:visited, #stacks_in_1099 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_1099button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #D80016 !important;
	background-color: #FED808 !important;
	border-color: #D7B706 !important;
	box-sizing: border-box !important;
}

.stacks_in_1099button:hover{
	color: #FED808 !important;
	background-color: #D80016 !important;
	border-color: #B70012 !important;
}

#stacks_in_1099 a, #stacks_in_1099 a:visited, #stacks_in_1099 a:active{
	color: #D80016 !important;
}

#stacks_in_1099 a:hover{
	color: #FED808 !important;
}






































.stacks_in_1099buttonPressWrapper *{
	border-radius: 0 !important;
	
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_1099buttonPressWrapper{
	position: relative !important;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_1099buttonPressWrapper{
		text-align: center !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_1099buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */
#stacks_in_1099 {
	border: solid rgba(216, 0, 22, 1.00);
	border-width: 2px 2px 2px 2px;
	margin:  7px;
}
/* 1.0.1
- fixed a mobile firefox bug that prevented the text from resizing on page load.
- fixed a conflict with theme frameworks
- fixes added for Stacks HTML comments and whitespace settings
- fixed bug that could cause the text to jumble if you added bolding or other text styles to the first letter or word of a frame
*/
#stacks_in_1883 {
  overflow: hidden;
}
.text-fx-stacks_in_1883 .text-fx-example-wrap,
.text-fx-stacks_in_1883 .text-fx-frame,
.text-fx-stacks_in_1883 .tfx-a,
.text-fx-stacks_in_1883 .tfx-w {
  perspective: 1000px;
}
.text-fx-stacks_in_1883 > *,
.text-fx-stacks_in_1883 .text-fx-frame-example {
  
  text-align: center;
  
  margin-top: 0px;
  margin-bottom: 0px;
  word-spacing: 0.00px;
}

.text-fx-stacks_in_1883 .text-fx-wrapper,
.text-fx-stacks_in_1883 .text-fx-frame,
.text-fx-stacks_in_1883 .text-fx-frame-clone,
.text-fx-stacks_in_1883 > * span {
  line-height: 1.1;
}

.text-fx-stacks_in_1883 > *,
.text-fx-stacks_in_1883 .text-fx-frame-example span {
  font-family: "helveticaNeue",helvetica;
  
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.00px;
  line-height: 100%;
  color: rgba(254, 216, 8, 1.00);
  
}

.text-fx-stacks_in_1883 {
  opacity: 0;
}
.text-fx-stacks_in_1883.text-fx-start {
  opacity: 1;
}


#stacks_in_1883 .text-fx-timeline-wrap {
  display: block;
  position: relative;
  padding: 0;
  background: #e3e3e3;
}
#stacks_in_1883 .text-fx-progress {
  background: #999;
  height: 20px;
  position: absolute;
  z-index: 0;
  top: 50%;
  margin-top: -10px;
  width: 100%;
  left: 0px;
  transform-origin: left;
}
#stacks_in_1883 .text-fx-timeline {
  display: inline-block;
  text-align: left;
  width: 100%;
  overflow: hidden;
  padding: 32px 0 24px 0;
}
#stacks_in_1883 .tl-frame {
  display: block;
  float: left;
  position: relative;
}

#stacks_in_1883 .tl-frame > div:nth-child(2):after,

#stacks_in_1883 .tl-frame > div:nth-child(4):after {
  transform: translate(-50%,-25%);
}
#stacks_in_1883 .tl-frame,
#stacks_in_1883 .tl-frame-inherited {

}
#stacks_in_1883 .tl-frame > div,
#stacks_in_1883 .text-fx-visual-inherited {
  position: relative;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
  background: #000;
  color: #fff;
  display: block;
  float: left;
}
#stacks_in_1883 .text-fx-visual-inherited {
  float: none;
}
#stacks_in_1883 .tl-frame > div:first-child {
  background: #666;
}
#stacks_in_1883 .tl-frame > div:nth-child(2) {
  background: #02C456;
}
#stacks_in_1883 .tl-frame > div:nth-child(3) {
  background: #4056F4;
}
#stacks_in_1883 .tl-frame > div:nth-child(4) {
  background: #FF4040;
}
#stacks_in_1883 .tl-frame > div:nth-child(5) {
    transform: translate(0,5px);
}
#stacks_in_1883 .tl-frame > div:before {
  position: relative;
  z-index: 99;
}
#stacks_in_1883 .tl-frame > div:after {
  position: absolute;
  bottom: 100%;
  color: #333;
  left: 50%;
  transform: translate(-50%,0);
}
#stacks_in_1883 .tl-frame > div:first-child:after {
  content: "";
  color: #666;
}
#stacks_in_1883 .tl-frame > div:nth-child(2):after {
  content: "In";
  color: #02C456;
}
#stacks_in_1883 .tl-frame > div:nth-child(3):after {
  content: "Active";
  color: #4056F4;
}
#stacks_in_1883 .tl-frame > div:nth-child(4):after {
  content: "Out";
  color: #FF4040;
}
#stacks_in_1883 .tl-frame > div:last-child:after {
  content: attr(data-name);
  bottom: auto;
  top: 100%;
  color: #333;
}
#stacks_in_1883 .tl-frame > div:last-child:before {
  content: "";
  background: #666;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  transform: scale(0,1);
}
#stacks_in_1883 .tl-frame > div:last-child,
#stacks_in_1883 .text-fx-visual-inherited {
  background: #333;
  grid-column: span 4;
  border-right: 1px solid rgba(255,255,255,0.3);
  
}


/* .text-fx-stacks_in_1883 > * #stacks_in_1883 span.tfx-l,
.text-fx-stacks_in_1883 > * #stacks_in_1883 span.tfx-w {
  color: rgba(254, 216, 8, 1.00);
} */
.text-fx-stacks_in_1883 .text-fx-wrapper {
  display: grid;
  position: relative;
  width: 100%;
  align-items: center;
}
.text-fx-stacks_in_1883 .text-fx-frame,
.text-fx-stacks_in_1883 .text-fx-frame-clone {
  display: inline-block;
}
.text-fx-stacks_in_1883 .tfx-c,
.text-fx-stacks_in_1883 .tfx-a,
.text-fx-stacks_in_1883 .tfx-w .tfx-l,
.text-fx-stacks_in_1883 .tfx-w {
   display: inline-block;
   will-change: opacity, transform;
}
.text-fx-stacks_in_1883 .tfx-a {
  position: relative;
}
.text-fx-stacks_in_1883 > * span.tfx-c {
  position: absolute;
  animation: tfx-blink_stacks_in_1883 1s linear infinite;
  color: rgba(254, 216, 8, 1.00);
}
@keyframes tfx-blink_stacks_in_1883 {
  from {
    color: rgba(254, 216, 8, 1.00);
  }
  66% {
    color: rgba(254, 216, 8, 1.00);
  }
  66.1% {
    color: transparent;
  }
  to {
    color: transparent;
  }
}
.text-fx-stacks_in_1883 .tfx-w {
  white-space: nowrap;
}
.text-fx-stacks_in_1883 .tfx-l.inline-letter {
  display: inline;
}



#stacks_in_1885 {
	font-size: 50%;
}
.frame_bg_stacks_in_1886 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.030000);
  opacity: 0.000000;
  transform-origin: left top;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1886 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: left top;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1886 300ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,0.030000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1886 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.030000);
    opacity: 0.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,0.030000);
    opacity: 1.000000;
  }
  

}
.frame_bg_stacks_in_1887 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,0.000000);
  opacity: 0.000000;
  transform-origin: right top;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1887 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: right top;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1887 100ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,1.000000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1887 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,0.000000);
    opacity: 0.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,1.000000);
    opacity: 1.000000;
  }
  

}
.frame_bg_stacks_in_1888 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.030000);
  opacity: 0.000000;
  transform-origin: right bottom;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1888 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: right bottom;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1888 300ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,0.030000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1888 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,0.030000);
    opacity: 0.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,0.030000);
    opacity: 1.000000;
  }
  

}
.frame_bg_stacks_in_1889 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,0.000000);
  opacity: 0.000000;
  transform-origin: left bottom;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1889 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: left bottom;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1889 100ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,1.000000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1889 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,0.000000);
    opacity: 0.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.010000,1.000000);
    opacity: 1.000000;
  }
  

}
.frame_bg_stacks_in_1890 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,1.000000);
  opacity: 1.000000;
  transform-origin: left center;
  background-color: rgba(216, 0, 22, 1.00);
}
.frame_bg_edit_stacks_in_1890 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;;
  bottom: 0px;
  display: inline-block;
  transform-origin: left center;
  background-color: rgba(216, 0, 22, 1.00);
  animation: edit_stacks_in_1890 400ms ease 1;
  
  transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,1.000000);
  opacity: 1.000000;
  

}
@keyframes edit_stacks_in_1890 {
  from {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.000000,1.000000);
    opacity: 1.000000;
  }
  
  to {
    transform:  translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.000000,1.000000);
    opacity: 1.000000;
  }
  

}

#stacks_in_1894 {
	font-size: 50%;
}

#stacks_in_1217 {
	background-color: rgba(0, 0, 0, 1.00);
}

#stacks_in_1218 {
	font-size: 50%;
}
#stacks_in_1257.aspen_split{
	position: relative;
	font-size: 17px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1257.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_1257.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1257.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_1257.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.9;
	
	background-size: cover;
}

#stacks_in_1257.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1257 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1257.aspen_split .max_width_wrap_content{
	max-width: 950px;
	margin: 0 auto;
}

#stacks_in_1257.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00));
}

 
#stacks_in_1257.aspen_split{color:rgba(255, 255, 255, 1.00);} 
#stacks_in_1257.aspen_split h1, 
#stacks_in_1257.aspen_split h2,
#stacks_in_1257.aspen_split h3, 
#stacks_in_1257.aspen_split h4, 
#stacks_in_1257.aspen_split h5, 
#stacks_in_1257.aspen_split h6{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_1257.aspen_split a{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_1257.aspen_split a:hover{color: rgba(255, 255, 255, 1.00);}
#stacks_in_1302 {
	background-color: rgba(254, 216, 8, 1.00);
	padding: 18px 40px 18px 40px;
}

#stacks_out_1302 {
	margin-left:0;
}
#stacks_in_1304>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1304>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1304>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1304>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_1304>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_1304>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_1304 {
	padding: 10px 0px 16px 0px;
}
#stacks_in_1724 .rows_table{margin:0 auto;width:auto;border-style:solid;border-color:#000000;}#stacks_in_1724 .col1{border-width:0px;border-style:solid;}#stacks_in_1724 .col2{border-width:0px;border-style:solid;}#stacks_in_1724 .col3{border-width:0px;border-style:solid; display: none;}#stacks_in_1724 .col4{border-width:0px;border-style:solid; display: none;}#stacks_in_1724 .col5{border-width:0px;border-style:solid; display: none;}#stacks_in_1724 .col6{border-width:0px;border-style:solid; display: none;}#stacks_in_1724 .col7{border-width:0px;border-style:solid; display: none;}#stacks_in_1724 .col8{border-width:0px;border-style:solid; display: none;}#stacks_in_1724 .col9{border-width:0px;border-style:solid; display: none;}#stacks_in_1724 .col10{border-width:0px;border-style:solid; display: none;}

#stacks_in_1724 {
	background-color: rgba(254, 216, 8, 1.00);
}
#stacks_in_1767 .rows_table{margin:0 auto;width:auto;border-style:solid;border-color:#000000;}#stacks_in_1767 .col1{border-width:0px;border-style:solid;}#stacks_in_1767 .col2{border-width:0px;border-style:solid;}#stacks_in_1767 .col3{border-width:0px;border-style:solid; display: none;}#stacks_in_1767 .col4{border-width:0px;border-style:solid; display: none;}#stacks_in_1767 .col5{border-width:0px;border-style:solid; display: none;}#stacks_in_1767 .col6{border-width:0px;border-style:solid; display: none;}#stacks_in_1767 .col7{border-width:0px;border-style:solid; display: none;}#stacks_in_1767 .col8{border-width:0px;border-style:solid; display: none;}#stacks_in_1767 .col9{border-width:0px;border-style:solid; display: none;}#stacks_in_1767 .col10{border-width:0px;border-style:solid; display: none;}

#stacks_in_1767 {
	background-color: rgba(254, 216, 8, 1.00);
}

#stacks_in_1826 {
	background-color: rgba(254, 216, 8, 0.71);
	padding: 18px 40px 18px 40px;
}

#stacks_out_1826 {
	margin-left:0;
}
/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_1845buttonPressWrapper{
	position: relative !important;
}

#stacks_in_1845 a, #stacks_in_1845 a:hover, #stacks_in_1845 a:visited, #stacks_in_1845 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_1845button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #D80016 !important;
	background-color: #FED808 !important;
	border-color: #D7B706 !important;
	box-sizing: border-box !important;
}

.stacks_in_1845button:hover{
	color: #FED808 !important;
	background-color: #D80016 !important;
	border-color: #B70012 !important;
}

#stacks_in_1845 a, #stacks_in_1845 a:visited, #stacks_in_1845 a:active{
	color: #D80016 !important;
}

#stacks_in_1845 a:hover{
	color: #FED808 !important;
}






































.stacks_in_1845buttonPressWrapper *{
	border-radius: 0 !important;
	
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_1845buttonPressWrapper{
	position: relative !important;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_1845buttonPressWrapper{
		text-align: center !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_1845buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */
#stacks_in_1845 {
	border: solid rgba(216, 0, 22, 1.00);
	border-width: 2px 2px 2px 2px;
	margin:  7px;
}

#stacks_in_1255 {
	background-color: rgba(0, 0, 0, 1.00);
}

#stacks_in_1256 {
	font-size: 50%;
}
#stacks_in_1115.aspen_split{
	position: relative;
	font-size: 17px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1115.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_1115.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1115.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_1115.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.9;
	
	background-size: cover;
}

#stacks_in_1115.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1115 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1115.aspen_split .max_width_wrap_content{
	max-width: 950px;
	margin: 0 auto;
}

#stacks_in_1115.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00));
}

 
#stacks_in_1115.aspen_split{color:rgba(255, 255, 255, 1.00);} 
#stacks_in_1115.aspen_split h1, 
#stacks_in_1115.aspen_split h2,
#stacks_in_1115.aspen_split h3, 
#stacks_in_1115.aspen_split h4, 
#stacks_in_1115.aspen_split h5, 
#stacks_in_1115.aspen_split h6{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_1115.aspen_split a{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_1115.aspen_split a:hover{color: rgba(255, 255, 255, 1.00);}/* 1.0.1
- fixed a mobile firefox bug that prevented the text from resizing on page load.
- fixed a conflict with theme frameworks
- fixes added for Stacks HTML comments and whitespace settings
- fixed bug that could cause the text to jumble if you added bolding or other text styles to the first letter or word of a frame
*/
#stacks_in_1178 {
  overflow: hidden;
}
.text-fx-stacks_in_1178 .text-fx-example-wrap,
.text-fx-stacks_in_1178 .text-fx-frame,
.text-fx-stacks_in_1178 .tfx-a,
.text-fx-stacks_in_1178 .tfx-w {
  perspective: 1000px;
}
.text-fx-stacks_in_1178 > *,
.text-fx-stacks_in_1178 .text-fx-frame-example {
  
  text-align: center;
  
  margin-top: 16px;
  margin-bottom: 16px;
  word-spacing: 2.00px;
}

.text-fx-stacks_in_1178 .text-fx-wrapper,
.text-fx-stacks_in_1178 .text-fx-frame,
.text-fx-stacks_in_1178 .text-fx-frame-clone,
.text-fx-stacks_in_1178 > * span {
  line-height: 1.1;
}

.text-fx-stacks_in_1178 > *,
.text-fx-stacks_in_1178 .text-fx-frame-example span {
  font-family: inherit;
  
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 0.00px;
  line-height: 110%;
  color: rgba(255, 255, 255, 1.00);
  
}

.text-fx-stacks_in_1178 {
  opacity: 0;
}
.text-fx-stacks_in_1178.text-fx-start {
  opacity: 1;
}


.text-fx-stacks_in_1178 .tfx-a > .out > .mez > div[tag="node"]:before {
  content: "|";
  animation: tfx-blink_stacks_in_1178 1s linear infinite;
}
@keyframes tfx-blink_stacks_in_1178 {
  from {
    color: inherit;
  }
  66% {
    color: inherit;
  }
  66.1% {
    color: transparent;
  }
  to {
    color: transparent;
  }
}

#stacks_in_1178 .text-fx-timeline-wrap {
  display: block;
  position: relative;
  padding: 0;
  background: #e3e3e3;
}
#stacks_in_1178 .text-fx-progress {
  background: #999;
  height: 20px;
  position: absolute;
  z-index: 0;
  top: 50%;
  margin-top: -10px;
  width: 100%;
  left: 0px;
  transform-origin: left;
}
#stacks_in_1178 .text-fx-timeline {
  display: inline-block;
  text-align: left;
  width: 100%;
  overflow: hidden;
  padding: 32px 0 24px 0;
}
#stacks_in_1178 .tl-frame {
  display: block;
  float: left;
  position: relative;
}

#stacks_in_1178 .tl-frame > div:nth-child(2):after,

#stacks_in_1178 .tl-frame > div:nth-child(4):after {
  transform: translate(-50%,-25%);
}
#stacks_in_1178 .tl-frame,
#stacks_in_1178 .tl-frame-inherited {

}
#stacks_in_1178 .tl-frame > div,
#stacks_in_1178 .text-fx-visual-inherited {
  position: relative;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
  background: #000;
  color: #fff;
  display: block;
  float: left;
}
#stacks_in_1178 .text-fx-visual-inherited {
  float: none;
}
#stacks_in_1178 .tl-frame > div:first-child {
  background: #666;
}
#stacks_in_1178 .tl-frame > div:nth-child(2) {
  background: #02C456;
}
#stacks_in_1178 .tl-frame > div:nth-child(3) {
  background: #4056F4;
}
#stacks_in_1178 .tl-frame > div:nth-child(4) {
  background: #FF4040;
}
#stacks_in_1178 .tl-frame > div:nth-child(5) {
    transform: translate(0,5px);
}
#stacks_in_1178 .tl-frame > div:before {
  position: relative;
  z-index: 99;
}
#stacks_in_1178 .tl-frame > div:after {
  position: absolute;
  bottom: 100%;
  color: #333;
  left: 50%;
  transform: translate(-50%,0);
}
#stacks_in_1178 .tl-frame > div:first-child:after {
  content: "";
  color: #666;
}
#stacks_in_1178 .tl-frame > div:nth-child(2):after {
  content: "In";
  color: #02C456;
}
#stacks_in_1178 .tl-frame > div:nth-child(3):after {
  content: "Active";
  color: #4056F4;
}
#stacks_in_1178 .tl-frame > div:nth-child(4):after {
  content: "Out";
  color: #FF4040;
}
#stacks_in_1178 .tl-frame > div:last-child:after {
  content: attr(data-name);
  bottom: auto;
  top: 100%;
  color: #333;
}
#stacks_in_1178 .tl-frame > div:last-child:before {
  content: "";
  background: #666;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  transform: scale(0,1);
}
#stacks_in_1178 .tl-frame > div:last-child,
#stacks_in_1178 .text-fx-visual-inherited {
  background: #333;
  grid-column: span 4;
  border-right: 1px solid rgba(255,255,255,0.3);
  
}


/* .text-fx-stacks_in_1178 > * #stacks_in_1178 span.tfx-l,
.text-fx-stacks_in_1178 > * #stacks_in_1178 span.tfx-w {
  color: rgba(255, 255, 255, 1.00);
} */
.text-fx-stacks_in_1178 .text-fx-wrapper {
  display: grid;
  position: relative;
  width: 100%;
  align-items: center;
}
.text-fx-stacks_in_1178 .text-fx-frame,
.text-fx-stacks_in_1178 .text-fx-frame-clone {
  display: inline-block;
}
.text-fx-stacks_in_1178 .tfx-c,
.text-fx-stacks_in_1178 .tfx-a,
.text-fx-stacks_in_1178 .tfx-w .tfx-l,
.text-fx-stacks_in_1178 .tfx-w {
   display: inline-block;
   will-change: opacity, transform;
}
.text-fx-stacks_in_1178 .tfx-a {
  position: relative;
}
.text-fx-stacks_in_1178 > * span.tfx-c {
  position: absolute;
  animation: tfx-blink_stacks_in_1178 1s linear infinite;
  color: rgba(255, 255, 255, 1.00);
}
@keyframes tfx-blink_stacks_in_1178 {
  from {
    color: rgba(255, 255, 255, 1.00);
  }
  66% {
    color: rgba(255, 255, 255, 1.00);
  }
  66.1% {
    color: transparent;
  }
  to {
    color: transparent;
  }
}
.text-fx-stacks_in_1178 .tfx-w {
  white-space: nowrap;
}
.text-fx-stacks_in_1178 .tfx-l.inline-letter {
  display: inline;
}

#stacks_in_1178 {
	background-color: rgba(254, 216, 8, 0.62);
}


#stacks_in_1125>.s3_row {
	margin: 0 -1px;
}

#stacks_in_1125>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_1125>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_1125>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_1125>.s3_row>.s3_column {
	padding: 0 1px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_1125>.s3_row  {
		margin: -1px 0;
	}
	#stacks_in_1125>.s3_row>.s3_column {
		padding: 1px 0;
		width:100%;
	}


}



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



.wow {
	visibility: hidden;
}

#stacks_in_1138 {
	padding:  5px;
}

#stacks_in_1189 {
	padding:  5px;
}

#stacks_in_1193 {
	padding:  5px;
}

#stacks_in_1187 {
	padding:  5px;
}

#stacks_in_1922 {
	padding:  5px;
}
#stacks_in_1132 *,
#stacks_in_1132 *:before,
#stacks_in_1132 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1133 {
	padding:  5px;
}

#stacks_in_1194 {
	padding:  5px;
}

#stacks_in_1911 {
	padding:  5px;
}

#stacks_in_1200 {
	padding:  5px;
}

#stacks_in_1197 {
	padding:  5px;
}
#stacks_in_1127 *,
#stacks_in_1127 *:before,
#stacks_in_1127 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1128 {
	padding:  5px;
}

#stacks_in_1207 {
	padding:  5px;
}

#stacks_in_1208 {
	background-color: rgba(251, 255, 255, 1.00);
	margin:  20px;
	padding:  5px;
}

#stacks_in_1203 {
	padding:  5px;
}

#stacks_in_1924 {
	padding:  5px;
}
#stacks_in_1079.aspen_split{
	position: relative;
	font-size: 18px;
	padding: 20px 0px 20px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1079.aspen_split{
		padding: 20px 0px 20px 0px;
	}
}
#stacks_in_1079.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1079.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_1079.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.9;
	
	background-size: cover;
}

#stacks_in_1079.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1079 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1079.aspen_split .max_width_wrap_content{
	max-width: 950px;
	margin: 0 auto;
}

#stacks_in_1079.aspen_split{
	text-align:left;
	background-image: linear-gradient(to bottom, rgba(73, 0, 6, 0.00), rgba(113, 0, 3, 0.00));
}

 
#stacks_in_1079.aspen_split{color:rgba(148, 148, 148, 1.00);} 
#stacks_in_1079.aspen_split h1, 
#stacks_in_1079.aspen_split h2,
#stacks_in_1079.aspen_split h3, 
#stacks_in_1079.aspen_split h4, 
#stacks_in_1079.aspen_split h5, 
#stacks_in_1079.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1079.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1079.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_1083 {
	background-color: rgba(254, 216, 8, 1.00);
	padding: 18px 40px 18px 40px;
}

#stacks_out_1083 {
	margin-left:0;
}

#stacks_in_1253 {
	background-color: rgba(254, 216, 8, 0.71);
	margin: 0px 0px 16px 0px;
	padding: 18px 40px 20px 40px;
}

#stacks_out_1253 {
	margin-left:0;
}
#stacks_in_1085>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1085>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1085>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1085>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_1085>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_1085>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_1089 {
	background-color: rgba(255, 178, 25, 0.17);
	padding:  6px;
}
.blockOverlay.cartloom-modal{z-index:9000!important}#stacks_in_1092 .expose_launcher{}.expose_parkplatz{cursor:pointer}#expose_parkplatz{display:none;z-index:9999;padding:15px;margin:0;overflow:visible;background-color:transparent;width:80%;max-width:600px;position:fixed;top:50%;left:50%;opacity:0;transition:all 0.5s ease;transform:translateY(-50%) translateX(-50%);height:auto;min-height:50px;box-shadow: 2px 2px 10px #1F1F1F;border-radius:0px;border-style:solid;border-width:4px;border-color:#FFE600;background-color:#D80016;}#expose_parkplatz img.youtube_poster{display:none}#expose_parkplatz > a.close{z-index:1000000;background-image:url('../rw_common/plugins/stacks/expose-images/close.png');background-color:transparent !important;position:absolute;top:-12px;cursor:pointer;height:28px;width:28px;right:-12px;}
/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_1096buttonPressWrapper{
	position: relative !important;
}

#stacks_in_1096 a, #stacks_in_1096 a:hover, #stacks_in_1096 a:visited, #stacks_in_1096 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_1096button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #D80016 !important;
	background-color: #FED808 !important;
	border-color: #D7B706 !important;
	box-sizing: border-box !important;
}

.stacks_in_1096button:hover{
	color: #FED808 !important;
	background-color: #D80016 !important;
	border-color: #B70012 !important;
}

#stacks_in_1096 a, #stacks_in_1096 a:visited, #stacks_in_1096 a:active{
	color: #D80016 !important;
}

#stacks_in_1096 a:hover{
	color: #FED808 !important;
}






































.stacks_in_1096buttonPressWrapper *{
	border-radius: 0 !important;
	
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_1096buttonPressWrapper{
	position: relative !important;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_1096buttonPressWrapper{
		text-align: center !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_1096buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */
#stacks_in_1096 {
	border: solid rgba(216, 0, 22, 1.00);
	border-width: 2px 2px 2px 2px;
	margin:  7px;
}
/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_1098buttonPressWrapper{
	position: relative !important;
}

#stacks_in_1098 a, #stacks_in_1098 a:hover, #stacks_in_1098 a:visited, #stacks_in_1098 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_1098button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #D80016 !important;
	background-color: #FED808 !important;
	border-color: #D7B706 !important;
	box-sizing: border-box !important;
}

.stacks_in_1098button:hover{
	color: #FED808 !important;
	background-color: #D80016 !important;
	border-color: #B70012 !important;
}

#stacks_in_1098 a, #stacks_in_1098 a:visited, #stacks_in_1098 a:active{
	color: #D80016 !important;
}

#stacks_in_1098 a:hover{
	color: #FED808 !important;
}
















	/* -- TYPE FLAT REGULAR OVERRIDE -- */
	.stacks_in_1098button{
		border-color: #FED808 !important;
	}
	.stacks_in_1098button:hover{
		border-color: #D80016 !important;
	}
	























.stacks_in_1098buttonPressWrapper *{
	border-radius: 0 !important;
	
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_1098buttonPressWrapper{
	position: relative !important;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_1098buttonPressWrapper{
		text-align: center !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_1098buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */
#stacks_in_1098 {
	border: solid rgba(216, 0, 22, 1.00);
	border-width: 2px 2px 2px 2px;
	margin:  7px;
}
#stacks_in_885.aspen_split{
	position: relative;
	font-size: 18px;
	padding: 20px 0px 20px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_885.aspen_split{
		padding: 20px 0px 20px 0px;
	}
}
#stacks_in_885.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_885.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_885.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.3;
	
	
}

#stacks_in_885.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_885 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_885.aspen_split .max_width_wrap_content{
	max-width: 950px;
	margin: 0 auto;
}

#stacks_in_885.aspen_split{
	text-align:left;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00));
}

 
#stacks_in_885.aspen_split{color:rgba(148, 148, 148, 1.00);} 
#stacks_in_885.aspen_split h1, 
#stacks_in_885.aspen_split h2,
#stacks_in_885.aspen_split h3, 
#stacks_in_885.aspen_split h4, 
#stacks_in_885.aspen_split h5, 
#stacks_in_885.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_885.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_885.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_1111 {
	background-color: rgba(254, 216, 8, 0.82);
	padding: 18px 40px 18px 40px;
}

#stacks_out_1111 {
	margin-left:0;
}

#stacks_in_892 {
	font-weight: bold;
}
/* Start Contact Form stack CSS code */.stacks_in_893formwrap{	margin: 0;}#stacks_in_893comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_893mail{padding: 0;}.stacks_in_893fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_893formail{}.stacks_in_893fieldset{	padding: 0 20px 0 3px;}#stacks_in_893 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_893 label *{display: inline;}#stacks_in_893 .stacks_in_893input{padding: 3px 7px 3px 7px;width: 100%;font-size: 12px;background: #E8EAEA !important;color: #555555 !important;margin: 0;border: 1px solid #C5C6C6 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px !important;}#stacks_in_893 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #C5C6C6 !important;background: #E8EAEA !important;color: #555555 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_893sendmail{margin-top: 20px !important;padding: 4px 7px 4px 7px !important;display: block;text-align: center !important;font-size: 12px;color: #D80016 !important;border: 1px solid #D7B706 !important;background-color: #FED808 !important;-moz-border-radius: 3px !important;-webkit-border-radius: 3px !important;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_893response{display: none;width: 80%;border: 1px solid #D6392B;background: #FEF4FA;padding: 10px;margin: 20px auto 0 0;color: #444444;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;min-height: 35px;}.stacks_in_893loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_893autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_893 textarea{	color: #555555 !important;}/* End Contact Form stack CSS code */
#stacks_in_893 {
	background-color: rgba(12, 92, 141, 0.00);
}

#stacks_in_1232 {
	background-color: rgba(0, 0, 0, 1.00);
}

#stacks_in_1233 {
	font-size: 50%;
}
#stacks_in_1238.aspen_split{
	position: relative;
	font-size: 18px;
	padding: 20px 0px 20px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1238.aspen_split{
		padding: 20px 0px 20px 0px;
	}
}
#stacks_in_1238.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1238.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_1238.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.9;
	
	background-size: cover;
}

#stacks_in_1238.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1238 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1238.aspen_split .max_width_wrap_content{
	max-width: 950px;
	margin: 0 auto;
}

#stacks_in_1238.aspen_split{
	text-align:left;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00));
}

 
#stacks_in_1238.aspen_split{color:rgba(148, 148, 148, 1.00);} 
#stacks_in_1238.aspen_split h1, 
#stacks_in_1238.aspen_split h2,
#stacks_in_1238.aspen_split h3, 
#stacks_in_1238.aspen_split h4, 
#stacks_in_1238.aspen_split h5, 
#stacks_in_1238.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1238.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1238.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}#stacks_in_911>.s3_row {
	margin: 0 -0px;
}

#stacks_in_911>.s3_row>.s3_column_left {
	width: 51.99%;
}

#stacks_in_911>.s3_row>.s3_column_right {
	width: 48.009998%;
}




#stacks_in_911>.s3_row>.s3_column {
	padding: 0 0px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_911>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_911>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_911>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_911>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}






#stacks_in_911 {
	background-color: rgba(111, 112, 112, 0.00);
}

#stacks_out_911 {
	margin-right:0;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_880 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_880 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_880 .depth_section_link:hover .depth_in,
#stacks_in_880 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}




	#stacks_in_880{margin-bottom: 0;}


#stacks_in_880.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(192, 186, 178, 1.00);}
#stacks_in_880.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_880 .depth_in{
	position: relative;
	margin: 0 auto;
	text-align: left;
	
	
}

#stacks_in_880 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 0 50%;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(255, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_880 .depth_tint{ background: rgba(255, 255, 255, 0.00); }

#stacks_in_880 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_880 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_880 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_880 .heading_in{
	padding: 0px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_880 .heading_out h2{
	font-size: 25px;
	line-height: 24px;
	color: rgba(254, 216, 8, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	 text-align: left !important; 
	
	
	
	letter-spacing: 3px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_880 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_880 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_880 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 300px; 
	

	 text-align: left; 
	
	
	padding: 3% 10px 0% 10px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_880 .content_out{
		padding: 0% 0px 0% 0px;
		margin: 0 0%;}
	#stacks_in_880 .heading_out h2{
		font-size: 16px;
		line-height: 24px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_880 .depth_wrapper{background-color: rgba(255, 255, 255, 0.00);}
	#stacks_in_880 .depth_tint,
	#stacks_in_880 .content_tint{ background: none !important; }
	#stacks_in_880 .heading_out h2,
	#stacks_in_880 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_880 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_880 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_880 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 40px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_880 .content_in p.main_content{
	display: block;
	color: rgba(254, 216, 8, 1.00);
	font-size: 1em;
	line-height: 1.60;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 16%;
	 font-weight: bolder; 
	
	}

#stacks_in_880 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 4% 6.000000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(216, 0, 22, 1.00);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(216, 0, 22, 1.00);
	background: rgba(254, 216, 8, 1.00);
	 font-weight: bolder; 
	
	}

@media screen and (max-width: 770px){
	#stacks_in_880 .content_in a.depth_button{
		padding: 4% 8%;
	}
}
#stacks_in_880 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_880 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_880 .depth_aside{
	position: static;
	width: 100%;
	float: right;
	

	 
	margin-right: -300px; 
	

	

	
}
@media screen and (max-width: 770px){
	#stacks_in_880 .depth_aside{
		margin-right:0;
		
	}
}
#stacks_in_880 .depth_aside_wrapper{
	
	
	 
	padding-right: 300px; 
	
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	
	width: 100%;
}
#stacks_in_880 .depth_aside_wrapper,
#stacks_in_880 .depth_aside_wrapper .centered_image{
	text-align: left;
	
	
}
#stacks_in_880 .depth_aside_wrapper .centered_image .imageStyle{
	margin-left: 0;
	
}

 #stacks_in_880 .content_out .centered_image img{float: left;} 


 #stacks_in_880 .depth_aside_padding > div{margin-left: 0;margin-right: auto;}


#stacks_in_880 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_880 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	#stacks_in_880 .depth_aside_padding > div{margin-left: 0;margin-right: auto;}
	
	
}

#stacks_in_880 .depth_aside_padding{
	padding: 0px 30px 0px 0px;
}
@media screen and (max-width: 770px){
	#stacks_in_880 .depth_aside_padding{
		padding: 0px 0px 0px 0px;
	}
}

/* Layer Top */


#stacks_in_880 .depth_in{z-index: 4;}
#stacks_in_880 .depth_tint{z-index: 3;}
#stacks_in_880 .depth_gradient{z-index: 2;}
#stacks_in_880 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_880 .depth_wrapper.content_tint,
	#stacks_in_880 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_880 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_880 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_880 hr{border: 0;margin: 0;}

#stacks_in_880 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_880 hr.hr_bottom_header{
	height: 3px;
	width: 30%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_880 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_925 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_925 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_925 .depth_section_link:hover .depth_in,
#stacks_in_925 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}




	#stacks_in_925{margin-bottom: 0;}


#stacks_in_925.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(192, 186, 178, 1.00);}
#stacks_in_925.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_925 .depth_in{
	position: relative;
	margin: 0 auto;
	
	
	text-align: right;
}

#stacks_in_925 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(255, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_925 .depth_tint{ background: rgba(255, 255, 255, 0.00); }

#stacks_in_925 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_925 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	   
	background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to left, rgba(255, 255, 255, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_925 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_925 .heading_in{
	padding: 0px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_925 .heading_out h2{
	font-size: 25px;
	line-height: 24px;
	color: rgba(254, 216, 8, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	
	 text-align: right !important; 
	
	letter-spacing: 3px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_925 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	
	float: none;}

#stacks_in_925 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_925 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 300px; 
	

	
	
	 text-align: right; 
	padding: 3% 10px 0% 10px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_925 .content_out{
		padding: 0% 0px 0% 0px;
		margin: 0 0%;}
	#stacks_in_925 .heading_out h2{
		font-size: 16px;
		line-height: 24px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_925 .depth_wrapper{background-color: rgba(255, 255, 255, 0.00);}
	#stacks_in_925 .depth_tint,
	#stacks_in_925 .content_tint{ background: none !important; }
	#stacks_in_925 .heading_out h2,
	#stacks_in_925 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_925 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_925 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_925 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_925 .content_in p.main_content{
	display: block;
	color: rgba(254, 216, 8, 1.00);
	font-size: 1em;
	line-height: 1.40;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_925 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.17);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_925 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_925 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_925 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_925 .depth_aside{
	position: static;
	width: 100%;
	
	float: left;

	 
	margin-right: -300px; 
	

	

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_925 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_925 .depth_aside_wrapper{
	
	
	 
	padding-right: 300px; 
	
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	
	width: 100%;
}
#stacks_in_925 .depth_aside_wrapper,
#stacks_in_925 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_925 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}


 #stacks_in_925 .content_out .centered_image img{float: right;} 




#stacks_in_925 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_925 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_925 .depth_aside_padding{
	padding: 0px 50px 0px 0px;
}
@media screen and (max-width: 770px){
	#stacks_in_925 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_925 .depth_in{z-index: 4;}
#stacks_in_925 .depth_tint{z-index: 3;}
#stacks_in_925 .depth_gradient{z-index: 2;}
#stacks_in_925 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_925 .depth_wrapper.content_tint,
	#stacks_in_925 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_925 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_925 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_925 hr{border: 0;margin: 0;}

#stacks_in_925 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_925 hr.hr_bottom_header{
	height: 3px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_925 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/*!
*  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
*  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/@font-face{font-family:'FontAwesome';src:url('fonts/fontawesome-webfont.eot?v=4.7.0');src:url('fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

#stacks_in_921 {
	background-color: rgba(204, 204, 204, 1.00);
}
