@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);
  }
}
@charset "UTF-8";.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@keyframes 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)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes 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 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)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes 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 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%)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes 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 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}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes 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 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)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,100%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes 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)}}@-webkit-keyframes 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 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)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes 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 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}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes 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 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}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes 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 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}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes 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 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}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes 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 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}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes 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 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.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes 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 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}}.flipInX{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes 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 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}}.flipInY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes 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%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes 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%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes 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 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)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes 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 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)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes 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 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)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes 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 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)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes 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)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes 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)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes 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)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes 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)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes 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)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes 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)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes 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)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes 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)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}


@-webkit-keyframes 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 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);
  }
}
@-webkit-keyframes 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);
  }
}
@keyframes 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);
  }
}

.puffIn {
  -webkit-animation-name: puffIn;
  animation-name: puffIn;
}
.puffOut {
  -webkit-animation-name: puffOut;
  animation-name: puffOut;
}
.vanishIn {
  -webkit-animation-name: vanishIn;
  animation-name: vanishIn;
}.stacks-button{--button-text-color:#ffffff;--button-background-color:#0080ff;--button-background-color-hover:#0059b1;--button-radius:0;text-align:left;position:relative;box-sizing:border-box}.stacks-button > a,.stacks-button > button{color:var(--button-text-color) !important;background-color:var(--button-background-color) !important;display:inline-block;box-sizing:border-box;vertical-align:middle;margin:0 0 1rem 0;padding:.85em 1em;border:1px solid transparent;border-radius:var(--button-radius);transition:background-color .25s ease-out,color .25s ease-out;font-family:inherit;font-size:1rem;-webkit-appearance:none;line-height:1;text-align:center;text-decoration:none;cursor:pointer}.stacks-button > a:hover,.stacks-button > a:active,.stacks-button > button:hover,.stacks-button > button:active{background-color:var(--button-background-color-hover) !important}.stacks-button.button-center{text-align:center}.stacks-button.button-right{text-align:right}.stacks-button.button-fill > a,.stacks-button.button-fill > button{display:block;width:100%}.stacks-button.button-plain{--button-background-color:transparent!important;--button-background-color-hover:transparent!important}.stacks-button.button-round{--button-radius:30px}.stacks-button.button-radius{--button-radius:3px}
.lines{border:0;height:0;width:100%;margin:0;padding:0;opacity:1}.lines-wrapper{position:relative}.lines-wrapper.vertical{height:100%}

#stacks_in_450{
	max-width: 1000px;margin: 0 auto;
}
#stacks_in_450{
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_450{
		padding: 0px 0px 0px 0px;
	}
}/* -- Start Skyward Each css Template -- */

.stacks_in_1081skyward, .stacks_in_1081skywardInner, .stacks_in_1081wrapper {
	position: relative;
	z-index: 1;
	overflow: visible;
}


.stacks_in_1081skywardInner {
	top: -100px;
	margin-bottom: -100px;
}
	
		@media (max-width: 61.9em) {
			.stacks_in_1081skywardInner {
				top: -100px;
				margin-bottom: -100px;
			}
		}
		
		@media (max-width: 47.9em) {
			.stacks_in_1081skywardInner {
				top: -30px;
				margin-bottom: -30px;
			}
		}
	





.skywardClearing:after{
	content: "";
    display: table;
    clear: both;
}


/* -- End Skyward Each css Template -- */
#stacks_in_690 {
	margin: 0px 0px 40px 0px;
}
/* Start dooJet stack each CSS code */#jetOverflowRestrict{	overflow: hidden !important;}.jetAnimate{visibility: hidden;}#stacks_in_1105{z-index: 101;overflow: visible;}.stacks_top{overflow: visible;}.stacks_in:after {content: "";display: block;height: 0;clear: both;}/* End dooJet stack each CSS code */#stacks_in_695 *,
#stacks_in_695 *:before,
#stacks_in_695 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_696 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_1308 {
	margin: 60px 0px 100px 0px;
}
#stacks_in_1282 *,
#stacks_in_1282 *:before,
#stacks_in_1282 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1284 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_1293 *,
#stacks_in_1293 *:before,
#stacks_in_1293 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1297 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_1301 *,
#stacks_in_1301 *:before,
#stacks_in_1301 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_1233.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 1200px){
	#stacks_in_1233.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_1233.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1233.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_1233.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;
	
	
}

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


#stacks_in_1233.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

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

 
#stacks_in_1233.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1233.aspen_split h1, 
#stacks_in_1233.aspen_split h2,
#stacks_in_1233.aspen_split h3, 
#stacks_in_1233.aspen_split h4, 
#stacks_in_1233.aspen_split h5, 
#stacks_in_1233.aspen_split h6{color: rgba(248, 63, 13, 1.00);} 
#stacks_in_1233.aspen_split a{color: rgba(128, 80, 175, 1.00);} 
#stacks_in_1233.aspen_split a:hover{color: rgba(161, 101, 222, 1.00);}/* -- Start EACH CSS Template -- */



   	     
    #stacks_in_1516 .preview_only { display: none !important; }  





      

	#stacks_in_1516 .hype-29-svg { } #stacks_in_1516 .hype-svg-box { }	#stacks_in_1516 .hype-svg-fill { }
	#stacks_in_1516 .fix { -webkit-transform: translate3d(0,0,0) !important; -webkit-backface-visibility: hidden !important; backface-visibility: hidden !important; transition: background-color 0.3s; }	
	
	/* prevent issue in Foundation theme and some stacks */
	#stacks_in_1516 * { -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; }
	/* foundation RTL theme - fix - direction:ltr  */
	#stacks_in_1516 .HYPE_document { overflow: auto; 
	direction:ltr !important; margin:auto; position:relative; display: block; width: 100%;  border-radius: 0px !important; -webkit-border-radius: 0px !important; -moz-border-radius: 0px !important; height: 100% !important; }	
	#stacks_in_1516_default29_hype_container { margin:auto; position:relative; overflow: visible; width: auto; pointer-events: none;  }
	
	#stacks_in_1516_default29_hype_container path { }
	
	#stacks_in_1516_default29_hype_container, #stacks_in_1516 .HYPE_document { }	
	#stacks_in_1516 .wrapper-29 { pointer-events: none;  margin: auto; max-width: 500px; min-width: 50px !important;}
	
	/* Fixed 3x */
	#stacks_in_1516 .vertical-29 { margin: auto; width: 100%; position: relative; display: flex; pointer-events: none;	
	 min-height: 200px; 	
	}	
		
	/*  Minimum Height	*/ 	
	@media (max-width: 768px) {		 
		 #stacks_in_1516 .wrapper-29 {
		  
		   
		 	
		 }
		 #stacks_in_1516 .vertical-29 {
		 
		   
		 
		 }
	}
	@media (max-width: 568px) {		 
		 #stacks_in_1516 .wrapper-29 {
		  
		   
		 	
		 }		 
		 #stacks_in_1516 .vertical-29 {
		 
		    min-height: 200px; 
		 
		 }
	} 	
	/* fluid   */ 	
	#stacks_in_1516 .vertical-29 {  }	
				
	@media (max-width: 800px) {
		#stacks_in_1516 .vertical-29 {
		 }
	}
	/*  FIXED SIZE 	*/ 	
	#stacks_in_1516 .vertical-29 {  }		
	#stacks_in_1516 .wrapper-29 {  }
	
	@media (max-width: 768px) {
		 #stacks_in_1516 .wrapper-29 {
		 	
		 }
		 #stacks_in_1516 .vertical-29 {
		 
		 }
	  }
	  
	@media (max-width: 568px) {
		 #stacks_in_1516 .wrapper-29 {
		 	
		 }
		 #stacks_in_1516 .vertical-29 {
		    
		 }
	  } 	
		
	/*  BG Setting in Stack  */	
	#stacks_in_1516 .bg-29 { width: 100%; height: 100%; position: relative; margin: auto; text-align: center; overflow: hidden; pointer-events: none;		
		
	
	
    	
	
	 border-radius:0px !important; -webkit-border-radius:0px !important;	
	}
			
	/*  BG Overlay in Stack */
	#stacks_in_1516 .bg-29:before { content:""; width: 100%; height: 100%; position: absolute; top: 0; bottom: 0; left: 0; right: 0; display: none; 	
	   	
	}	 
	/*  BG Hype Setting - Switch  */	
	#stacks_in_1516 .hype-bg-29 {		
	
	 border: 0px solid rgba(229, 229, 229, 1.00) !important; 	   
	 border-radius:0px !important; -webkit-border-radius:0px !important; 
	 overflow: hidden;
	}		
	/*  BG Hype Overlay  */
	#stacks_in_1516 .hype-bg-29:before { content:""; width: 100%; height: 100%; position: absolute; top: 0; bottom: 0; left: 0; right: 0;	
	  	   
		 			 
	  	
	}	
	/*  SVG fix */		
	#stacks_in_1516 svg { overflow: visible !important; }		
	@media (min-width: 768px) {			
	  #stacks_in_1516 .hype-svg svg, #stacks_in_1516 .hype-svg-static svg, #stacks_in_1516 .hype-svg-fill svg { padding: 0px;}
	}			
	@media (max-width: 768px) {
	  #stacks_in_1516 .hype-svg svg, #stacks_in_1516 .hype-svg-static svg, #stacks_in_1516 .hype-svg-fill svg { 
	   padding: 0px; 	
	  	}
	}		 
	#stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static, #stacks_in_1516 .hype-svg-fill { 
	text-align: center !important; right: 0 !important; left: 0 !important; margin-right: auto !important; margin-left: auto !important;		
	transform: rotate( 0deg ) !important; -webkit-transform: rotate( 0deg ) !important;
	} 	
	#stacks_in_1516 .hype-svg-fill { 	
	
	}		
	#stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static { 	
	
	}		
	/* change shadow on tablet */
	@media (max-width: 768px){				
		#stacks_in_1516 .hype-svg-fill { 	
		
		}		
		#stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static { 	
		
		}		
    } 		
	/* hide shadow on mobile */
	@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 1) {
		 #stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static {
		 }
		#stacks_in_1516 .hype-svg-fill {
		 }
	}		
	@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
		 #stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static {
		 }
		#stacks_in_1516 .hype-svg-fill {
		 }
	}		
	@media (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
	  #stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static {
		 }
		#stacks_in_1516 .hype-svg-fill {
		 }
	}
	@media (max-width: 1024px) and (max-height: 600px) and (orientation: landscape) {
		 #stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static {
		 }
		#stacks_in_1516 .hype-svg-fill {
		 }
	}	
	@media (orientation: landscape) { }
	@media (min-width: 481px) and (max-width: 1024px) { }
	
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
		 #stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static {
		  }
			#stacks_in_1516 .hype-svg-fill {
		 }	
	}	
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
		 #stacks_in_1516 .hype-svg, #stacks_in_1516 .hype-svg-static {
		  }
			#stacks_in_1516 .hype-svg-fill {
		 }
	}	
	
	@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) { 	}
		
	/*  SVG style */
	#stacks_in_1516 .hype-svg path, #stacks_in_1516 .hype-svg-static path, #stacks_in_1516 .hype-svg-fill path { /*padding: 10px !important; */
	   fill: none !important;  	
	   stroke-linecap: round !important; 
	  
	  	   
		
		 stroke-linejoin: round !important; 
		
	}	
	
	/* synced to hype  */
	#stacks_in_1516 .hype-svg-fill path { 
	
	}	
		
	#stacks_in_1516 .hype-svg {  }
	#stacks_in_1516 .hype-svg-static {  }	
			
	/* links */
	#stacks_in_1516 .hype-link-hover-group, #stacks_in_1516 .hype-link-hover, #stacks_in_1516 .hype-link-hover-blank {
	 }	
	#stacks_in_1516 .hype-link-hover {  }
	/* mouseover */
	#stacks_in_1516 .hype-29-svg { 
	 
	 top: 0px !important; 
	 opacity: 1 !important; 		
	display: flex !important; align-items: center !important; justify-content: center !important; top: 0; bottom: 0; margin: auto; }			
	


/* -- End EACH CSS Template -- */
#stacks_in_1516 {
	padding: 40px 0px 0px 0px;
}

#stacks_in_713 {
	padding: 40px 10px 0px 10px;
}
/*
v1.0.2
+ Added touch swipe navigation support for touch devices
*/

#cycledex_stacks_in_714 .item-has-desc .cycledex-item-content {
  max-width: 380px;width: 100%;
}
#cycledex_stacks_in_714 .cycledex-item-content .cycledex-item-header {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
  margin: 0 0 8px 0;
}
#cycledex_stacks_in_714 .cycledex-item-content .cycledex-item-description {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
#cycledex_stacks_in_714 .cycledex-item-content {
  text-align: left;
  
  
}

#cycledex_stacks_in_714 .cycledex-item-content .cycledex-item-header {
  font-family: inherit;
  font-weight: 100;
  font-size: 22px;
  line-height: 24px;
  margin-top: 0px;
  margin-bottom: 12px;
  letter-spacing: 0.00px;
  word-spacing: 0.00px;
}




.cycledex_noscroll{overflow: clip;}
#cycledex_stacks_in_714.cycledex-outer-wrap {
  position: relative;
  padding: 120px 0px;
  min-height: 0vh;
  overflow: hidden;
}
#cycledex_stacks_in_714 .cycledex-inner-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  justify-content: stretch;
  align-items: center;
  grid-template-columns: minmax(64px,300.000000px) 600px minmax(64px,300.000000px);
  position: relative;
  z-index: 3;
}
#cycledex_stacks_in_714.cycledex-outer-wrap.cycledex-popup {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  transition: opacity 200ms ease;
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
}
#cycledex_stacks_in_714.cycledex-outer-wrap.cycledex-popup.cycledex_active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease;
}
#cycledex_stacks_in_714.cycledex-outer-wrap.cycledex-popup .cycledex-inner-wrap {
  max-width: 100vw;
}
#cycledex_stacks_in_714 .cycledex_close_icon {
  position:absolute;
  top: 32px;
  right: 32px;
  padding: 0;
  width: 64px;
  height: 64px;
  z-index: 4;
  cursor:pointer;
}
#cycledex_stacks_in_714 .cycledex_close_icon svg {
  width:64px;
  fill: rgba(255, 255, 255, 1.00);
  pointer-events: none;
}
#cycledex_stacks_in_714 .cycledex {
  position: relative;
  max-height: 100%;
  width: 100%;
  max-width: 600px;
  z-index: 0;
  aspect-ratio: 1.500000;
  pointer-events: none;
}
@supports not (aspect-ratio: auto) {
  #cycledex_stacks_in_714 .cycledex {
    padding-top: 66.666702%;
  }
}
#cycledex_stacks_in_714 .cycledex-nav {
  outline: none;
  color: rgba(255, 255, 255, 1.00);
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform-style: flat;
  transform: scale(1);
  -webkit-transform: scale(1) translateZ(800px);
  transition: transform 300ms ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
#cycledex_stacks_in_714 .cycledex-nav:hover {
  outline: none;
  transform: scale(1.2);
  -webkit-transform: scale(1.2) translateZ(800px);
}
#cycledex_stacks_in_714 .cycledex-nav:active {
  outline: none;
  opacity: 0.75;
}
#cycledex_stacks_in_714 .cycledex-nav svg {
  max-width: 64px;
  width: 100%;
  pointer-events: none;
  color: rgba(255, 255, 255, 1.00);
  fill: rgba(255, 255, 255, 1.00);
}
#cycledex_stacks_in_714 .cycledex .cycledex-item,
#cycledex_stacks_in_714 .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_714 .cycledex .cycledex-item .cycledex-depth-right,
#cycledex_stacks_in_714 .cycledex-overlay,
#cycledex_stacks_in_714 .cycledex-overlay-image,
#cycledex_stacks_in_714 .cycledex .cycledex-origin {
  background-color: rgba(252, 255, 255, 1.00);
}

#cycledex_stacks_in_714.cycledex_active .cycledex-overlay {
  opacity: 0.100000;
}

#cycledex_stacks_in_714[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item,
#cycledex_stacks_in_714[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_714[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-right  {
  background-color: #000;
}
#cycledex_stacks_in_714 .cycledex {
  perspective: 1200px;
  transform-style: preserve-3d;
}

#cycledex_stacks_in_714 .cycledex .cycledex-item,
#cycledex_stacks_in_714 .cycledex .cycledex-item > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_714 .cycledex .cycledex-origin,
#cycledex_stacks_in_714 .cycledex .cycledex-item {
  transition: transform 600ms ease,opacity 600ms ease;
  pointer-events: none;
  transform-style: preserve-3d;
}
#cycledex_stacks_in_714 .cycledex .cycledex-item > a {
  cursor: pointer;
}
/*  */
#cycledex_stacks_in_714.cycledex_active .cycledex .cycledex-item[data-r-index="0"] {
  pointer-events: auto;
}
#cycledex_stacks_in_714:not(.cycledex_active) .cycledex .cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,100px) rotateY(0deg) !important;
}
#cycledex_stacks_in_714 .cycledex-overlay-image,
#cycledex_stacks_in_714 .cycledex-overlay-image > div,
#cycledex_stacks_in_714 .cycledex-overlay,
#cycledex_stacks_in_714 .cycledex-blur,
#cycledex_stacks_in_714 .cycledex .cycledex-item .cycledex-item-background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_714 .cycledex-blur,
#cycledex_stacks_in_714 .cycledex-overlay {
  z-index: 2;
}

#cycledex_stacks_in_714 .cycledex-blur {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

#cycledex_stacks_in_714 .cycledex-overlay-image > div {
  opacity: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: opacity 900.000000ms ease,transform 900.000000ms ease;
  z-index: 0;
}
#cycledex_stacks_in_714 .cycledex .cycledex-item .cycledex-item-background {
  transition: opacity 600ms ease;
}
#cycledex_stacks_in_714 .cycledex .cycledex-item .cycledex-depth-left:after,
#cycledex_stacks_in_714 .cycledex .cycledex-item .cycledex-depth-right:after {
  opacity: 0.400000;
}
#cycledex_stacks_in_714 .cycledex .cycledex-item .cycledex-item-background {
  opacity: 0.500000;
}
/* #cycledex_stacks_in_714 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-left:after,
#cycledex_stacks_in_714 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-right:after, */
#cycledex_stacks_in_714 .cycledex .cycledex-item[data-r-index="0"] .cycledex-item-background {
  opacity: 1;
}
#cycledex_stacks_in_714 .cycledex-item-content {
  position: absolute;
  transition: transform 600ms ease, opacity 600ms ease;
  z-index: 10;
  pointer-events: none;
}
#cycledex_stacks_in_714.cycledex_active .cycledex-item-content {
  pointer-events: auto;
}
#cycledex_stacks_in_714 .cycledex-item.item-has-desc .cycledex-item-content,
#cycledex_stacks_in_714 .cycledex-item.item-has-link .cycledex-item-content {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#cycledex_stacks_in_714 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  width: auto;
}

#cycledex_stacks_in_714 .cycledex-item-content {
  
  left: -32px;
  
  
  bottom: calc(600px/8);transform: translate3d(64px,32px,1px) scale(0.666);transform-origin: center left;
  
  
  
  opacity: 0.5;
}
#cycledex_stacks_in_714 .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
  transform: translate3d(0px,0,100px);
  
  opacity: 1;
}
#cycledex_stacks_in_714 .cycledex div.cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,-100px) rotateY(0deg);
  opacity: 1;
}
#cycledex_stacks_in_714 .cycledex div.cycledex-item.item-has-link.cycledex-animation-complete[data-r-index="0"]:hover {
  transform: translate3d(0,0,0) rotateY(-10deg);
}

#cycledex_stacks_in_714 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  left: calc(600px/16);
  right: calc(600px/16);
}

  #cycledex_stacks_in_714[data-resize$="3"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    
    
    bottom: 24px; top: auto;
  }
  #cycledex_stacks_in_714[data-resize$="3"] .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
    transform: translate3d(0px,0,1px);
    
  }


  #cycledex_stacks_in_714[data-resize*="2"] .cycledex-inner-wrap {
    grid-template-columns: 64px 1fr 64px;
  }
  #cycledex_stacks_in_714[data-resize*="2"] .cycledex {
    aspect-ratio: auto;
    padding-top: 0;
  }
  #cycledex_stacks_in_714[data-resize*="2"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    right: 24px;
  }
  #cycledex_stacks_in_714[data-resize*="2"] .cycledex .cycledex-item[data-r-index="0"] {
    position: relative;
  }
  #cycledex_stacks_in_714[data-resize*="2"] .cycledex .cycledex-item {
    margin-left: calc((600px - 100%)/-2);
    margin-right: calc((600px - 100%)/-2);
    aspect-ratio: 1.500000;
  }
  @supports not (aspect-ratio: auto) {
    #cycledex_stacks_in_714[data-resize*="2"] .cycledex .cycledex-item.item-has-desc {
      padding-top: 66.666702%;
    }
  }
  #cycledex_stacks_in_714[data-resize*="2"] .item-has-desc .cycledex-item-content {
    max-width: calc(100% - 48px);
  }
  #cycledex_stacks_in_714[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 6px 0;
  }
  #cycledex_stacks_in_714[data-resize*="2"] .cycledex-item-content .cycledex-item-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  #cycledex_stacks_in_714[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 16.500000px;
    line-height: 18.000000px;
    margin-top: 0.000000px;
    margin-bottom: 9.000000px;
  }
  
  
  /*  */


  #cycledex_stacks_in_714[data-resize="123"] .cycledex .cycledex-item,
  #cycledex_stacks_in_714[data-resize="123"] .cycledex .cycledex-item > a {
    margin-left: 0px;
    margin-right: 0px;
  }
  #cycledex_stacks_in_714[data-resize="123"] .cycledex-inner-wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  #cycledex_stacks_in_714[data-resize="123"] .cycledex {
    grid-column: 1/-1;
    margin: 0 auto;
  }
  #cycledex_stacks_in_714[data-resize="123"] .cycledex {
    grid-row: 1;
  }
  @supports (aspect-ratio: auto) {
    #cycledex_stacks_in_714[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) {
      padding-top: 0;
    }
    #cycledex_stacks_in_714[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background {
      position: relative;
      aspect-ratio: 1.500000;
    }
  }
  #cycledex_stacks_in_714[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background .cycledex-item-content {
    position: relative;
    transform: none;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 32px 16px;
  }


.stacks_in_717 .cycledex-item-background,
.cycledex > .stacks_in_717 .cycledex-depth-left:after,
.cycledex > .stacks_in_717 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-717.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_717 .cycledex-depth-left,
.cycledex > .stacks_in_717 .cycledex-depth-right {
  position: relative;
}
.stacks_in_717 .cycledex-item-background:before,
.cycledex > .stacks_in_717 .cycledex-depth-left:before,
.cycledex > .stacks_in_717 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_719 {
	font-weight: bold;
}
.stacks_in_720 .cycledex-item-background,
.cycledex > .stacks_in_720 .cycledex-depth-left:after,
.cycledex > .stacks_in_720 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-720.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_720 .cycledex-depth-left,
.cycledex > .stacks_in_720 .cycledex-depth-right {
  position: relative;
}
.stacks_in_720 .cycledex-item-background:before,
.cycledex > .stacks_in_720 .cycledex-depth-left:before,
.cycledex > .stacks_in_720 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_722 {
	font-weight: bold;
}
.stacks_in_723 .cycledex-item-background,
.cycledex > .stacks_in_723 .cycledex-depth-left:after,
.cycledex > .stacks_in_723 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-723.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_723 .cycledex-depth-left,
.cycledex > .stacks_in_723 .cycledex-depth-right {
  position: relative;
}
.stacks_in_723 .cycledex-item-background:before,
.cycledex > .stacks_in_723 .cycledex-depth-left:before,
.cycledex > .stacks_in_723 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_725 {
	font-weight: bold;
}
.stacks_in_726 .cycledex-item-background,
.cycledex > .stacks_in_726 .cycledex-depth-left:after,
.cycledex > .stacks_in_726 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-726.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_726 .cycledex-depth-left,
.cycledex > .stacks_in_726 .cycledex-depth-right {
  position: relative;
}
.stacks_in_726 .cycledex-item-background:before,
.cycledex > .stacks_in_726 .cycledex-depth-left:before,
.cycledex > .stacks_in_726 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_728 {
	font-weight: bold;
}
.stacks_in_729 .cycledex-item-background,
.cycledex > .stacks_in_729 .cycledex-depth-left:after,
.cycledex > .stacks_in_729 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-729.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_729 .cycledex-depth-left,
.cycledex > .stacks_in_729 .cycledex-depth-right {
  position: relative;
}
.stacks_in_729 .cycledex-item-background:before,
.cycledex > .stacks_in_729 .cycledex-depth-left:before,
.cycledex > .stacks_in_729 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_731 {
	font-weight: bold;
}
.stacks_in_735 .cycledex-item-background,
.cycledex > .stacks_in_735 .cycledex-depth-left:after,
.cycledex > .stacks_in_735 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-735.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_735 .cycledex-depth-left,
.cycledex > .stacks_in_735 .cycledex-depth-right {
  position: relative;
}
.stacks_in_735 .cycledex-item-background:before,
.cycledex > .stacks_in_735 .cycledex-depth-left:before,
.cycledex > .stacks_in_735 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_737 {
	font-weight: bold;
}
.stacks_in_738 .cycledex-item-background,
.cycledex > .stacks_in_738 .cycledex-depth-left:after,
.cycledex > .stacks_in_738 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-738.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_738 .cycledex-depth-left,
.cycledex > .stacks_in_738 .cycledex-depth-right {
  position: relative;
}
.stacks_in_738 .cycledex-item-background:before,
.cycledex > .stacks_in_738 .cycledex-depth-left:before,
.cycledex > .stacks_in_738 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_740 {
	font-weight: bold;
}
.stacks_in_741 .cycledex-item-background,
.cycledex > .stacks_in_741 .cycledex-depth-left:after,
.cycledex > .stacks_in_741 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-741.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_741 .cycledex-depth-left,
.cycledex > .stacks_in_741 .cycledex-depth-right {
  position: relative;
}
.stacks_in_741 .cycledex-item-background:before,
.cycledex > .stacks_in_741 .cycledex-depth-left:before,
.cycledex > .stacks_in_741 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_743 {
	font-weight: bold;
}
.stacks_in_744 .cycledex-item-background,
.cycledex > .stacks_in_744 .cycledex-depth-left:after,
.cycledex > .stacks_in_744 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-744.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_744 .cycledex-depth-left,
.cycledex > .stacks_in_744 .cycledex-depth-right {
  position: relative;
}
.stacks_in_744 .cycledex-item-background:before,
.cycledex > .stacks_in_744 .cycledex-depth-left:before,
.cycledex > .stacks_in_744 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_746 {
	font-weight: bold;
}
.stacks_in_747 .cycledex-item-background,
.cycledex > .stacks_in_747 .cycledex-depth-left:after,
.cycledex > .stacks_in_747 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-747.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_747 .cycledex-depth-left,
.cycledex > .stacks_in_747 .cycledex-depth-right {
  position: relative;
}
.stacks_in_747 .cycledex-item-background:before,
.cycledex > .stacks_in_747 .cycledex-depth-left:before,
.cycledex > .stacks_in_747 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_749 {
	font-weight: bold;
}
.stacks_in_750 .cycledex-item-background,
.cycledex > .stacks_in_750 .cycledex-depth-left:after,
.cycledex > .stacks_in_750 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-750.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_750 .cycledex-depth-left,
.cycledex > .stacks_in_750 .cycledex-depth-right {
  position: relative;
}
.stacks_in_750 .cycledex-item-background:before,
.cycledex > .stacks_in_750 .cycledex-depth-left:before,
.cycledex > .stacks_in_750 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_752 {
	font-weight: bold;
}
.stacks_in_753 .cycledex-item-background,
.cycledex > .stacks_in_753 .cycledex-depth-left:after,
.cycledex > .stacks_in_753 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-753.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_753 .cycledex-depth-left,
.cycledex > .stacks_in_753 .cycledex-depth-right {
  position: relative;
}
.stacks_in_753 .cycledex-item-background:before,
.cycledex > .stacks_in_753 .cycledex-depth-left:before,
.cycledex > .stacks_in_753 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_755 {
	font-weight: bold;
}

#stacks_in_1260 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_1260 .pullquote:before, #stacks_in_1260 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_1260 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_1260 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_1260 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_1260 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_1260 {
	padding:  10px;
}

#stacks_in_1262 {
	font-size: 149%;
}
#stacks_in_1312.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1312.aspen_split{
		padding: 400px 0px 400px 0px;
	}
}
#stacks_in_1312.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1312.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_1312.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_1312.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1312 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1312.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

#stacks_in_1312.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_1312.aspen_split{color:rgba(255, 255, 255, 1.00);} 
#stacks_in_1312.aspen_split h1, 
#stacks_in_1312.aspen_split h2,
#stacks_in_1312.aspen_split h3, 
#stacks_in_1312.aspen_split h4, 
#stacks_in_1312.aspen_split h5, 
#stacks_in_1312.aspen_split h6{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_1312.aspen_split a{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_1312.aspen_split a:hover{color: rgba(255, 255, 255, 1.00);}
#stacks_in_1313 {
	padding: 120px 0px 120px 0px;
}
.fit-text.stacks_in_779{--fittext-min:2.000000rem;--fittext-max:8.000000rem;--fittext-slope:0.104348;--fittext-max-target:10.434799vw;--fittext-y-intercept:-1.391357;--fittext-min-target:-0.086960rem;font-size:clamp(var(--fittext-min),calc(var(--fittext-min-target) + var(--fittext-max-target)),var(--fittext-max)) ;line-height:1}
#stacks_in_620.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_620.aspen_split{
		padding: 50px 0px 0px 0px;
	}
}
#stacks_in_620.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_620.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_620.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_620.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_620 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_620.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

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

 
#stacks_in_620.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_620.aspen_split h1, 
#stacks_in_620.aspen_split h2,
#stacks_in_620.aspen_split h3, 
#stacks_in_620.aspen_split h4, 
#stacks_in_620.aspen_split h5, 
#stacks_in_620.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_620.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_620.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_778 {
	padding: 60px 0px 0px 0px;
}

#stacks_in_782 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_782 .pullquote:before, #stacks_in_782 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_782 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_782 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_782 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_782 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_782 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
/*
v1.0.2
+ Added touch swipe navigation support for touch devices
*/

#cycledex_stacks_in_784 .item-has-desc .cycledex-item-content {
  max-width: 380px;width: 100%;
}
#cycledex_stacks_in_784 .cycledex-item-content .cycledex-item-header {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
  margin: 0 0 8px 0;
}
#cycledex_stacks_in_784 .cycledex-item-content .cycledex-item-description {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
#cycledex_stacks_in_784 .cycledex-item-content {
  text-align: left;
  
  
}




.cycledex_noscroll{overflow: clip;}
#cycledex_stacks_in_784.cycledex-outer-wrap {
  position: relative;
  padding: 120px 0px;
  min-height: 0vh;
  overflow: hidden;
}
#cycledex_stacks_in_784 .cycledex-inner-wrap {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  justify-content: stretch;
  align-items: center;
  grid-template-columns: minmax(64px,350.000000px) 700px minmax(64px,350.000000px);
  position: relative;
  z-index: 3;
}
#cycledex_stacks_in_784.cycledex-outer-wrap.cycledex-popup {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  transition: opacity 200ms ease;
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
}
#cycledex_stacks_in_784.cycledex-outer-wrap.cycledex-popup.cycledex_active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease;
}
#cycledex_stacks_in_784.cycledex-outer-wrap.cycledex-popup .cycledex-inner-wrap {
  max-width: 100vw;
}
#cycledex_stacks_in_784 .cycledex_close_icon {
  position:absolute;
  top: 32px;
  right: 32px;
  padding: 0;
  width: 64px;
  height: 64px;
  z-index: 4;
  cursor:pointer;
}
#cycledex_stacks_in_784 .cycledex_close_icon svg {
  width:64px;
  fill: rgba(255, 255, 255, 1.00);
  pointer-events: none;
}
#cycledex_stacks_in_784 .cycledex {
  position: relative;
  max-height: 100%;
  width: 100%;
  max-width: 700px;
  z-index: 0;
  aspect-ratio: 1.356589;
  pointer-events: none;
}
@supports not (aspect-ratio: auto) {
  #cycledex_stacks_in_784 .cycledex {
    padding-top: 73.714294%;
  }
}
#cycledex_stacks_in_784 .cycledex-nav {
  outline: none;
  color: rgba(255, 255, 255, 1.00);
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform-style: flat;
  transform: scale(1);
  -webkit-transform: scale(1) translateZ(800px);
  transition: transform 300ms ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
#cycledex_stacks_in_784 .cycledex-nav:hover {
  outline: none;
  transform: scale(1.2);
  -webkit-transform: scale(1.2) translateZ(800px);
}
#cycledex_stacks_in_784 .cycledex-nav:active {
  outline: none;
  opacity: 0.75;
}
#cycledex_stacks_in_784 .cycledex-nav svg {
  max-width: 64px;
  width: 100%;
  pointer-events: none;
  color: rgba(255, 255, 255, 1.00);
  fill: rgba(255, 255, 255, 1.00);
}
#cycledex_stacks_in_784 .cycledex .cycledex-item,
#cycledex_stacks_in_784 .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_784 .cycledex .cycledex-item .cycledex-depth-right,
#cycledex_stacks_in_784 .cycledex-overlay,
#cycledex_stacks_in_784 .cycledex-overlay-image,
#cycledex_stacks_in_784 .cycledex .cycledex-origin {
  background-color: rgba(252, 255, 255, 1.00);
}

#cycledex_stacks_in_784.cycledex_active .cycledex-overlay {
  opacity: 0.000000;
}

#cycledex_stacks_in_784[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item,
#cycledex_stacks_in_784[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_784[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-right  {
  background-color: #000;
}
#cycledex_stacks_in_784 .cycledex {
  perspective: 1200px;
  transform-style: preserve-3d;
}

#cycledex_stacks_in_784 .cycledex .cycledex-item,
#cycledex_stacks_in_784 .cycledex .cycledex-item > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_784 .cycledex .cycledex-origin,
#cycledex_stacks_in_784 .cycledex .cycledex-item {
  transition: transform 600ms ease,opacity 600ms ease;
  pointer-events: none;
  transform-style: preserve-3d;
}
#cycledex_stacks_in_784 .cycledex .cycledex-item > a {
  cursor: pointer;
}
/*  */
#cycledex_stacks_in_784.cycledex_active .cycledex .cycledex-item[data-r-index="0"] {
  pointer-events: auto;
}
#cycledex_stacks_in_784:not(.cycledex_active) .cycledex .cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,100px) rotateY(0deg) !important;
}
#cycledex_stacks_in_784 .cycledex-overlay-image,
#cycledex_stacks_in_784 .cycledex-overlay-image > div,
#cycledex_stacks_in_784 .cycledex-overlay,
#cycledex_stacks_in_784 .cycledex-blur,
#cycledex_stacks_in_784 .cycledex .cycledex-item .cycledex-item-background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_784 .cycledex-blur,
#cycledex_stacks_in_784 .cycledex-overlay {
  z-index: 2;
}

#cycledex_stacks_in_784 .cycledex-blur {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

#cycledex_stacks_in_784 .cycledex-overlay-image > div {
  opacity: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: opacity 900.000000ms ease,transform 900.000000ms ease;
  z-index: 0;
}
#cycledex_stacks_in_784 .cycledex .cycledex-item .cycledex-item-background {
  transition: opacity 600ms ease;
}
#cycledex_stacks_in_784 .cycledex .cycledex-item .cycledex-depth-left:after,
#cycledex_stacks_in_784 .cycledex .cycledex-item .cycledex-depth-right:after {
  opacity: 0.400000;
}
#cycledex_stacks_in_784 .cycledex .cycledex-item .cycledex-item-background {
  opacity: 0.500000;
}
/* #cycledex_stacks_in_784 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-left:after,
#cycledex_stacks_in_784 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-right:after, */
#cycledex_stacks_in_784 .cycledex .cycledex-item[data-r-index="0"] .cycledex-item-background {
  opacity: 1;
}
#cycledex_stacks_in_784 .cycledex-item-content {
  position: absolute;
  transition: transform 600ms ease, opacity 600ms ease;
  z-index: 10;
  pointer-events: none;
}
#cycledex_stacks_in_784.cycledex_active .cycledex-item-content {
  pointer-events: auto;
}
#cycledex_stacks_in_784 .cycledex-item.item-has-desc .cycledex-item-content,
#cycledex_stacks_in_784 .cycledex-item.item-has-link .cycledex-item-content {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#cycledex_stacks_in_784 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  width: auto;
}

#cycledex_stacks_in_784 .cycledex-item-content {
  transform: translate3d(0,0,1px);
  
    left: calc(700px/16);
  
  
  
  
  
  bottom: calc(700px/16);
}
#cycledex_stacks_in_784 .cycledex div.cycledex-item.item-has-link[data-r-index="0"] {
  transform: translate3d(0,0,0) rotateY(0deg);
  opacity: 1;
}
#cycledex_stacks_in_784 .cycledex div.cycledex-item.item-has-link.cycledex-animation-complete[data-r-index="0"]:hover {
  transform: translate3d(0,0,100px) rotateY(0deg);
}

#cycledex_stacks_in_784 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  left: calc(700px/16);
  right: calc(700px/16);
}

  #cycledex_stacks_in_784[data-resize$="3"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    
    
    bottom: 24px; top: auto;
  }
  #cycledex_stacks_in_784[data-resize$="3"] .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
    transform: translate3d(0px,0,1px);
    
  }


  #cycledex_stacks_in_784[data-resize*="2"] .cycledex-inner-wrap {
    grid-template-columns: 64px 1fr 64px;
  }
  #cycledex_stacks_in_784[data-resize*="2"] .cycledex {
    aspect-ratio: auto;
    padding-top: 0;
  }
  #cycledex_stacks_in_784[data-resize*="2"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    right: 24px;
  }
  #cycledex_stacks_in_784[data-resize*="2"] .cycledex .cycledex-item[data-r-index="0"] {
    position: relative;
  }
  #cycledex_stacks_in_784[data-resize*="2"] .cycledex .cycledex-item {
    margin-left: calc((700px - 100%)/-2);
    margin-right: calc((700px - 100%)/-2);
    aspect-ratio: 1.356589;
  }
  @supports not (aspect-ratio: auto) {
    #cycledex_stacks_in_784[data-resize*="2"] .cycledex .cycledex-item.item-has-desc {
      padding-top: 73.714294%;
    }
  }
  #cycledex_stacks_in_784[data-resize*="2"] .item-has-desc .cycledex-item-content {
    max-width: calc(100% - 48px);
  }
  #cycledex_stacks_in_784[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 6px 0;
  }
  #cycledex_stacks_in_784[data-resize*="2"] .cycledex-item-content .cycledex-item-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  
  /*  */


  #cycledex_stacks_in_784[data-resize="123"] .cycledex .cycledex-item,
  #cycledex_stacks_in_784[data-resize="123"] .cycledex .cycledex-item > a {
    margin-left: 0px;
    margin-right: 0px;
  }
  #cycledex_stacks_in_784[data-resize="123"] .cycledex-inner-wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  #cycledex_stacks_in_784[data-resize="123"] .cycledex {
    grid-column: 1/-1;
    margin: 0 auto;
  }
  #cycledex_stacks_in_784[data-resize="123"] .cycledex {
    grid-row: 1;
  }
  @supports (aspect-ratio: auto) {
    #cycledex_stacks_in_784[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) {
      padding-top: 0;
    }
    #cycledex_stacks_in_784[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background {
      position: relative;
      aspect-ratio: 1.356589;
    }
  }
  #cycledex_stacks_in_784[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background .cycledex-item-content {
    position: relative;
    transform: none;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 32px 16px;
  }


.stacks_in_786 .cycledex-item-background,
.cycledex > .stacks_in_786 .cycledex-depth-left:after,
.cycledex > .stacks_in_786 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-786.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_850[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  
  
}


#stacks_in_852 {
	font-weight: bold;
}

#stacks_in_788 {
	font-weight: bold;
}

#stacks_in_789 {
	font-weight: bold;
}
.stacks_in_790 .cycledex-item-background,
.cycledex > .stacks_in_790 .cycledex-depth-left:after,
.cycledex > .stacks_in_790 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-790.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_853[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  
  
}


#stacks_in_855 {
	font-weight: bold;
}

#stacks_in_791 {
	font-weight: bold;
}

#stacks_in_792 {
	font-weight: bold;
}
.stacks_in_793 .cycledex-item-background,
.cycledex > .stacks_in_793 .cycledex-depth-left:after,
.cycledex > .stacks_in_793 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-793.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_856[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_858 {
	font-weight: bold;
}

#stacks_in_794 {
	font-weight: bold;
}

#stacks_in_795 {
	font-weight: bold;
}
.stacks_in_796 .cycledex-item-background,
.cycledex > .stacks_in_796 .cycledex-depth-left:after,
.cycledex > .stacks_in_796 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-796.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_859[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_861 {
	font-weight: bold;
}

#stacks_in_797 {
	font-weight: bold;
}

#stacks_in_798 {
	font-weight: bold;
}
.stacks_in_799 .cycledex-item-background,
.cycledex > .stacks_in_799 .cycledex-depth-left:after,
.cycledex > .stacks_in_799 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-799.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_862[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_864 {
	font-weight: bold;
}

#stacks_in_800 {
	font-weight: bold;
}

#stacks_in_801 {
	font-weight: bold;
}
.stacks_in_805 .cycledex-item-background,
.cycledex > .stacks_in_805 .cycledex-depth-left:after,
.cycledex > .stacks_in_805 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-805.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_868[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_870 {
	font-weight: bold;
}

#stacks_in_806 {
	font-weight: bold;
}

#stacks_in_807 {
	font-weight: bold;
}
.stacks_in_808 .cycledex-item-background,
.cycledex > .stacks_in_808 .cycledex-depth-left:after,
.cycledex > .stacks_in_808 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-808.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_871[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_873 {
	font-weight: bold;
}

#stacks_in_809 {
	font-weight: bold;
}

#stacks_in_810 {
	font-weight: bold;
}
.stacks_in_811 .cycledex-item-background,
.cycledex > .stacks_in_811 .cycledex-depth-left:after,
.cycledex > .stacks_in_811 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-811.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_874[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_876 {
	font-weight: bold;
}

#stacks_in_812 {
	font-weight: bold;
}

#stacks_in_813 {
	font-weight: bold;
}
.stacks_in_814 .cycledex-item-background,
.cycledex > .stacks_in_814 .cycledex-depth-left:after,
.cycledex > .stacks_in_814 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-814.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_877[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_879 {
	font-weight: bold;
}

#stacks_in_815 {
	font-weight: bold;
}

#stacks_in_816 {
	font-weight: bold;
}
.stacks_in_817 .cycledex-item-background,
.cycledex > .stacks_in_817 .cycledex-depth-left:after,
.cycledex > .stacks_in_817 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-817.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_880[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_882 {
	font-weight: bold;
}

#stacks_in_818 {
	font-weight: bold;
}

#stacks_in_819 {
	font-weight: bold;
}
.stacks_in_826 .cycledex-item-background,
.cycledex > .stacks_in_826 .cycledex-depth-left:after,
.cycledex > .stacks_in_826 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-826.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_889[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_891 {
	font-weight: bold;
}

#stacks_in_827 {
	font-weight: bold;
}

#stacks_in_828 {
	font-weight: bold;
}
.stacks_in_820 .cycledex-item-background,
.cycledex > .stacks_in_820 .cycledex-depth-left:after,
.cycledex > .stacks_in_820 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-820.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_883[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_885 {
	font-weight: bold;
}

#stacks_in_821 {
	font-weight: bold;
}

#stacks_in_822 {
	font-weight: bold;
}
.stacks_in_823 .cycledex-item-background,
.cycledex > .stacks_in_823 .cycledex-depth-left:after,
.cycledex > .stacks_in_823 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-823.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_886[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_888 {
	font-weight: bold;
}

#stacks_in_824 {
	font-weight: bold;
}

#stacks_in_825 {
	font-weight: bold;
}
.stacks_in_832 .cycledex-item-background,
.cycledex > .stacks_in_832 .cycledex-depth-left:after,
.cycledex > .stacks_in_832 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-832.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_895[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  
  
}


#stacks_in_897 {
	font-weight: bold;
}

#stacks_in_833 {
	font-weight: bold;
}

#stacks_in_834 {
	font-weight: bold;
}
.stacks_in_835 .cycledex-item-background,
.cycledex > .stacks_in_835 .cycledex-depth-left:after,
.cycledex > .stacks_in_835 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-835.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_898[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_900 {
	font-weight: bold;
}

#stacks_in_836 {
	font-weight: bold;
}

#stacks_in_837 {
	font-weight: bold;
}
.stacks_in_838 .cycledex-item-background,
.cycledex > .stacks_in_838 .cycledex-depth-left:after,
.cycledex > .stacks_in_838 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-838.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_901[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_903 {
	font-weight: bold;
}

#stacks_in_839 {
	font-weight: bold;
}

#stacks_in_840 {
	font-weight: bold;
}
.stacks_in_841 .cycledex-item-background,
.cycledex > .stacks_in_841 .cycledex-depth-left:after,
.cycledex > .stacks_in_841 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-841.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_904[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_906 {
	font-weight: bold;
}

#stacks_in_842 {
	font-weight: bold;
}

#stacks_in_843 {
	font-weight: bold;
}
.stacks_in_844 .cycledex-item-background,
.cycledex > .stacks_in_844 .cycledex-depth-left:after,
.cycledex > .stacks_in_844 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-844.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.element_stacks_in_907[data-deluxe-el][data-deluxe-text] {
  color: rgba(255, 255, 255, 1.00);
  
  
}


#stacks_in_909 {
	font-weight: bold;
}

#stacks_in_845 {
	font-weight: bold;
}

#stacks_in_846 {
	font-weight: bold;
}
#stacks_in_1568.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1568.aspen_split{
		padding: 50px 0px 0px 0px;
	}
}
#stacks_in_1568.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1568.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_1568.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_1568.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1568 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1568.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

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

 
#stacks_in_1568.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1568.aspen_split h1, 
#stacks_in_1568.aspen_split h2,
#stacks_in_1568.aspen_split h3, 
#stacks_in_1568.aspen_split h4, 
#stacks_in_1568.aspen_split h5, 
#stacks_in_1568.aspen_split h6{color: rgba(255, 63, 0, 1.00);} 
#stacks_in_1568.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1568.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_1570 {
	margin: 60px 0px 160px 0px;
}
/*
1.0.0
*/
.hlh-margin_stacks_in_1572 {
  margin: 50px 50px 50px 50px;
}
.halo-hyperlink_stacks_in_1572 {
  position: relative;
  z-index: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.halo-hyperlink_stacks_in_1572[hlh-aspect="1"] .halo-hyperlink-content-wrap {
  /* aspect-ratio: 1;
  width: 210px;
  max-width: 100%; */
}
.halo-hyperlink_stacks_in_1572 > a,
.halo-hyperlink_stacks_in_1572 > .observer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_1572 > a {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  z-index: 4;
}
.halo-hyperlink_stacks_in_1572 > .halo-hyperlink-effect-wrap {
  position: absolute;
  left: -50px;
  top: -50px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_1572 > .halo-hyperlink-effect-wrap.hhw-75 {
  left: -75px;
  top: -75px;
  bottom: -75px;
  right: -75px;
}
.halo-hyperlink_stacks_in_1572 > .halo-hyperlink-effect-wrap.hhw-150 {
  left: -150px;
  top: -150px;
  bottom: -150px;
  right: -150px;
}

.halo-hyperlink_stacks_in_1572 .halo-hyperlink-bg-inactive > div:nth-child(2),
.halo-hyperlink_stacks_in_1572 .halo-hyperlink-effect .halo-hyperlink-svg,
.halo-hyperlink_stacks_in_1572 .halo-hyperlink-inactive {
  
  transition: opacity 300ms ease;
  
}
.halo-hyperlink_stacks_in_1572 .halo-hyperlink-bg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 1;
  
  height: 210px;
  width: 210px;
  
}
.halo-hyperlink_stacks_in_1572 .halo-hyperlink-bg-inactive,
.halo-hyperlink_stacks_in_1572 .halo-hyperlink-bg {
  position: absolute;
  left: calc(6px / 2 - 1px);
  right: calc(6px / 2 - 1px);
  bottom: calc(6px / 2 - 1px);
  top: calc(6px / 2 - 1px);
  border-radius: 50%;
  
}
.halo-hyperlink_stacks_in_1572 .halo-hyperlink-bg-inactive {
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
}
.halo-hyperlink_stacks_in_1572 .halo-hyperlink-bg > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}


.halo-hyperlink_stacks_in_1572 .halo-hyperlink-inactive {
  display: none;
}

.halo-hyperlink_stacks_in_1572 .halo-hyperlink-bg > div {
  
  background: rgba(248, 63, 13, 1.00);
  border-radius: 50%;
  
  
}
.halo-hyperlink_stacks_in_1572 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.halo-hyperlink_stacks_in_1572 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: white;
  display: block;
  position: absolute;
}
.halo-hyperlink_stacks_in_1572 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap > svg {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* .halo-hyperlink_stacks_in_1572 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap:after {
  background: #FFFFFF;
} */
.halo-hyperlink_stacks_in_1572 .halo-hyperlink-content-wrap {
  position: relative;
  z-index: 3;
  /* z-index: 0; */
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  

}


.halo-hyperlink_stacks_in_1572 .halo-hyperlink-content-wrap > div:nth-child(2) {
  
}


#stacks_in_1574 {
	padding: 10px 0px 0px 0px;
}
#button_stacks_in_787{--button-text-color:rgba(255, 255, 255, 1.00);--button-background-color:rgba(248, 63, 13, 1.00);--button-background-color-hover:rgba(210, 53, 11, 1.00)}

#stacks_in_80.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_80.aspen_split{
		padding: 400px 0px 400px 0px;
	}
}
#stacks_in_80.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_80.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_80.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_80.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_80 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_80.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

#stacks_in_80.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_80.aspen_split{color:rgba(255, 255, 255, 1.00);} 
#stacks_in_80.aspen_split h1, 
#stacks_in_80.aspen_split h2,
#stacks_in_80.aspen_split h3, 
#stacks_in_80.aspen_split h4, 
#stacks_in_80.aspen_split h5, 
#stacks_in_80.aspen_split h6{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_80.aspen_split a{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_80.aspen_split a:hover{color: rgba(255, 255, 255, 1.00);}
#stacks_in_937 {
	margin: 120px 0px 120px 0px;
}
.fit-text.stacks_in_938{--fittext-min:2.000000rem;--fittext-max:8.000000rem;--fittext-slope:0.104348;--fittext-max-target:10.434799vw;--fittext-y-intercept:-1.391357;--fittext-min-target:-0.086960rem;font-size:clamp(var(--fittext-min),calc(var(--fittext-min-target) + var(--fittext-max-target)),var(--fittext-max)) ;line-height:1}
#stacks_in_1320.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1320.aspen_split{
		padding: 50px 0px 0px 0px;
	}
}
#stacks_in_1320.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1320.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_1320.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_1320.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1320 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1320.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

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

 
#stacks_in_1320.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1320.aspen_split h1, 
#stacks_in_1320.aspen_split h2,
#stacks_in_1320.aspen_split h3, 
#stacks_in_1320.aspen_split h4, 
#stacks_in_1320.aspen_split h5, 
#stacks_in_1320.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1320.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1320.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_1322 {
	padding: 60px 0px 0px 0px;
}

#stacks_in_1432 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_1432 .pullquote:before, #stacks_in_1432 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_1432 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_1432 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_1432 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_1432 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_1432 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
/*
v1.0.2
+ Added touch swipe navigation support for touch devices
*/

#cycledex_stacks_in_1394 .item-has-desc .cycledex-item-content {
  max-width: 380px;width: 100%;
}
#cycledex_stacks_in_1394 .cycledex-item-content .cycledex-item-header {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
  margin: 0 0 8px 0;
}
#cycledex_stacks_in_1394 .cycledex-item-content .cycledex-item-description {
  color: rgba(255, 255, 255, 1.00);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
#cycledex_stacks_in_1394 .cycledex-item-content {
  text-align: left;
  
  
}




.cycledex_noscroll{overflow: clip;}
#cycledex_stacks_in_1394.cycledex-outer-wrap {
  position: relative;
  padding: 120px 0px;
  min-height: 0vh;
  overflow: hidden;
}
#cycledex_stacks_in_1394 .cycledex-inner-wrap {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  justify-content: stretch;
  align-items: center;
  grid-template-columns: minmax(64px,350.000000px) 700px minmax(64px,350.000000px);
  position: relative;
  z-index: 3;
}
#cycledex_stacks_in_1394.cycledex-outer-wrap.cycledex-popup {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  transition: opacity 200ms ease;
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
}
#cycledex_stacks_in_1394.cycledex-outer-wrap.cycledex-popup.cycledex_active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease;
}
#cycledex_stacks_in_1394.cycledex-outer-wrap.cycledex-popup .cycledex-inner-wrap {
  max-width: 100vw;
}
#cycledex_stacks_in_1394 .cycledex_close_icon {
  position:absolute;
  top: 32px;
  right: 32px;
  padding: 0;
  width: 64px;
  height: 64px;
  z-index: 4;
  cursor:pointer;
}
#cycledex_stacks_in_1394 .cycledex_close_icon svg {
  width:64px;
  fill: rgba(255, 255, 255, 1.00);
  pointer-events: none;
}
#cycledex_stacks_in_1394 .cycledex {
  position: relative;
  max-height: 100%;
  width: 100%;
  max-width: 700px;
  z-index: 0;
  aspect-ratio: 1.356589;
  pointer-events: none;
}
@supports not (aspect-ratio: auto) {
  #cycledex_stacks_in_1394 .cycledex {
    padding-top: 73.714294%;
  }
}
#cycledex_stacks_in_1394 .cycledex-nav {
  outline: none;
  color: rgba(255, 255, 255, 1.00);
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform-style: flat;
  transform: scale(1);
  -webkit-transform: scale(1) translateZ(800px);
  transition: transform 300ms ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
#cycledex_stacks_in_1394 .cycledex-nav:hover {
  outline: none;
  transform: scale(1.2);
  -webkit-transform: scale(1.2) translateZ(800px);
}
#cycledex_stacks_in_1394 .cycledex-nav:active {
  outline: none;
  opacity: 0.75;
}
#cycledex_stacks_in_1394 .cycledex-nav svg {
  max-width: 64px;
  width: 100%;
  pointer-events: none;
  color: rgba(255, 255, 255, 1.00);
  fill: rgba(255, 255, 255, 1.00);
}
#cycledex_stacks_in_1394 .cycledex .cycledex-item,
#cycledex_stacks_in_1394 .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_1394 .cycledex .cycledex-item .cycledex-depth-right,
#cycledex_stacks_in_1394 .cycledex-overlay,
#cycledex_stacks_in_1394 .cycledex-overlay-image,
#cycledex_stacks_in_1394 .cycledex .cycledex-origin {
  background-color: rgba(252, 255, 255, 1.00);
}

#cycledex_stacks_in_1394.cycledex_active .cycledex-overlay {
  opacity: 0.100000;
}

#cycledex_stacks_in_1394[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item,
#cycledex_stacks_in_1394[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-left,
#cycledex_stacks_in_1394[data-back-color^="r"]:not([data-back-color$="1.00)"]) .cycledex .cycledex-item .cycledex-depth-right  {
  background-color: #000;
}
#cycledex_stacks_in_1394 .cycledex {
  perspective: 1200px;
  transform-style: preserve-3d;
}

#cycledex_stacks_in_1394 .cycledex .cycledex-item,
#cycledex_stacks_in_1394 .cycledex .cycledex-item > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_1394 .cycledex .cycledex-origin,
#cycledex_stacks_in_1394 .cycledex .cycledex-item {
  transition: transform 600ms ease,opacity 600ms ease;
  pointer-events: none;
  transform-style: preserve-3d;
}
#cycledex_stacks_in_1394 .cycledex .cycledex-item > a {
  cursor: pointer;
}
/*  */
#cycledex_stacks_in_1394.cycledex_active .cycledex .cycledex-item[data-r-index="0"] {
  pointer-events: auto;
}
#cycledex_stacks_in_1394:not(.cycledex_active) .cycledex .cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,100px) rotateY(0deg) !important;
}
#cycledex_stacks_in_1394 .cycledex-overlay-image,
#cycledex_stacks_in_1394 .cycledex-overlay-image > div,
#cycledex_stacks_in_1394 .cycledex-overlay,
#cycledex_stacks_in_1394 .cycledex-blur,
#cycledex_stacks_in_1394 .cycledex .cycledex-item .cycledex-item-background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#cycledex_stacks_in_1394 .cycledex-blur,
#cycledex_stacks_in_1394 .cycledex-overlay {
  z-index: 2;
}

#cycledex_stacks_in_1394 .cycledex-blur {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

#cycledex_stacks_in_1394 .cycledex-overlay-image > div {
  opacity: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: opacity 900.000000ms ease,transform 900.000000ms ease;
  z-index: 0;
}
#cycledex_stacks_in_1394 .cycledex .cycledex-item .cycledex-item-background {
  transition: opacity 600ms ease;
}
#cycledex_stacks_in_1394 .cycledex .cycledex-item .cycledex-depth-left:after,
#cycledex_stacks_in_1394 .cycledex .cycledex-item .cycledex-depth-right:after {
  opacity: 0.400000;
}
#cycledex_stacks_in_1394 .cycledex .cycledex-item .cycledex-item-background {
  opacity: 0.500000;
}
/* #cycledex_stacks_in_1394 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-left:after,
#cycledex_stacks_in_1394 .cycledex .cycledex-item[data-r-index="0"] .cycledex-depth-right:after, */
#cycledex_stacks_in_1394 .cycledex .cycledex-item[data-r-index="0"] .cycledex-item-background {
  opacity: 1;
}
#cycledex_stacks_in_1394 .cycledex-item-content {
  position: absolute;
  transition: transform 600ms ease, opacity 600ms ease;
  z-index: 10;
  pointer-events: none;
}
#cycledex_stacks_in_1394.cycledex_active .cycledex-item-content {
  pointer-events: auto;
}
#cycledex_stacks_in_1394 .cycledex-item.item-has-desc .cycledex-item-content,
#cycledex_stacks_in_1394 .cycledex-item.item-has-link .cycledex-item-content {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#cycledex_stacks_in_1394 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  width: auto;
}

#cycledex_stacks_in_1394 .cycledex-item-content {
  
  left: -32px;
  
  
  bottom: calc(700px/8);transform: translate3d(64px,32px,1px) scale(0.666);transform-origin: center left;
  
  
  
  opacity: 0.5;
}
#cycledex_stacks_in_1394 .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
  transform: translate3d(0px,0,100px);
  
  opacity: 1;
}
#cycledex_stacks_in_1394 .cycledex div.cycledex-item[data-r-index="0"] {
  transform: translate3d(0,0,-100px) rotateY(0deg);
  opacity: 1;
}
#cycledex_stacks_in_1394 .cycledex div.cycledex-item.item-has-link.cycledex-animation-complete[data-r-index="0"]:hover {
  transform: translate3d(0,0,0) rotateY(-10deg);
}

#cycledex_stacks_in_1394 .cycledex-item:not(.item-has-desc) .cycledex-item-content {
  left: calc(700px/16);
  right: calc(700px/16);
}

  #cycledex_stacks_in_1394[data-resize$="3"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    
    
    bottom: 24px; top: auto;
  }
  #cycledex_stacks_in_1394[data-resize$="3"] .cycledex div.cycledex-item[data-r-index="0"] .cycledex-item-content {
    transform: translate3d(0px,0,1px);
    
  }


  #cycledex_stacks_in_1394[data-resize*="2"] .cycledex-inner-wrap {
    grid-template-columns: 64px 1fr 64px;
  }
  #cycledex_stacks_in_1394[data-resize*="2"] .cycledex {
    aspect-ratio: auto;
    padding-top: 0;
  }
  #cycledex_stacks_in_1394[data-resize*="2"] .cycledex-item-content {
    /* transform: none; */
    left: 24px;
    right: 24px;
  }
  #cycledex_stacks_in_1394[data-resize*="2"] .cycledex .cycledex-item[data-r-index="0"] {
    position: relative;
  }
  #cycledex_stacks_in_1394[data-resize*="2"] .cycledex .cycledex-item {
    margin-left: calc((700px - 100%)/-2);
    margin-right: calc((700px - 100%)/-2);
    aspect-ratio: 1.356589;
  }
  @supports not (aspect-ratio: auto) {
    #cycledex_stacks_in_1394[data-resize*="2"] .cycledex .cycledex-item.item-has-desc {
      padding-top: 73.714294%;
    }
  }
  #cycledex_stacks_in_1394[data-resize*="2"] .item-has-desc .cycledex-item-content {
    max-width: calc(100% - 48px);
  }
  #cycledex_stacks_in_1394[data-resize*="2"] .cycledex-item-content .cycledex-item-header {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 6px 0;
  }
  #cycledex_stacks_in_1394[data-resize*="2"] .cycledex-item-content .cycledex-item-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  
  /*  */


  #cycledex_stacks_in_1394[data-resize="123"] .cycledex .cycledex-item,
  #cycledex_stacks_in_1394[data-resize="123"] .cycledex .cycledex-item > a {
    margin-left: 0px;
    margin-right: 0px;
  }
  #cycledex_stacks_in_1394[data-resize="123"] .cycledex-inner-wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
  #cycledex_stacks_in_1394[data-resize="123"] .cycledex {
    grid-column: 1/-1;
    margin: 0 auto;
  }
  #cycledex_stacks_in_1394[data-resize="123"] .cycledex {
    grid-row: 1;
  }
  @supports (aspect-ratio: auto) {
    #cycledex_stacks_in_1394[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) {
      padding-top: 0;
    }
    #cycledex_stacks_in_1394[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background {
      position: relative;
      aspect-ratio: 1.356589;
    }
  }
  #cycledex_stacks_in_1394[data-resize="123"] .cycledex .cycledex-item:not(.item-has-desc) .cycledex-item-background .cycledex-item-content {
    position: relative;
    transform: none;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 32px 16px;
  }


.stacks_in_1395 .cycledex-item-background,
.cycledex > .stacks_in_1395 .cycledex-depth-left:after,
.cycledex > .stacks_in_1395 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1395.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1395 .cycledex-depth-left,
.cycledex > .stacks_in_1395 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1395 .cycledex-item-background:before,
.cycledex > .stacks_in_1395 .cycledex-depth-left:before,
.cycledex > .stacks_in_1395 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1396 {
	font-size: 70%;
}
.stacks_in_1398 .cycledex-item-background,
.cycledex > .stacks_in_1398 .cycledex-depth-left:after,
.cycledex > .stacks_in_1398 .cycledex-depth-right:after {
  
  
  background-color: rgba(249, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1398.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1398 .cycledex-depth-left,
.cycledex > .stacks_in_1398 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1398 .cycledex-item-background:before,
.cycledex > .stacks_in_1398 .cycledex-depth-left:before,
.cycledex > .stacks_in_1398 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1399 {
	font-size: 70%;
}
.stacks_in_1410 .cycledex-item-background,
.cycledex > .stacks_in_1410 .cycledex-depth-left:after,
.cycledex > .stacks_in_1410 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1410.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1410 .cycledex-depth-left,
.cycledex > .stacks_in_1410 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1410 .cycledex-item-background:before,
.cycledex > .stacks_in_1410 .cycledex-depth-left:before,
.cycledex > .stacks_in_1410 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1411 {
	font-size: 70%;
}

#stacks_in_1412 {
	font-weight: bold;
}
.stacks_in_1401 .cycledex-item-background,
.cycledex > .stacks_in_1401 .cycledex-depth-left:after,
.cycledex > .stacks_in_1401 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1401.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1401 .cycledex-depth-left,
.cycledex > .stacks_in_1401 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1401 .cycledex-item-background:before,
.cycledex > .stacks_in_1401 .cycledex-depth-left:before,
.cycledex > .stacks_in_1401 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1402 {
	font-size: 70%;
}

#stacks_in_1403 {
	font-weight: bold;
}
.stacks_in_1407 .cycledex-item-background,
.cycledex > .stacks_in_1407 .cycledex-depth-left:after,
.cycledex > .stacks_in_1407 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1407.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1407 .cycledex-depth-left,
.cycledex > .stacks_in_1407 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1407 .cycledex-item-background:before,
.cycledex > .stacks_in_1407 .cycledex-depth-left:before,
.cycledex > .stacks_in_1407 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1408 {
	font-size: 70%;
}

#stacks_in_1409 {
	font-weight: bold;
}
.stacks_in_1413 .cycledex-item-background,
.cycledex > .stacks_in_1413 .cycledex-depth-left:after,
.cycledex > .stacks_in_1413 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1413.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1413 .cycledex-depth-left,
.cycledex > .stacks_in_1413 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1413 .cycledex-item-background:before,
.cycledex > .stacks_in_1413 .cycledex-depth-left:before,
.cycledex > .stacks_in_1413 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1414 {
	font-size: 70%;
}

#stacks_in_1415 {
	font-weight: bold;
}
.stacks_in_1404 .cycledex-item-background,
.cycledex > .stacks_in_1404 .cycledex-depth-left:after,
.cycledex > .stacks_in_1404 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1404.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1404 .cycledex-depth-left,
.cycledex > .stacks_in_1404 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1404 .cycledex-item-background:before,
.cycledex > .stacks_in_1404 .cycledex-depth-left:before,
.cycledex > .stacks_in_1404 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1405 {
	font-size: 70%;
}

#stacks_in_1406 {
	font-weight: bold;
}
.stacks_in_1425 .cycledex-item-background,
.cycledex > .stacks_in_1425 .cycledex-depth-left:after,
.cycledex > .stacks_in_1425 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1425.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1425 .cycledex-depth-left,
.cycledex > .stacks_in_1425 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1425 .cycledex-item-background:before,
.cycledex > .stacks_in_1425 .cycledex-depth-left:before,
.cycledex > .stacks_in_1425 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1426 {
	font-size: 70%;
}

#stacks_in_1427 {
	font-weight: bold;
}
.stacks_in_1419 .cycledex-item-background,
.cycledex > .stacks_in_1419 .cycledex-depth-left:after,
.cycledex > .stacks_in_1419 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1419.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1419 .cycledex-depth-left,
.cycledex > .stacks_in_1419 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1419 .cycledex-item-background:before,
.cycledex > .stacks_in_1419 .cycledex-depth-left:before,
.cycledex > .stacks_in_1419 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1420 {
	font-size: 70%;
}

#stacks_in_1421 {
	font-weight: bold;
}
.stacks_in_1422 .cycledex-item-background,
.cycledex > .stacks_in_1422 .cycledex-depth-left:after,
.cycledex > .stacks_in_1422 .cycledex-depth-right:after {
  
  
  background-color: rgba(252, 255, 255, 1.00);
  background-image:url(../files/backgroundImage-1422.jpg);
  
  
  background-position: center;
  background-size: cover;
}

.cycledex > .stacks_in_1422 .cycledex-depth-left,
.cycledex > .stacks_in_1422 .cycledex-depth-right {
  position: relative;
}
.stacks_in_1422 .cycledex-item-background:before,
.cycledex > .stacks_in_1422 .cycledex-depth-left:before,
.cycledex > .stacks_in_1422 .cycledex-depth-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  background: #000;
  opacity: 0.100000;
  
  z-index: 9;
}


#stacks_in_1423 {
	font-size: 70%;
}

#stacks_in_1424 {
	font-weight: bold;
}
#stacks_in_1540.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1540.aspen_split{
		padding: 50px 0px 0px 0px;
	}
}
#stacks_in_1540.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1540.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_1540.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_1540.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1540 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1540.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

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

 
#stacks_in_1540.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1540.aspen_split h1, 
#stacks_in_1540.aspen_split h2,
#stacks_in_1540.aspen_split h3, 
#stacks_in_1540.aspen_split h4, 
#stacks_in_1540.aspen_split h5, 
#stacks_in_1540.aspen_split h6{color: rgba(255, 63, 0, 1.00);} 
#stacks_in_1540.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1540.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_1450 {
	margin: 60px 0px 160px 0px;
}
/*
1.0.0
*/
.hlh-margin_stacks_in_1534 {
  margin: 50px 50px 50px 50px;
}
.halo-hyperlink_stacks_in_1534 {
  position: relative;
  z-index: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.halo-hyperlink_stacks_in_1534[hlh-aspect="1"] .halo-hyperlink-content-wrap {
  /* aspect-ratio: 1;
  width: 210px;
  max-width: 100%; */
}
.halo-hyperlink_stacks_in_1534 > a,
.halo-hyperlink_stacks_in_1534 > .observer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_1534 > a {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  z-index: 4;
}
.halo-hyperlink_stacks_in_1534 > .halo-hyperlink-effect-wrap {
  position: absolute;
  left: -50px;
  top: -50px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_1534 > .halo-hyperlink-effect-wrap.hhw-75 {
  left: -75px;
  top: -75px;
  bottom: -75px;
  right: -75px;
}
.halo-hyperlink_stacks_in_1534 > .halo-hyperlink-effect-wrap.hhw-150 {
  left: -150px;
  top: -150px;
  bottom: -150px;
  right: -150px;
}

.halo-hyperlink_stacks_in_1534 .halo-hyperlink-bg-inactive > div:nth-child(2),
.halo-hyperlink_stacks_in_1534 .halo-hyperlink-effect .halo-hyperlink-svg,
.halo-hyperlink_stacks_in_1534 .halo-hyperlink-inactive {
  
  transition: opacity 300ms ease;
  
}
.halo-hyperlink_stacks_in_1534 .halo-hyperlink-bg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 1;
  
  height: 210px;
  width: 210px;
  
}
.halo-hyperlink_stacks_in_1534 .halo-hyperlink-bg-inactive,
.halo-hyperlink_stacks_in_1534 .halo-hyperlink-bg {
  position: absolute;
  left: calc(6px / 2 - 1px);
  right: calc(6px / 2 - 1px);
  bottom: calc(6px / 2 - 1px);
  top: calc(6px / 2 - 1px);
  border-radius: 50%;
  
}
.halo-hyperlink_stacks_in_1534 .halo-hyperlink-bg-inactive {
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
}
.halo-hyperlink_stacks_in_1534 .halo-hyperlink-bg > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}


.halo-hyperlink_stacks_in_1534 .halo-hyperlink-inactive {
  display: none;
}

.halo-hyperlink_stacks_in_1534 .halo-hyperlink-bg > div {
  
  background: rgba(248, 63, 13, 1.00);
  border-radius: 50%;
  
  
}
.halo-hyperlink_stacks_in_1534 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.halo-hyperlink_stacks_in_1534 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: white;
  display: block;
  position: absolute;
}
.halo-hyperlink_stacks_in_1534 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap > svg {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* .halo-hyperlink_stacks_in_1534 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap:after {
  background: #FFFFFF;
} */
.halo-hyperlink_stacks_in_1534 .halo-hyperlink-content-wrap {
  position: relative;
  z-index: 3;
  /* z-index: 0; */
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  

}


.halo-hyperlink_stacks_in_1534 .halo-hyperlink-content-wrap > div:nth-child(2) {
  
}


#stacks_in_1535 {
	padding: 10px 0px 0px 0px;
}
#button_stacks_in_1451{--button-text-color:rgba(255, 255, 255, 1.00);--button-background-color:rgba(248, 63, 13, 1.00);--button-background-color-hover:rgba(210, 53, 11, 1.00)}

#stacks_in_469.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 60px 30px 80px 30px;
}
@media screen and (min-width: 770px){
	#stacks_in_469.aspen_split{
		padding: 180px 30px 120px 30px;
	}
}
#stacks_in_469.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_469.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_469.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_469.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_469 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_469.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

#stacks_in_469.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_469.aspen_split{color:rgba(255, 255, 255, 1.00);} 
#stacks_in_469.aspen_split h1, 
#stacks_in_469.aspen_split h2,
#stacks_in_469.aspen_split h3, 
#stacks_in_469.aspen_split h4, 
#stacks_in_469.aspen_split h5, 
#stacks_in_469.aspen_split h6{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_469.aspen_split a{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_469.aspen_split a:hover{color: rgba(255, 255, 255, 1.00);}
#stacks_in_661 {
	padding: 0px 0px 60px 0px;
}
/* Start dooJet stack each CSS code */#jetOverflowRestrict{	overflow: hidden !important;}.jetAnimate{visibility: hidden;}#stacks_in_1029{z-index: 101;overflow: visible;}.stacks_top{overflow: visible;}.stacks_in:after {content: "";display: block;height: 0;clear: both;}/* End dooJet stack each CSS code */
#stacks_in_1029 {
	margin: 120px 0px 0px 0px;
}

#stacks_in_392 {
	margin: 60px 0px 60px 0px;
}
#stacks_in_1546.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1546.aspen_split{
		padding: 50px 0px 0px 0px;
	}
}
#stacks_in_1546.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1546.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_1546.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_1546.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1546 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1546.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

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

 
#stacks_in_1546.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1546.aspen_split h1, 
#stacks_in_1546.aspen_split h2,
#stacks_in_1546.aspen_split h3, 
#stacks_in_1546.aspen_split h4, 
#stacks_in_1546.aspen_split h5, 
#stacks_in_1546.aspen_split h6{color: rgba(255, 63, 0, 1.00);} 
#stacks_in_1546.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1546.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_522 {
	padding:  20px;
}

#stacks_in_1548 {
	margin: 20px 0px 160px 0px;
}
/*
1.0.0
*/
.hlh-margin_stacks_in_1530 {
  margin: 50px 50px 50px 50px;
}
.halo-hyperlink_stacks_in_1530 {
  position: relative;
  z-index: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.halo-hyperlink_stacks_in_1530[hlh-aspect="1"] .halo-hyperlink-content-wrap {
  /* aspect-ratio: 1;
  width: 210px;
  max-width: 100%; */
}
.halo-hyperlink_stacks_in_1530 > a,
.halo-hyperlink_stacks_in_1530 > .observer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_1530 > a {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  z-index: 4;
}
.halo-hyperlink_stacks_in_1530 > .halo-hyperlink-effect-wrap {
  position: absolute;
  left: -50px;
  top: -50px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_1530 > .halo-hyperlink-effect-wrap.hhw-75 {
  left: -75px;
  top: -75px;
  bottom: -75px;
  right: -75px;
}
.halo-hyperlink_stacks_in_1530 > .halo-hyperlink-effect-wrap.hhw-150 {
  left: -150px;
  top: -150px;
  bottom: -150px;
  right: -150px;
}

.halo-hyperlink_stacks_in_1530 .halo-hyperlink-bg-inactive > div:nth-child(2),
.halo-hyperlink_stacks_in_1530 .halo-hyperlink-effect .halo-hyperlink-svg,
.halo-hyperlink_stacks_in_1530 .halo-hyperlink-inactive {
  
  transition: opacity 300ms ease;
  
}
.halo-hyperlink_stacks_in_1530 .halo-hyperlink-bg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 1;
  
  height: 210px;
  width: 210px;
  
}
.halo-hyperlink_stacks_in_1530 .halo-hyperlink-bg-inactive,
.halo-hyperlink_stacks_in_1530 .halo-hyperlink-bg {
  position: absolute;
  left: calc(6px / 2 - 1px);
  right: calc(6px / 2 - 1px);
  bottom: calc(6px / 2 - 1px);
  top: calc(6px / 2 - 1px);
  border-radius: 50%;
  
}
.halo-hyperlink_stacks_in_1530 .halo-hyperlink-bg-inactive {
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
}
.halo-hyperlink_stacks_in_1530 .halo-hyperlink-bg > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}


.halo-hyperlink_stacks_in_1530 .halo-hyperlink-inactive {
  display: none;
}

.halo-hyperlink_stacks_in_1530 .halo-hyperlink-bg > div {
  
  background: rgba(248, 63, 13, 1.00);
  border-radius: 50%;
  
  
}
.halo-hyperlink_stacks_in_1530 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.halo-hyperlink_stacks_in_1530 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: white;
  display: block;
  position: absolute;
}
.halo-hyperlink_stacks_in_1530 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap > svg {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* .halo-hyperlink_stacks_in_1530 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap:after {
  background: #FFFFFF;
} */
.halo-hyperlink_stacks_in_1530 .halo-hyperlink-content-wrap {
  position: relative;
  z-index: 3;
  /* z-index: 0; */
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  

}


.halo-hyperlink_stacks_in_1530 .halo-hyperlink-content-wrap > div:nth-child(2) {
  
}


#stacks_in_1532 {
	padding: 10px 0px 0px 0px;
}
#button_stacks_in_1464{--button-text-color:rgba(255, 255, 255, 1.00);--button-background-color:rgba(248, 63, 13, 1.00);--button-background-color-hover:rgba(210, 53, 11, 1.00)}

#stacks_in_985.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 60px 30px 80px 30px;
}
@media screen and (min-width: 770px){
	#stacks_in_985.aspen_split{
		padding: 180px 30px 120px 30px;
	}
}
#stacks_in_985.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_985.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_985.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_985.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_985 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_985.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

#stacks_in_985.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_985.aspen_split{color:rgba(255, 255, 255, 1.00);} 
#stacks_in_985.aspen_split h1, 
#stacks_in_985.aspen_split h2,
#stacks_in_985.aspen_split h3, 
#stacks_in_985.aspen_split h4, 
#stacks_in_985.aspen_split h5, 
#stacks_in_985.aspen_split h6{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_985.aspen_split a{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_985.aspen_split a:hover{color: rgba(255, 255, 255, 1.00);}
#stacks_in_1457 {
	margin: 120px 0px 120px 0px;
}
.fit-text.stacks_in_1461{--fittext-min:2.000000rem;--fittext-max:8.000000rem;--fittext-slope:0.104348;--fittext-max-target:10.434799vw;--fittext-y-intercept:-1.391357;--fittext-min-target:-0.086960rem;font-size:clamp(var(--fittext-min),calc(var(--fittext-min-target) + var(--fittext-max-target)),var(--fittext-max)) ;line-height:1}
#stacks_in_1556.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1556.aspen_split{
		padding: 50px 0px 0px 0px;
	}
}
#stacks_in_1556.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1556.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_1556.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_1556.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1556 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_1556.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

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

 
#stacks_in_1556.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1556.aspen_split h1, 
#stacks_in_1556.aspen_split h2,
#stacks_in_1556.aspen_split h3, 
#stacks_in_1556.aspen_split h4, 
#stacks_in_1556.aspen_split h5, 
#stacks_in_1556.aspen_split h6{color: rgba(255, 63, 0, 1.00);} 
#stacks_in_1556.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1556.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_1558 {
	padding:  20px;
}

#stacks_in_1561 {
	margin: 20px 0px 160px 0px;
}
/*
1.0.0
*/
.hlh-margin_stacks_in_1562 {
  margin: 50px 50px 50px 50px;
}
.halo-hyperlink_stacks_in_1562 {
  position: relative;
  z-index: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.halo-hyperlink_stacks_in_1562[hlh-aspect="1"] .halo-hyperlink-content-wrap {
  /* aspect-ratio: 1;
  width: 210px;
  max-width: 100%; */
}
.halo-hyperlink_stacks_in_1562 > a,
.halo-hyperlink_stacks_in_1562 > .observer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_1562 > a {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  z-index: 4;
}
.halo-hyperlink_stacks_in_1562 > .halo-hyperlink-effect-wrap {
  position: absolute;
  left: -50px;
  top: -50px;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.halo-hyperlink_stacks_in_1562 > .halo-hyperlink-effect-wrap.hhw-75 {
  left: -75px;
  top: -75px;
  bottom: -75px;
  right: -75px;
}
.halo-hyperlink_stacks_in_1562 > .halo-hyperlink-effect-wrap.hhw-150 {
  left: -150px;
  top: -150px;
  bottom: -150px;
  right: -150px;
}

.halo-hyperlink_stacks_in_1562 .halo-hyperlink-bg-inactive > div:nth-child(2),
.halo-hyperlink_stacks_in_1562 .halo-hyperlink-effect .halo-hyperlink-svg,
.halo-hyperlink_stacks_in_1562 .halo-hyperlink-inactive {
  
  transition: opacity 300ms ease;
  
}
.halo-hyperlink_stacks_in_1562 .halo-hyperlink-bg-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  opacity: 1;
  
  height: 210px;
  width: 210px;
  
}
.halo-hyperlink_stacks_in_1562 .halo-hyperlink-bg-inactive,
.halo-hyperlink_stacks_in_1562 .halo-hyperlink-bg {
  position: absolute;
  left: calc(6px / 2 - 1px);
  right: calc(6px / 2 - 1px);
  bottom: calc(6px / 2 - 1px);
  top: calc(6px / 2 - 1px);
  border-radius: 50%;
  
}
.halo-hyperlink_stacks_in_1562 .halo-hyperlink-bg-inactive {
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: -1px;
}
.halo-hyperlink_stacks_in_1562 .halo-hyperlink-bg > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}


.halo-hyperlink_stacks_in_1562 .halo-hyperlink-inactive {
  display: none;
}

.halo-hyperlink_stacks_in_1562 .halo-hyperlink-bg > div {
  
  background: rgba(248, 63, 13, 1.00);
  border-radius: 50%;
  
  
}
.halo-hyperlink_stacks_in_1562 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.halo-hyperlink_stacks_in_1562 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: white;
  display: block;
  position: absolute;
}
.halo-hyperlink_stacks_in_1562 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap > svg {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* .halo-hyperlink_stacks_in_1562 > .halo-hyperlink-effect-wrap > .halo-hyperlink-wrap:after {
  background: #FFFFFF;
} */
.halo-hyperlink_stacks_in_1562 .halo-hyperlink-content-wrap {
  position: relative;
  z-index: 3;
  /* z-index: 0; */
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  

}


.halo-hyperlink_stacks_in_1562 .halo-hyperlink-content-wrap > div:nth-child(2) {
  
}


#stacks_in_1564 {
	padding: 10px 0px 0px 0px;
}
#button_stacks_in_1468{--button-text-color:rgba(255, 255, 255, 1.00);--button-background-color:rgba(248, 63, 13, 1.00);--button-background-color-hover:rgba(210, 53, 11, 1.00)}

#stacks_in_1477.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 60px 30px 80px 30px;
}
@media screen and (min-width: 770px){
	#stacks_in_1477.aspen_split{
		padding: 180px 30px 120px 30px;
	}
}
#stacks_in_1477.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1477.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_1477.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.5;
	
	background-size: cover;
}

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


#stacks_in_1477.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

#stacks_in_1477.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(197, 0, 4, 1.00), rgba(112, 0, 53, 1.00));
}

 
#stacks_in_1477.aspen_split{color:rgba(255, 255, 255, 1.00);} 
#stacks_in_1477.aspen_split h1, 
#stacks_in_1477.aspen_split h2,
#stacks_in_1477.aspen_split h3, 
#stacks_in_1477.aspen_split h4, 
#stacks_in_1477.aspen_split h5, 
#stacks_in_1477.aspen_split h6{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_1477.aspen_split a{color: rgba(255, 255, 255, 1.00);} 
#stacks_in_1477.aspen_split a:hover{color: rgba(255, 255, 255, 1.00);}
#stacks_in_1478 {
	margin: 120px 0px 120px 0px;
}
.fit-text.stacks_in_1480{--fittext-min:2.000000rem;--fittext-max:8.000000rem;--fittext-slope:0.104348;--fittext-max-target:10.434799vw;--fittext-y-intercept:-1.391357;--fittext-min-target:-0.086960rem;font-size:clamp(var(--fittext-min),calc(var(--fittext-min-target) + var(--fittext-max-target)),var(--fittext-max)) ;line-height:1}
#stacks_in_1483.aspen_split{
	position: relative;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 1200px){
	#stacks_in_1483.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_1483.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1483.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_1483.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;
	
	
}

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


#stacks_in_1483.aspen_split .max_width_wrap_content{
	max-width: 1200px;
	margin: 0 auto;
}

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

 
#stacks_in_1483.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1483.aspen_split h1, 
#stacks_in_1483.aspen_split h2,
#stacks_in_1483.aspen_split h3, 
#stacks_in_1483.aspen_split h4, 
#stacks_in_1483.aspen_split h5, 
#stacks_in_1483.aspen_split h6{color: rgba(248, 63, 13, 1.00);} 
#stacks_in_1483.aspen_split a{color: rgba(128, 80, 175, 1.00);} 
#stacks_in_1483.aspen_split a:hover{color: rgba(161, 101, 222, 1.00);}
#stacks_in_1522 {
	margin: 200px 20px 0px 20px;
}
/* -- Start EACH CSS Template -- */



   	     
    #stacks_in_1579 .preview_only { display: none !important; }  





      

	#stacks_in_1579 .hype-29-svg { } #stacks_in_1579 .hype-svg-box { }	#stacks_in_1579 .hype-svg-fill { }
	#stacks_in_1579 .fix { -webkit-transform: translate3d(0,0,0) !important; -webkit-backface-visibility: hidden !important; backface-visibility: hidden !important; transition: background-color 0.3s; }	
	
	/* prevent issue in Foundation theme and some stacks */
	#stacks_in_1579 * { -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; }
	/* foundation RTL theme - fix - direction:ltr  */
	#stacks_in_1579 .HYPE_document { overflow: auto; 
	direction:ltr !important; margin:auto; position:relative; display: block; width: 100%;  border-radius: 0px !important; -webkit-border-radius: 0px !important; -moz-border-radius: 0px !important; height: 100% !important; }	
	#stacks_in_1579_default29_hype_container { margin:auto; position:relative; overflow: visible; width: auto; pointer-events: none;  }
	
	#stacks_in_1579_default29_hype_container path { }
	
	#stacks_in_1579_default29_hype_container, #stacks_in_1579 .HYPE_document { }	
	#stacks_in_1579 .wrapper-29 { pointer-events: none;  margin: auto; max-width: 500px; min-width: 50px !important;}
	
	/* Fixed 3x */
	#stacks_in_1579 .vertical-29 { margin: auto; width: 100%; position: relative; display: flex; pointer-events: none;	
	 min-height: 200px; 	
	}	
		
	/*  Minimum Height	*/ 	
	@media (max-width: 768px) {		 
		 #stacks_in_1579 .wrapper-29 {
		  
		   
		 	
		 }
		 #stacks_in_1579 .vertical-29 {
		 
		   
		 
		 }
	}
	@media (max-width: 568px) {		 
		 #stacks_in_1579 .wrapper-29 {
		  
		   
		 	
		 }		 
		 #stacks_in_1579 .vertical-29 {
		 
		    min-height: 200px; 
		 
		 }
	} 	
	/* fluid   */ 	
	#stacks_in_1579 .vertical-29 {  }	
				
	@media (max-width: 800px) {
		#stacks_in_1579 .vertical-29 {
		 }
	}
	/*  FIXED SIZE 	*/ 	
	#stacks_in_1579 .vertical-29 {  }		
	#stacks_in_1579 .wrapper-29 {  }
	
	@media (max-width: 768px) {
		 #stacks_in_1579 .wrapper-29 {
		 	
		 }
		 #stacks_in_1579 .vertical-29 {
		 
		 }
	  }
	  
	@media (max-width: 568px) {
		 #stacks_in_1579 .wrapper-29 {
		 	
		 }
		 #stacks_in_1579 .vertical-29 {
		    
		 }
	  } 	
		
	/*  BG Setting in Stack  */	
	#stacks_in_1579 .bg-29 { width: 100%; height: 100%; position: relative; margin: auto; text-align: center; overflow: hidden; pointer-events: none;		
		
	
	
    	
	
	 border-radius:0px !important; -webkit-border-radius:0px !important;	
	}
			
	/*  BG Overlay in Stack */
	#stacks_in_1579 .bg-29:before { content:""; width: 100%; height: 100%; position: absolute; top: 0; bottom: 0; left: 0; right: 0; display: none; 	
	   	
	}	 
	/*  BG Hype Setting - Switch  */	
	#stacks_in_1579 .hype-bg-29 {		
	
	 border: 0px solid rgba(229, 229, 229, 1.00) !important; 	   
	 border-radius:0px !important; -webkit-border-radius:0px !important; 
	 overflow: hidden;
	}		
	/*  BG Hype Overlay  */
	#stacks_in_1579 .hype-bg-29:before { content:""; width: 100%; height: 100%; position: absolute; top: 0; bottom: 0; left: 0; right: 0;	
	  	   
		 			 
	  	
	}	
	/*  SVG fix */		
	#stacks_in_1579 svg { overflow: visible !important; }		
	@media (min-width: 768px) {			
	  #stacks_in_1579 .hype-svg svg, #stacks_in_1579 .hype-svg-static svg, #stacks_in_1579 .hype-svg-fill svg { padding: 0px;}
	}			
	@media (max-width: 768px) {
	  #stacks_in_1579 .hype-svg svg, #stacks_in_1579 .hype-svg-static svg, #stacks_in_1579 .hype-svg-fill svg { 
	   padding: 0px; 	
	  	}
	}		 
	#stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static, #stacks_in_1579 .hype-svg-fill { 
	text-align: center !important; right: 0 !important; left: 0 !important; margin-right: auto !important; margin-left: auto !important;		
	transform: rotate( 0deg ) !important; -webkit-transform: rotate( 0deg ) !important;
	} 	
	#stacks_in_1579 .hype-svg-fill { 	
	
	}		
	#stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static { 	
	
	}		
	/* change shadow on tablet */
	@media (max-width: 768px){				
		#stacks_in_1579 .hype-svg-fill { 	
		
		}		
		#stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static { 	
		
		}		
    } 		
	/* hide shadow on mobile */
	@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 1) {
		 #stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static {
		 }
		#stacks_in_1579 .hype-svg-fill {
		 }
	}		
	@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
		 #stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static {
		 }
		#stacks_in_1579 .hype-svg-fill {
		 }
	}		
	@media (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
	  #stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static {
		 }
		#stacks_in_1579 .hype-svg-fill {
		 }
	}
	@media (max-width: 1024px) and (max-height: 600px) and (orientation: landscape) {
		 #stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static {
		 }
		#stacks_in_1579 .hype-svg-fill {
		 }
	}	
	@media (orientation: landscape) { }
	@media (min-width: 481px) and (max-width: 1024px) { }
	
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
		 #stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static {
		  }
			#stacks_in_1579 .hype-svg-fill {
		 }	
	}	
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
		 #stacks_in_1579 .hype-svg, #stacks_in_1579 .hype-svg-static {
		  }
			#stacks_in_1579 .hype-svg-fill {
		 }
	}	
	
	@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) { 	}
		
	/*  SVG style */
	#stacks_in_1579 .hype-svg path, #stacks_in_1579 .hype-svg-static path, #stacks_in_1579 .hype-svg-fill path { /*padding: 10px !important; */
	   fill: none !important;  	
	   stroke-linecap: round !important; 
	  
	  	   
		
		 stroke-linejoin: round !important; 
		
	}	
	
	/* synced to hype  */
	#stacks_in_1579 .hype-svg-fill path { 
	
	}	
		
	#stacks_in_1579 .hype-svg {  }
	#stacks_in_1579 .hype-svg-static {  }	
			
	/* links */
	#stacks_in_1579 .hype-link-hover-group, #stacks_in_1579 .hype-link-hover, #stacks_in_1579 .hype-link-hover-blank {
	 }	
	#stacks_in_1579 .hype-link-hover {  }
	/* mouseover */
	#stacks_in_1579 .hype-29-svg { 
	 
	 top: 0px !important; 
	 opacity: 1 !important; 		
	display: flex !important; align-items: center !important; justify-content: center !important; top: 0; bottom: 0; margin: auto; }			
	


/* -- End EACH CSS Template -- */
#stacks_in_1579 {
	padding: 40px 0px 0px 0px;
}
#stacks_in_1484 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1484 .jwresp_col{overflow:hidden;margin:0;width:48%; float:left;}#stacks_in_1484 #jwresp_col2_stacks_in_1484{ float:right; width:48%}@media screen and (max-width:500px){#stacks_in_1484 #jwresp_col1_stacks_in_1484,#stacks_in_1484 #jwresp_col2_stacks_in_1484{width:100%;float:none;display:block}#stacks_in_1484 #jwresp_col1_stacks_in_1484{margin-bottom:15px}}

#stacks_in_1484 {
	margin: 60px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_1485 {
	margin: 0px 0px 0px 20px;
}

#stacks_in_1488 {
	margin: 20px 20px 20px 20px;
}
.contentProtectorstacks_in_1577 {
	display: block;
	position: relative;
	z-index: 1;
} 

.contentProtectorSkinstacks_in_1577 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background:url(../files/filter.gif);
	z-index:10;
}
#stacks_in_1490 {
	margin: 0px 0px 20px 20px;
	padding:  20px;
}

#stacks_in_1492 {
	margin: 0px 0px 0px 20px;
}
/* Start Contact Form stack CSS code */.stacks_in_1495formwrap{	margin: 0;}#stacks_in_1495comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_1495mail{padding: 0;}.stacks_in_1495fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_1495formail{}.stacks_in_1495fieldset{	padding: 0 20px 0 3px;}#stacks_in_1495 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_1495 label *{display: inline;}#stacks_in_1495 .stacks_in_1495input{padding: 3px 7px 3px 7px;width: 100%;font-size: 12px;background: #FFFFFF !important;color: #200101 !important;margin: 0;border: 1px solid #D8D8D8 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px !important;}#stacks_in_1495 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #D8D8D8 !important;background: #FFFFFF !important;color: #200101 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_1495sendmail{margin-top: 20px !important;padding: 4px 7px 4px 7px !important;display: block;text-align: center !important;font-size: 12px;color: #200101 !important;border: 1px solid #D8D8D8 !important;background-color: #FFFFFF !important;-moz-border-radius: 3px !important;-webkit-border-radius: 3px !important;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_1495response{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_1495loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_1495autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_1495 textarea{	color: #200101 !important;}/* End Contact Form stack CSS code */
#stacks_in_1495 {
	margin: 0px 0px 0px 20px;
}
.lines.stacks_in_1500{width:100%;margin:calc(70rem/16) auto calc(0rem/16) auto;border-bottom:1px ridge rgba(34, 34, 34, 0.50);background:rgba(255, 255, 255, 1.00);transform:rotate(0deg)}.lines.stacks_in_1500.vertical{border-left:1px ridge rgba(34, 34, 34, 0.50);border-bottom:none;width:0;height:100%;margin:0 auto;margin-top:calc((100% - 100%)/-2)}
