@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);
  }
}
/* -- Start Vegas Page css Template -- */
.vegas-overlay,.vegas-slide,.vegas-slide-inner,.vegas-timer,.vegas-wrapper{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;border:none;padding:0;margin:0}.vegas-overlay{opacity:.5;background:url(overlays/02.png) center center}.vegas-timer{top:auto;bottom:0;height:2px}.vegas-timer-progress{width:0;height:100%;background:#fff;-webkit-transition:width ease-out;transition:width ease-out}.vegas-timer-running .vegas-timer-progress{width:100%}.vegas-slide,.vegas-slide-inner{margin:0;padding:0;background:center center no-repeat;-webkit-transform:translateZ(0);transform:translateZ(0)}body .vegas-container{overflow:hidden!important;position:relative}.vegas-video{min-width:100%;min-height:100%;width:auto;height:auto}body.vegas-container{overflow:auto;position:static;z-index:-2}body.vegas-container>.vegas-overlay,body.vegas-container>.vegas-slide,body.vegas-container>.vegas-timer{position:fixed;z-index:-1}:root body.vegas-container>.vegas-overlay,:root body.vegas-container>.vegas-slide,_::full-page-media,_:future{bottom:-76px}.vegas-transition-fade,.vegas-transition-fade2{opacity:0}.vegas-transition-fade-in,.vegas-transition-fade2-in{opacity:1}.vegas-transition-fade2-out{opacity:0}.vegas-transition-blur,.vegas-transition-blur2{opacity:0;-webkit-filter:blur(32px);filter:blur(32px)}.vegas-transition-blur-in,.vegas-transition-blur2-in{opacity:1;-webkit-filter:blur(0);filter:blur(0)}.vegas-transition-blur2-out{opacity:0}.vegas-transition-flash,.vegas-transition-flash2{opacity:0;-webkit-filter:brightness(25);filter:brightness(25)}.vegas-transition-flash-in,.vegas-transition-flash2-in{opacity:1;-webkit-filter:brightness(1);filter:brightness(1)}.vegas-transition-flash2-out{opacity:0;-webkit-filter:brightness(25);filter:brightness(25)}.vegas-transition-negative,.vegas-transition-negative2{opacity:0;-webkit-filter:invert(100%);filter:invert(100%)}.vegas-transition-negative-in,.vegas-transition-negative2-in{opacity:1;-webkit-filter:invert(0);filter:invert(0)}.vegas-transition-negative2-out{opacity:0;-webkit-filter:invert(100%);filter:invert(100%)}.vegas-transition-burn,.vegas-transition-burn2{opacity:0;-webkit-filter:contrast(1000%) saturate(1000%);filter:contrast(1000%) saturate(1000%)}.vegas-transition-burn-in,.vegas-transition-burn2-in{opacity:1;-webkit-filter:contrast(100%) saturate(100%);filter:contrast(100%) saturate(100%)}.vegas-transition-burn2-out{opacity:0;-webkit-filter:contrast(1000%) saturate(1000%);filter:contrast(1000%) saturate(1000%)}.vegas-transition-slideLeft,.vegas-transition-slideLeft2{-webkit-transform:translateX(100%);transform:translateX(100%)}.vegas-transition-slideLeft-in,.vegas-transition-slideLeft2-in{-webkit-transform:translateX(0);transform:translateX(0)}.vegas-transition-slideLeft2-out,.vegas-transition-slideRight,.vegas-transition-slideRight2{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.vegas-transition-slideRight-in,.vegas-transition-slideRight2-in{-webkit-transform:translateX(0);transform:translateX(0)}.vegas-transition-slideRight2-out{-webkit-transform:translateX(100%);transform:translateX(100%)}.vegas-transition-slideUp,.vegas-transition-slideUp2{-webkit-transform:translateY(100%);transform:translateY(100%)}.vegas-transition-slideUp-in,.vegas-transition-slideUp2-in{-webkit-transform:translateY(0);transform:translateY(0)}.vegas-transition-slideDown,.vegas-transition-slideDown2,.vegas-transition-slideUp2-out{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.vegas-transition-slideDown-in,.vegas-transition-slideDown2-in{-webkit-transform:translateY(0);transform:translateY(0)}.vegas-transition-slideDown2-out{-webkit-transform:translateY(100%);transform:translateY(100%)}.vegas-transition-zoomIn,.vegas-transition-zoomIn2{-webkit-transform:scale(0);transform:scale(0);opacity:0}.vegas-transition-zoomIn-in,.vegas-transition-zoomIn2-in{-webkit-transform:scale(1);transform:scale(1);opacity:1}.vegas-transition-zoomIn2-out,.vegas-transition-zoomOut,.vegas-transition-zoomOut2{-webkit-transform:scale(2);transform:scale(2);opacity:0}.vegas-transition-zoomOut-in,.vegas-transition-zoomOut2-in{-webkit-transform:scale(1);transform:scale(1);opacity:1}.vegas-transition-zoomOut2-out{-webkit-transform:scale(0);transform:scale(0);opacity:0}.vegas-transition-swirlLeft,.vegas-transition-swirlLeft2{-webkit-transform:scale(2) rotate(35deg);transform:scale(2) rotate(35deg);opacity:0}.vegas-transition-swirlLeft-in,.vegas-transition-swirlLeft2-in{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.vegas-transition-swirlLeft2-out,.vegas-transition-swirlRight,.vegas-transition-swirlRight2{-webkit-transform:scale(2) rotate(-35deg);transform:scale(2) rotate(-35deg);opacity:0}.vegas-transition-swirlRight-in,.vegas-transition-swirlRight2-in{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.vegas-transition-swirlRight2-out{-webkit-transform:scale(2) rotate(35deg);transform:scale(2) rotate(35deg);opacity:0}.vegas-animation-kenburns{-webkit-animation:kenburns ease-out;animation:kenburns ease-out}@-webkit-keyframes kenburns{0%{-webkit-transform:scale(1.5);transform:scale(1.5)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes kenburns{0%{-webkit-transform:scale(1.5);transform:scale(1.5)}100%{-webkit-transform:scale(1);transform:scale(1)}}.vegas-animation-kenburnsUp{-webkit-animation:kenburnsUp ease-out;animation:kenburnsUp ease-out}@-webkit-keyframes kenburnsUp{0%{-webkit-transform:scale(1.5) translate(0,10%);transform:scale(1.5) translate(0,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUp{0%{-webkit-transform:scale(1.5) translate(0,10%);transform:scale(1.5) translate(0,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDown{-webkit-animation:kenburnsDown ease-out;animation:kenburnsDown ease-out}@-webkit-keyframes kenburnsDown{0%{-webkit-transform:scale(1.5) translate(0,-10%);transform:scale(1.5) translate(0,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDown{0%{-webkit-transform:scale(1.5) translate(0,-10%);transform:scale(1.5) translate(0,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsLeft{-webkit-animation:kenburnsLeft ease-out;animation:kenburnsLeft ease-out}@-webkit-keyframes kenburnsLeft{0%{-webkit-transform:scale(1.5) translate(10%,0);transform:scale(1.5) translate(10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsLeft{0%{-webkit-transform:scale(1.5) translate(10%,0);transform:scale(1.5) translate(10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsRight{-webkit-animation:kenburnsRight ease-out;animation:kenburnsRight ease-out}@-webkit-keyframes kenburnsRight{0%{-webkit-transform:scale(1.5) translate(-10%,0);transform:scale(1.5) translate(-10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsRight{0%{-webkit-transform:scale(1.5) translate(-10%,0);transform:scale(1.5) translate(-10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUpLeft{-webkit-animation:kenburnsUpLeft ease-out;animation:kenburnsUpLeft ease-out}@-webkit-keyframes kenburnsUpLeft{0%{-webkit-transform:scale(1.5) translate(10%,10%);transform:scale(1.5) translate(10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUpLeft{0%{-webkit-transform:scale(1.5) translate(10%,10%);transform:scale(1.5) translate(10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUpRight{-webkit-animation:kenburnsUpRight ease-out;animation:kenburnsUpRight ease-out}@-webkit-keyframes kenburnsUpRight{0%{-webkit-transform:scale(1.5) translate(-10%,10%);transform:scale(1.5) translate(-10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUpRight{0%{-webkit-transform:scale(1.5) translate(-10%,10%);transform:scale(1.5) translate(-10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDownLeft{-webkit-animation:kenburnsDownLeft ease-out;animation:kenburnsDownLeft ease-out}@-webkit-keyframes kenburnsDownLeft{0%{-webkit-transform:scale(1.5) translate(10%,-10%);transform:scale(1.5) translate(10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDownLeft{0%{-webkit-transform:scale(1.5) translate(10%,-10%);transform:scale(1.5) translate(10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDownRight{-webkit-animation:kenburnsDownRight ease-out;animation:kenburnsDownRight ease-out}@-webkit-keyframes kenburnsDownRight{0%{-webkit-transform:scale(1.5) translate(-10%,-10%);transform:scale(1.5) translate(-10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDownRight{0%{-webkit-transform:scale(1.5) translate(-10%,-10%);transform:scale(1.5) translate(-10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}
/* -- End Vegas Page css Template -- */
.lzTopper{
	display:none;
	background: #cccccc;
	padding: 10px;
	margin-bottom:5px;
	border: 1px solid #999999;
}
.lzeffect{
    position:fixed;
	top:0px;
	left:0px;
	height:100%;
	width:100%;
	background-color:#FFFFFF;
	z-index:200000;
}

.doosuperoverlay {
	position:fixed;
	top:0px;
	left:0px;
	height:100%;
	width:100%;
	background-color:#FFFFFF;
	z-index:200001;
	}
	
#stacks_in_803 {

}

#stacks_in_803 .outer_box {
	position:relative;
}

#stacks_in_803 .inner_box {
}


/* End doobox General Styles */
#stacks_in_803 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  1px;
}
#stacks_in_855 *,
#stacks_in_855 *:before,
#stacks_in_855 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_855 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
/* Start Smart Image stack CSS code */#stacks_in_861{	text-align: center;}#stacks_in_861 figure a img{	cursor: pointer !important;}.stacks_in_861responsive {  max-width: 100%;  margin: 0;  padding: 0;}.stacks_in_861responsive img, .stacks_in_861warehouseImage img {  width: 100%;  height: auto;  margin: 0 auto 0 auto;  display: block;}.stacks_in_861hiddenimage{	display: none;}.stacks_in_861warehouseImage{	display: none;}/* End Smart Image stack CSS code */



#stacks_in_771 h2,#stacks_in_771 h2 a,#stacks_in_771 p,#stacks_in_771 p a{
	color:rgba(251, 2, 7, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:italic;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	
		text-shadow: 0 0 1px rgba(85, 85, 85, 1.00),
		1px 1px 1px rgba(70, 70, 70, 1.00),
		2px 2px 1px rgba(55, 55, 55, 1.00),
		3px 3px 1px rgba(40, 40, 40, 1.00),
		4px 4px 1px rgba(25, 25, 25, 1.00),
		5px 5px 1px rgba(10, 10, 10, 1.00),
		0 6px 1px rgba(0,0,0,.1),
		0 0 5px rgba(0,0,0,.1),
		0 1px 3px rgba(0,0,0,.3),
		0 3px 5px rgba(0,0,0,.2),
		0 5px 10px rgba(0,0,0,.25),
		0 10px 10px rgba(0,0,0,.2),
		0 20px 20px rgba(0,0,0,.15);
		padding:20px 0;
	

	

	

	

	

}

#stacks_in_771 p a:hover, #stacks_in_771 h2 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_771 {
	margin:  5px;
}




#stacks_in_773 h5,#stacks_in_773 h5 a,#stacks_in_773 p,#stacks_in_773 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	
		text-shadow: 3px 2px 5px rgba(33, 255, 255, 1.00);
	

	

	

	

	

	

}

#stacks_in_773 p a:hover, #stacks_in_773 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}











.nimblehost_myMenuOuterWrapper_stacks_in_179 { 
	margin: 0;
	padding: 0;
	
	position: absolute;
	
	z-index: 500; 
	
	position: relative;
	
	
	
	width: 100%;
	text-align: center;
	
	
	font-size: 15px;
	
	
		
		
		
	font-family: Geneva, Tahoma, sans-serif;
		
		
		
		
		
		
		
		
		
	
}

.nimblehost_myMenuInnerWrapper_stacks_in_179, .nimblehost_myMenu_stacks_in_179 ul ul, .nimblehost_myMenuInnerWrapper_stacks_in_179 .myMenu_mobileToggle p { 
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	-ms-border-radius: 13px;
	border-radius: 13px;
}

.nimblehost_myMenuInnerWrapper_stacks_in_179 {
	
	
	background: transparent;
	
}
@-moz-document url-prefix() {  }
.nimblehost_myMenuLabel_stacks_in_179 {
	
	display: none;
	
	color: #000000;
}

.nimblehost_myMenu_stacks_in_179 { 
	padding: 0 5px;
	
	
}
.nimblehost_myMenu_stacks_in_179 ul { 
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
	width: auto;
	
	
	min-height: 33px;
	
	
	border-top: none;
	border-bottom: none;
	
}

.nimblehost_myMenu_stacks_in_179 ul li, .customMenuItems li { 
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	display: block;
	background-image: none !important;
	position: relative;
	
	display: inline-block;
	
}

.customMenuItems, .customMenuItems .stacks_out, .customMenuItems .stacks_in {
	display: block;
	
	display: inline;
	
}

.nimblehost_myMenu_stacks_in_179 ul li a, .customMenuItems li a { 
	margin: 0;
	padding: 0 12px;
	display: block;
	text-align: left;
	text-decoration: none;
	line-height: 33px;
	color: #FB0207;
	
	
	border-top: none;
	border-bottom: none;
	
	border-top: none; border-bottom: none;
	zoom: 1;
}
.nimblehost_myMenu_stacks_in_179 ul li a:hover, .customMenuItems li a:hover { 
	color: #FFFFFF;
	background-color: #FB0207;
}
.nimblehost_myMenu_stacks_in_179 ul li a:active, .customMenuItems li a:active {
	-webkit-box-shadow:inset 0 0 3px black;
	-moz-box-shadow:inset 0 0 3px black;
	box-shadow:inset 0 0 3px black;
}
.nimblehost_myMenu_stacks_in_179 ul li a#current, .nimblehost_myMenu_stacks_in_179 ul li a.current, .nimblehost_myMenu_stacks_in_179 ul li a.currentAncestor {
	padding-top: 0;
	padding-bottom: 0;
	background-color: #FB0207;
	color: #FFFFFF;
	-webkit-box-shadow:inset 0 0 3px black;
	-moz-box-shadow:inset 0 0 3px black;
	box-shadow:inset 0 0 3px black;
	border: none;
}

.nimblehost_myMenu_stacks_in_179 ul li.ddarrow a { padding-right: 22px !important; }
.nimblehost_myMenu_stacks_in_179 ul ul li.ddarrow a { padding-right: 12px !important; }

.nimblehost_myMenu_stacks_in_179 ul li.ddarrow .childIndicator, .nimblehost_myMenu_stacks_in_179 ul .customMenuItems li.ddarrow .childIndicator { 
	position:absolute;
	top:8px;
	right:3px;
	float:right;
	height: 17px;
	width: 17px;
	background: transparent url(../files/ddarrowDown.png) center center no-repeat;
}

.nimblehost_myMenu_stacks_in_179 ul ul li.ddarrow .childIndicator, .nimblehost_myMenu_stacks_in_179 ul .customMenuItems ul li.ddarrow .childIndicator {
	background-image: url(../files/ddarrow.png);
}

.nimblehost_myMenu_stacks_in_179 .customMenuItems .stacks_out, .nimblehost_myMenu_stacks_in_179 .customMenuItems .stacks_in { overflow: visible; }

/* Second Level Menu Items */
.nimblehost_myMenu_stacks_in_179 ul ul {
	border: none;
	margin: 0;
	padding: 5px 0 !important;
	height: auto;
	position: absolute;
	width: 150px;
	z-index: 501; 
	top: 33px;
	left: 0;
	display: none;
	
	
	background: transparent;
	
}

.nimblehost_myMenu_stacks_in_179 ul ul li { 
	
	display: block;
	
}

.nimblehost_myMenu_stacks_in_179 ul ul li a { 
	width: auto;
	
		
		border-top: solid 1px #FFFFFF;
		border-bottom: solid 1px #AAAAAA;
		
	
	
	border-top: none;
	border-bottom: none;
	
	border-top: none; border-bottom: none;
}



.nimblehost_myMenu_stacks_in_179 ul ul ul {
	top: -5px;
	left: 150px;
	padding: 5px 0 !important;
}



.nimblehost_myMenuInnerWrapper_stacks_in_179 .myMenu_mobileToggle { display: none; }


@media screen and (max-width: 480px), (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
	.nimblehost_myMenuOuterWrapper_stacks_in_179, .nimblehost_myMenuOuterWrapper_stacks_in_179[style] {
		position: absolute !important; top: 0; bottom: auto; left: 0 !important; width: 100% !important;
		top: 44px;
	}

	.nimblehost_myMenuInnerWrapper_stacks_in_179 .subMenuBackground { display: none; }

	.nimblehost_myMenuLabel_stacks_in_179 { display: none; }

	.nimblehost_myMenu_stacks_in_179 { padding: 5px 0; }

	.nimblehost_myMenu_stacks_in_179 ul, .nimblehost_myMenu_stacks_in_179 ul ul { width: 100% !important; }

	.nimblehost_myMenu_stacks_in_179 ul li, .customMenuItems li, .customMenuItems, .customMenuItems .stacks_out, .customMenuItems .stacks_in { display: block; }

	.nimblehost_myMenu_stacks_in_179 ul li a, .customMenuItems li a { color: #FB0207; border-top: solid 1px #FFFFFF; border-bottom: solid 1px #AAAAAA; border-top: none; border-bottom: none; }

	.nimblehost_myMenu_stacks_in_179 ul ul, .nimblehost_myMenu_stacks_in_179 ul ul ul { position: relative !important; left: auto !important; top: auto !important; height: auto !important; padding: 0 !important; margin: 0; background: transparent; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; box-shadow: none; }

	.nimblehost_myMenu_stacks_in_179 ul ul ul {
		width: 100%; position: relative; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; top: auto; left: auto;
	}
	.nimblehost_myMenu_stacks_in_179 ul ul li { display: block; }

	.nimblehost_myMenu_stacks_in_179 ul ul li a { padding-left: 20px; color: #FB0207 ; }
	.nimblehost_myMenu_stacks_in_179 ul ul ul li a { padding-left: 40px; }
	.nimblehost_myMenu_stacks_in_179 ul ul ul ul li a { padding-left: 60px; }
	.nimblehost_myMenu_stacks_in_179 ul ul ul ul ul li a { padding-left: 80px; }
	.nimblehost_myMenu_stacks_in_179 ul ul ul ul ul ul li a { padding-left: 100px; }
	.nimblehost_myMenu_stacks_in_179 ul ul ul ul ul ul ul li a { padding-left: 120px; }
	.nimblehost_myMenu_stacks_in_179 ul ul ul ul ul ul ul ul li a { padding-left: 140px; }
	.nimblehost_myMenu_stacks_in_179 ul ul ul ul ul ul ul ul ul li a { padding-left: 160px; }
	.nimblehost_myMenu_stacks_in_179 ul ul ul ul ul ul ul ul ul ul li a { padding-left: 180px; }

	.nimblehost_myMenu_stacks_in_179 ul li.ddarrow .childIndicator, .nimblehost_myMenu_stacks_in_179 ul ul li.ddarrow .childIndicator, .nimblehost_myMenu_stacks_in_179 ul .customMenuItems li.ddarrow .childIndicator { width: 17px; background-image: url(../files/ddarrowDown.png); }

	.nimblehost_myMenuInnerWrapper_stacks_in_179 .myMenu_mobileToggle {
		margin: 0; padding: 0; display: block; color: #000000; position: fixed; z-index: 1000;
		top: 0;
		
		
		width: 100%;
		

	}

	.nimblehost_myMenuInnerWrapper_stacks_in_179 .myMenu_mobileToggle p {
		margin: 0; padding: 10px 5px; height: 23px; text-align: center;
		
		background: transparent;
		
		
	}

	.nimblehost_myMenuInnerWrapper_stacks_in_179 .myMenu_mobileToggle .mt-bar-wrapper { display: inline-block; width: 30px; }

	.nimblehost_myMenuInnerWrapper_stacks_in_179 .myMenu_mobileToggle .mt-bar { display: block; margin: 2px 5px; width: 20px; height: 3px; border-radius: 2px; background-color: #CCCCCC; border-top: solid 1px #666666; border-bottom: solid 1px #FFFFFF; }

	.nimblehost_myMenu_stacks_in_179 { padding-top: 5px; display: none; }
}





#stacks_in_899 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_899 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_899 #jwresp_col2_stacks_in_899{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_899 #jwresp_col1_stacks_in_899,#stacks_in_899 #jwresp_col2_stacks_in_899{width:100%;float:none;display:block}#stacks_in_899 #jwresp_col1_stacks_in_899{margin-bottom:15px}}

#stacks_in_899 {
	margin:  4px;
	padding:  3px;
}
/* -- Start Vegas Each css Template -- */


#stacks_in_863VegasSlideshow{
	position: relative;
	min-height: 300px;
}

#stacks_in_863VegasInput{
	position: relative;
	display: none;
}

#stacks_in_863 .vegas-overlay{
	background:url("../files/vegasAssets/01.png") !important;
}

#stacks_in_863 .vegasalert{
	background: #FAC5CE;
	border: 2px solid #B4284F;
	border-radius: 4px;
	color: #B4284F !important;
	padding: 15px;
}
#stacks_in_863 .vegasalert span{
	font-size: 2em;
	font-weight: bold;
}

.stacks_in_863vegasContentBox{
	position: absolute;
	width: 100%;
	top: 50%;
	-webkit-transform: translate(0,-50%);
	-moz-transform:    translate(0,-50%);
	-ms-transform:     translate(0,-50%);
	-o-transform:      translate(0,-50%);
	transform:         translate(0,-50%);
}


/* -- Unified -- */
.stacks_in_863vegasContent,.stacks_in_863vegasContent h1,.stacks_in_863vegasContent h2,.stacks_in_863vegasContent h3,.stacks_in_863vegasContent h4,.stacks_in_863vegasContent h5,.stacks_in_863vegasContent h6{
	color: #FFFFFF !important;
}
.stacks_in_863vegasContent a,.stacks_in_863vegasContent a:active,.stacks_in_863vegasContent a:visited{
	color: #3B94D9 !important;
	text-decoration: none !important;
}
.stacks_in_863vegasContent a:hover{
	color: #DDDDDD !important;
	text-decoration: none !important;
}

.stacks_in_863vegasScrollButton i{
	color: #FFFFFF !important;
}

.stacks_in_863vegasContentBox{
	text-align: center !important;
}

.stacks_in_863vegasContentBox h1,.stacks_in_863vegasContentBox h2,.stacks_in_863vegasContentBox h3,.stacks_in_863vegasContentBox h4,.stacks_in_863vegasContentBox h5,.stacks_in_863vegasContentBox h6,.stacks_in_863vegasContentBox p{
	margin: 0 !important;
	padding: 0 !important;
	margin-top: 0 !important;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
	padding-top: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	padding-left: 0 !important;
	line-height: normal !important;
}


.stacks_in_863vegasContent{
	position: relative !important;
	margin: 0 auto;
	padding: 20px;
	max-width: 500px;
}



.stacks_in_863vegasScrollButton{
	position: absolute;
	width: 100%;
	bottom: 0;
	color: #fff !important;
	font-size: 36px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	display: none;
	cursor: pointer;
}


	.stacks_in_863vegasScrollButton{
		display: block;
	}

/* -- End Unified -- */





@keyframes vegasanimation {
	43% { transform: translate(0,0);} 
	0% { transform: translate(0,0);} 
	30% { transform: translate(0,11px);} 
	17% { transform: translate(0,-5px);} 
	11% { transform: translate(0,0);} 
}

@-webkit-keyframes vegasanimation {
	43% { transform: translate(0,0);} 
	0% { transform: translate(0,0);} 
	30% { transform: translate(0,11px);} 
	17% { transform: translate(0,-5px);} 
	11% { transform: translate(0,0);} 
}

/* apply the .animation class to the element you want to animate */
.vegasanimation {
	animation: vegasanimation 3s ease-in-out 0s infinite normal none;
	-webkit-animation: vegasanimation 3s ease-in-out 0s infinite normal none;
}


/* -- End Vegas Each css Template -- */
#stacks_in_863 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  4px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  5px;
}




#stacks_in_902 h6,#stacks_in_902 h6 a,#stacks_in_902 p,#stacks_in_902 p a{
	color:rgba(255, 255, 255, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:italic;
	text-decoration:none;
	text-align:justify;
	font-weight: normal ;
	
	
	text-justify:auto;
	

	

	

	

	

	

	

	

	
		text-shadow: -1px -1px rgba(0, 0, 0, 1.00), 1px 1px rgba(255, 255, 10, 1.00);
	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_902 p a:hover, #stacks_in_902 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_902 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
/* HitCounter styles */
/* Bryn Owen Design, 2015   */


#stacks_in_531 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_531 .jwresp_col_wrapper{margin:0;width:49%;float:left;position:relative;overflow:auto}#stacks_in_531 .jwresp_col_wrapper.right{float:right}#stacks_in_531 .jwresp_col{overflow:hidden;width:48%;float:left;margin:0}#stacks_in_531 #jwresp_col2_stacks_in_531,#stacks_in_531 #jwresp_col4_stacks_in_531{float:right}#stacks_in_531 #jwresp_col1_stacks_in_531,#stacks_in_531 #jwresp_col3_stacks_in_531{margin-right:2} @media screen and (max-width:770px){#stacks_in_531 .jwresp_col_wrapper.left,#stacks_in_531 .jwresp_col_wrapper.right{width:100%;float:none;clear:both}#stacks_in_531 .jwresp_col_wrapper.left{margin-bottom:20px}#stacks_in_531 .jwresp_col{width:49%}#stacks_in_531 #jwresp_col1_stacks_in_531,#stacks_in_531 #jwresp_col3_stacks_in_531{margin:0}}  @media screen and (max-width:500px){#stacks_in_531 .jwresp_col{width:100%;display:block}#stacks_in_531 #jwresp_col1_stacks_in_531,#stacks_in_531 #jwresp_col2_stacks_in_531,#stacks_in_531 #jwresp_col3_stacks_in_531{margin:0;margin-bottom:20px}#stacks_in_531 #jwresp_col4_stacks_in_531{margin:0}#stacks_in_531 .jwresp_col_wrapper.left{margin-bottom:0}}

#stacks_in_531 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  4px;
	padding:  1px;
}
#stacks_in_496.expd-card,
#stacks_in_496.expd-card * {
  box-sizing: border-box;
}

#stacks_in_496 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_496.expd-card .click-all {
  height: 100%;
}

  #stacks_in_496.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
   background: -moz-linear-gradient(top, transparent 0%, rgba(255, 228, 11, 1.00) 80%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 228, 11, 1.00) 80%);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 228, 11, 1.00) 80%);
     pointer-events: none;
}

#stacks_in_496.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_496_wrap.wrap-expd-card {
   width: 400px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_496.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_496.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
  color: rgba(0, 0, 0, 1.00);
     background: rgba(255, 228, 11, 1.00);
      height: 450px;
  width: 400px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 7px;
   box-shadow: 0px 1px 3px rgba(0, 0, 0, .3);
   
}

 #stacks_in_496.expd-card * {
  pointer-events: none;
}

#stacks_in_496.expd-card .expd-open,
#stacks_in_496.expd-card [data-open='1'],
#stacks_in_496.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_496.expd-card h1,
#stacks_in_496.expd-card h2,
#stacks_in_496.expd-card h3,
#stacks_in_496.expd-card h4,
#stacks_in_496.expd-card h5,
#stacks_in_496.expd-card h6 {
  font-family: inherit;
}

#stacks_in_496.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_496.expd-card [data-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_496.expd-card [data-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_496.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_496.expd-card .expd-card-button[data-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_496.expd-card .expd-card-button:hover,
#stacks_in_496.expd-card .expd-card-button[data-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_496.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_496 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: rgba(0, 0, 0, 1.00); 
     background: rgba(255, 228, 11, 1.00);
     border-radius: 4px;
}
.expd-body .fixed-closestacks_in_496 {
  pointer-events: all;
  
  opacity: 0;
  pointer-events: none;
  
}

.expd-body.show-close .fixed-closestacks_in_496 {
  opacity: 1;
  pointer-events: all;
} 

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-image: url(../files/headerImage-496.jpg);
  background-size: cover;
  background-position: center center;
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_496.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(251, 2, 7, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(0, 0, 0, 1.00);
  border: 3px solid rgba(0, 0, 0, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(251, 2, 7, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(0, 0, 255, 1.00);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_496.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_496.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_496.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_496.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_496.expd-card.expd-active [data-close='1'] {
  display: inline-block;
}

#stacks_in_496.expd-card.expd-active .expd-open[data-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_496.expd-card.expd-active .expd-card-button[data-open='1'] {
  display: none;
}

#stacks_in_496.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(251, 2, 7, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_496.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_496.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_496.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}





#stacks_in_500 h5,#stacks_in_500 h5 a,#stacks_in_500 p,#stacks_in_500 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:oblique;
	text-decoration:none;
	text-align:justify;
	font-weight: bold ;
	
	
	text-justify:auto;
	

	

	

	

	

	

	
		text-shadow: 0.05em 0.05em 0.1em rgba(85, 85, 85, 1.00);
	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_500 p a:hover, #stacks_in_500 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_500 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  4px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}




#stacks_in_509 h5,#stacks_in_509 h5 a,#stacks_in_509 p,#stacks_in_509 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:left;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	
		text-shadow: 0 0 1px rgba(85, 85, 85, 1.00),
		1px 1px 1px rgba(70, 70, 70, 1.00),
		2px 2px 1px rgba(55, 55, 55, 1.00),
		3px 3px 1px rgba(40, 40, 40, 1.00),
		4px 4px 1px rgba(25, 25, 25, 1.00),
		5px 5px 1px rgba(10, 10, 10, 1.00);
		padding:5px 0;
	

	

	

}

#stacks_in_509 p a:hover, #stacks_in_509 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








#stacks_in_753.expd-card,
#stacks_in_753.expd-card * {
  box-sizing: border-box;
}

#stacks_in_753 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_753.expd-card .click-all {
  height: 100%;
}

  #stacks_in_753.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
   background: -moz-linear-gradient(top, transparent 0%, rgba(251, 2, 7, 1.00) 80%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(251, 2, 7, 1.00) 80%);
  background: linear-gradient(to bottom, transparent 0%, rgba(251, 2, 7, 1.00) 80%);
     pointer-events: none;
}

#stacks_in_753.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_753_wrap.wrap-expd-card {
   width: 400px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_753.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_753.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
  color: rgba(124, 124, 124, 1.00);
     background: rgba(251, 2, 7, 1.00);
      height: 450px;
  width: 400px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 20px;
   box-shadow: 0px 1px 3px rgba(0, 0, 0, .3);
   
}

 #stacks_in_753.expd-card * {
  pointer-events: none;
}

#stacks_in_753.expd-card .expd-open,
#stacks_in_753.expd-card [data-open='1'],
#stacks_in_753.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_753.expd-card h1,
#stacks_in_753.expd-card h2,
#stacks_in_753.expd-card h3,
#stacks_in_753.expd-card h4,
#stacks_in_753.expd-card h5,
#stacks_in_753.expd-card h6 {
  font-family: inherit;
}

#stacks_in_753.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_753.expd-card [data-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_753.expd-card [data-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_753.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_753.expd-card .expd-card-button[data-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_753.expd-card .expd-card-button:hover,
#stacks_in_753.expd-card .expd-card-button[data-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_753.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_753 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: rgba(124, 124, 124, 1.00); 
     background: rgba(251, 2, 7, 1.00);
     border-radius: 4px;
}
.expd-body .fixed-closestacks_in_753 {
  pointer-events: all;
  
  opacity: 0;
  pointer-events: none;
  
}

.expd-body.show-close .fixed-closestacks_in_753 {
  opacity: 1;
  pointer-events: all;
} 

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-image: url(../files/headerImage-753.jpg);
  background-size: cover;
  background-position: center center;
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_753.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(0, 0, 0, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(251, 2, 7, 1.00);
  border: 3px solid rgba(251, 2, 7, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(0, 0, 0, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(0, 0, 255, 1.00);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_753.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_753.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_753.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_753.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_753.expd-card.expd-active [data-close='1'] {
  display: inline-block;
}

#stacks_in_753.expd-card.expd-active .expd-open[data-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_753.expd-card.expd-active .expd-card-button[data-open='1'] {
  display: none;
}

#stacks_in_753.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_753.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_753.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_753.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}





#stacks_in_761 h5,#stacks_in_761 h5 a,#stacks_in_761 p,#stacks_in_761 p a{
	color:rgba(255, 255, 10, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:left;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	
		text-shadow: 0.05em 0.05em 0.1em rgba(85, 85, 85, 1.00);
	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_761 p a:hover, #stacks_in_761 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_761 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  4px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
#stacks_in_540.expd-card,
#stacks_in_540.expd-card * {
  box-sizing: border-box;
}

#stacks_in_540 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_540.expd-card .click-all {
  height: 100%;
}

  #stacks_in_540.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
   background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 1.00) 80%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 1.00) 80%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1.00) 80%);
     pointer-events: none;
}

#stacks_in_540.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_540_wrap.wrap-expd-card {
   width: 400px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_540.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_540.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
  color: rgba(124, 124, 124, 1.00);
     background: rgba(0, 0, 0, 1.00);
      height: 450px;
  width: 400px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_540.expd-card * {
  pointer-events: none;
}

#stacks_in_540.expd-card .expd-open,
#stacks_in_540.expd-card [data-open='1'],
#stacks_in_540.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_540.expd-card h1,
#stacks_in_540.expd-card h2,
#stacks_in_540.expd-card h3,
#stacks_in_540.expd-card h4,
#stacks_in_540.expd-card h5,
#stacks_in_540.expd-card h6 {
  font-family: inherit;
}

#stacks_in_540.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_540.expd-card [data-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_540.expd-card [data-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_540.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_540.expd-card .expd-card-button[data-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_540.expd-card .expd-card-button:hover,
#stacks_in_540.expd-card .expd-card-button[data-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_540.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_540 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: rgba(124, 124, 124, 1.00); 
     background: rgba(0, 0, 0, 1.00);
     border-radius: 4px;
}
.expd-body .fixed-closestacks_in_540 {
  pointer-events: all;
  
  opacity: 0;
  pointer-events: none;
  
}

.expd-body.show-close .fixed-closestacks_in_540 {
  opacity: 1;
  pointer-events: all;
} 

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-image: url(../files/headerImage-540.jpg);
  background-size: cover;
  background-position: center center;
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_540.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(251, 2, 7, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(0, 0, 0, 1.00);
  border: 3px solid rgba(0, 0, 0, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(251, 2, 7, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(253, 128, 8, 1.00);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_540.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_540.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_540.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_540.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_540.expd-card.expd-active [data-close='1'] {
  display: inline-block;
}

#stacks_in_540.expd-card.expd-active .expd-open[data-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_540.expd-card.expd-active .expd-card-button[data-open='1'] {
  display: none;
}

#stacks_in_540.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_540.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_540.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_540.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}





#stacks_in_763 h5,#stacks_in_763 h5 a,#stacks_in_763 p,#stacks_in_763 p a{
	color:rgba(255, 255, 255, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:left;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	
		text-shadow: 0.05em 0.05em 0.1em rgba(85, 85, 85, 1.00);
	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_763 p a:hover, #stacks_in_763 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_763 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  4px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
#stacks_in_536.expd-card,
#stacks_in_536.expd-card * {
  box-sizing: border-box;
}

#stacks_in_536 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_536.expd-card .click-all {
  height: 100%;
}

  #stacks_in_536.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
   background: -moz-linear-gradient(top, transparent 0%, rgba(33, 255, 255, 1.00) 80%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(33, 255, 255, 1.00) 80%);
  background: linear-gradient(to bottom, transparent 0%, rgba(33, 255, 255, 1.00) 80%);
     pointer-events: none;
}

#stacks_in_536.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_536_wrap.wrap-expd-card {
   width: 400px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_536.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_536.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
  color: rgba(124, 124, 124, 1.00);
     background: rgba(33, 255, 255, 1.00);
      height: 450px;
  width: 400px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_536.expd-card * {
  pointer-events: none;
}

#stacks_in_536.expd-card .expd-open,
#stacks_in_536.expd-card [data-open='1'],
#stacks_in_536.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_536.expd-card h1,
#stacks_in_536.expd-card h2,
#stacks_in_536.expd-card h3,
#stacks_in_536.expd-card h4,
#stacks_in_536.expd-card h5,
#stacks_in_536.expd-card h6 {
  font-family: inherit;
}

#stacks_in_536.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_536.expd-card [data-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_536.expd-card [data-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_536.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_536.expd-card .expd-card-button[data-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_536.expd-card .expd-card-button:hover,
#stacks_in_536.expd-card .expd-card-button[data-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_536.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_536 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: rgba(124, 124, 124, 1.00); 
     background: rgba(33, 255, 255, 1.00);
     border-radius: 4px;
}
.expd-body .fixed-closestacks_in_536 {
  pointer-events: all;
  
  opacity: 0;
  pointer-events: none;
  
}

.expd-body.show-close .fixed-closestacks_in_536 {
  opacity: 1;
  pointer-events: all;
} 

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-image: url(../files/headerImage-536.jpg);
  background-size: cover;
  background-position: center center;
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_536.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(0, 0, 0, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(251, 2, 7, 1.00);
  border: 3px solid rgba(251, 2, 7, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_536.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_536.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_536.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_536.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_536.expd-card.expd-active [data-close='1'] {
  display: inline-block;
}

#stacks_in_536.expd-card.expd-active .expd-open[data-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_536.expd-card.expd-active .expd-card-button[data-open='1'] {
  display: none;
}

#stacks_in_536.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_536.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_536.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_536.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}





#stacks_in_765 h5,#stacks_in_765 h5 a,#stacks_in_765 p,#stacks_in_765 p a{
	color:rgba(251, 2, 7, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:left;
	font-weight: bold ;
	
	
	
	

	

	
		text-shadow: 0px 1px 1px rgba(85, 85, 85, 1.00);
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_765 p a:hover, #stacks_in_765 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








#stacks_in_786 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_786 .jwresp_col_wrapper{margin:0;width:49%;float:left;position:relative;overflow:auto}#stacks_in_786 .jwresp_col_wrapper.right{float:right}#stacks_in_786 .jwresp_col{overflow:hidden;width:48%;float:left;margin:0}#stacks_in_786 #jwresp_col2_stacks_in_786,#stacks_in_786 #jwresp_col4_stacks_in_786{float:right}#stacks_in_786 #jwresp_col1_stacks_in_786,#stacks_in_786 #jwresp_col3_stacks_in_786{margin-right:2} @media screen and (max-width:770px){#stacks_in_786 .jwresp_col_wrapper.left,#stacks_in_786 .jwresp_col_wrapper.right{width:100%;float:none;clear:both}#stacks_in_786 .jwresp_col_wrapper.left{margin-bottom:20px}#stacks_in_786 .jwresp_col{width:49%}#stacks_in_786 #jwresp_col1_stacks_in_786,#stacks_in_786 #jwresp_col3_stacks_in_786{margin:0}}  @media screen and (max-width:500px){#stacks_in_786 .jwresp_col{width:100%;display:block}#stacks_in_786 #jwresp_col1_stacks_in_786,#stacks_in_786 #jwresp_col2_stacks_in_786,#stacks_in_786 #jwresp_col3_stacks_in_786{margin:0;margin-bottom:20px}#stacks_in_786 #jwresp_col4_stacks_in_786{margin:0}#stacks_in_786 .jwresp_col_wrapper.left{margin-bottom:0}}

#stacks_in_786 {
	margin:  4px;
	padding:  1px;
}
#stacks_in_807.expd-card,
#stacks_in_807.expd-card * {
  box-sizing: border-box;
}

#stacks_in_807 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_807.expd-card .click-all {
  height: 100%;
}

  #stacks_in_807.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
   background: -moz-linear-gradient(top, transparent 0%, rgba(253, 128, 8, 1.00) 80%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(253, 128, 8, 1.00) 80%);
  background: linear-gradient(to bottom, transparent 0%, rgba(253, 128, 8, 1.00) 80%);
     pointer-events: none;
}

#stacks_in_807.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_807_wrap.wrap-expd-card {
   width: 400px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_807.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_807.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
  color: rgba(124, 124, 124, 1.00);
     background: rgba(253, 128, 8, 1.00);
      height: 450px;
  width: 400px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_807.expd-card * {
  pointer-events: none;
}

#stacks_in_807.expd-card .expd-open,
#stacks_in_807.expd-card [data-open='1'],
#stacks_in_807.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_807.expd-card h1,
#stacks_in_807.expd-card h2,
#stacks_in_807.expd-card h3,
#stacks_in_807.expd-card h4,
#stacks_in_807.expd-card h5,
#stacks_in_807.expd-card h6 {
  font-family: inherit;
}

#stacks_in_807.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_807.expd-card [data-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_807.expd-card [data-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_807.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_807.expd-card .expd-card-button[data-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_807.expd-card .expd-card-button:hover,
#stacks_in_807.expd-card .expd-card-button[data-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_807.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_807 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: rgba(124, 124, 124, 1.00); 
     background: rgba(253, 128, 8, 1.00);
     border-radius: 4px;
}
.expd-body .fixed-closestacks_in_807 {
  pointer-events: all;
  
  opacity: 0;
  pointer-events: none;
  
}

.expd-body.show-close .fixed-closestacks_in_807 {
  opacity: 1;
  pointer-events: all;
} 

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-image: url(../files/headerImage-807.gif);
  background-size: cover;
  background-position: center center;
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_807.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(255, 255, 255, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(0, 0, 0, 1.00);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_807.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_807.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_807.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_807.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_807.expd-card.expd-active [data-close='1'] {
  display: inline-block;
}

#stacks_in_807.expd-card.expd-active .expd-open[data-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_807.expd-card.expd-active .expd-card-button[data-open='1'] {
  display: none;
}

#stacks_in_807.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_807.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_807.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_807.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}





#stacks_in_823 h3,#stacks_in_823 h3 a,#stacks_in_823 p,#stacks_in_823 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:justify;
	font-weight: bold ;
	
	
	text-justify:auto;
	

	

	
		text-shadow: 0px 1px 1px rgba(251, 2, 7, 1.00);
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_823 p a:hover, #stacks_in_823 h3 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








#stacks_in_811.expd-card,
#stacks_in_811.expd-card * {
  box-sizing: border-box;
}

#stacks_in_811 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_811.expd-card .click-all {
  height: 100%;
}

  #stacks_in_811.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
   background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 1.00) 80%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 1.00) 80%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1.00) 80%);
     pointer-events: none;
}

#stacks_in_811.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_811_wrap.wrap-expd-card {
   width: 400px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_811.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_811.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
  color: rgba(124, 124, 124, 1.00);
     background: rgba(0, 0, 0, 1.00);
      height: 450px;
  width: 400px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_811.expd-card * {
  pointer-events: none;
}

#stacks_in_811.expd-card .expd-open,
#stacks_in_811.expd-card [data-open='1'],
#stacks_in_811.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_811.expd-card h1,
#stacks_in_811.expd-card h2,
#stacks_in_811.expd-card h3,
#stacks_in_811.expd-card h4,
#stacks_in_811.expd-card h5,
#stacks_in_811.expd-card h6 {
  font-family: inherit;
}

#stacks_in_811.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_811.expd-card [data-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_811.expd-card [data-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_811.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_811.expd-card .expd-card-button[data-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_811.expd-card .expd-card-button:hover,
#stacks_in_811.expd-card .expd-card-button[data-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_811.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_811 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: rgba(124, 124, 124, 1.00); 
     background: rgba(0, 0, 0, 1.00);
     border-radius: 4px;
}
.expd-body .fixed-closestacks_in_811 {
  pointer-events: all;
  
  opacity: 0;
  pointer-events: none;
  
}

.expd-body.show-close .fixed-closestacks_in_811 {
  opacity: 1;
  pointer-events: all;
} 

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-image: url(../files/headerImage-811.jpg);
  background-size: cover;
  background-position: center center;
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_811.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(255, 255, 255, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(253, 128, 8, 1.00);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_811.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_811.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_811.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_811.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_811.expd-card.expd-active [data-close='1'] {
  display: inline-block;
}

#stacks_in_811.expd-card.expd-active .expd-open[data-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_811.expd-card.expd-active .expd-card-button[data-open='1'] {
  display: none;
}

#stacks_in_811.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_811.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_811.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_811.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}





#stacks_in_825 h5,#stacks_in_825 h5 a,#stacks_in_825 p,#stacks_in_825 p a{
	color:rgba(251, 2, 7, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:justify;
	font-weight: bold ;
	
	
	text-justify:auto;
	

	

	
		text-shadow: 0px 1px 1px rgba(85, 85, 85, 1.00);
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_825 p a:hover, #stacks_in_825 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








#stacks_in_815.expd-card,
#stacks_in_815.expd-card * {
  box-sizing: border-box;
}

#stacks_in_815 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_815.expd-card .click-all {
  height: 100%;
}

  #stacks_in_815.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
   background: -moz-linear-gradient(top, transparent 0%, rgba(251, 2, 7, 1.00) 80%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(251, 2, 7, 1.00) 80%);
  background: linear-gradient(to bottom, transparent 0%, rgba(251, 2, 7, 1.00) 80%);
     pointer-events: none;
}

#stacks_in_815.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_815_wrap.wrap-expd-card {
   width: 400px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_815.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_815.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
  color: rgba(0, 0, 255, 1.00);
     background: rgba(251, 2, 7, 1.00);
      height: 450px;
  width: 400px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_815.expd-card * {
  pointer-events: none;
}

#stacks_in_815.expd-card .expd-open,
#stacks_in_815.expd-card [data-open='1'],
#stacks_in_815.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_815.expd-card h1,
#stacks_in_815.expd-card h2,
#stacks_in_815.expd-card h3,
#stacks_in_815.expd-card h4,
#stacks_in_815.expd-card h5,
#stacks_in_815.expd-card h6 {
  font-family: inherit;
}

#stacks_in_815.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_815.expd-card [data-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_815.expd-card [data-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_815.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_815.expd-card .expd-card-button[data-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_815.expd-card .expd-card-button:hover,
#stacks_in_815.expd-card .expd-card-button[data-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_815.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_815 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: rgba(0, 0, 255, 1.00); 
     background: rgba(251, 2, 7, 1.00);
     border-radius: 4px;
}
.expd-body .fixed-closestacks_in_815 {
  pointer-events: all;
  
  opacity: 0;
  pointer-events: none;
  
}

.expd-body.show-close .fixed-closestacks_in_815 {
  opacity: 1;
  pointer-events: all;
} 

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-image: url(../files/headerImage-815.jpg);
  background-size: cover;
  background-position: center center;
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_815.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(255, 255, 255, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(255, 255, 10, 1.00);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_815.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_815.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_815.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_815.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_815.expd-card.expd-active [data-close='1'] {
  display: inline-block;
}

#stacks_in_815.expd-card.expd-active .expd-open[data-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_815.expd-card.expd-active .expd-card-button[data-open='1'] {
  display: none;
}

#stacks_in_815.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_815.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_815.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_815.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}





#stacks_in_827 h5,#stacks_in_827 h5 a,#stacks_in_827 p,#stacks_in_827 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:justify;
	font-weight: bold ;
	
	
	text-justify:auto;
	

	

	
		text-shadow: 0px 1px 1px rgba(85, 85, 85, 1.00);
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_827 p a:hover, #stacks_in_827 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








#stacks_in_819.expd-card,
#stacks_in_819.expd-card * {
  box-sizing: border-box;
}

#stacks_in_819 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_819.expd-card .click-all {
  height: 100%;
}

  #stacks_in_819.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
   background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 80%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 80%);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 80%);
     pointer-events: none;
}

#stacks_in_819.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_819_wrap.wrap-expd-card {
   width: 400px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_819.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_819.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
  color: rgba(124, 124, 124, 1.00);
     background: rgba(255, 255, 255, 1.00);
      height: 450px;
  width: 400px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 900ms;
  animation-duration: 900ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_819.expd-card * {
  pointer-events: none;
}

#stacks_in_819.expd-card .expd-open,
#stacks_in_819.expd-card [data-open='1'],
#stacks_in_819.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_819.expd-card h1,
#stacks_in_819.expd-card h2,
#stacks_in_819.expd-card h3,
#stacks_in_819.expd-card h4,
#stacks_in_819.expd-card h5,
#stacks_in_819.expd-card h6 {
  font-family: inherit;
}

#stacks_in_819.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_819.expd-card [data-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_819.expd-card [data-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_819.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_819.expd-card .expd-card-button[data-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_819.expd-card .expd-card-button:hover,
#stacks_in_819.expd-card .expd-card-button[data-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_819.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_819 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: rgba(124, 124, 124, 1.00); 
     background: rgba(255, 255, 255, 1.00);
     border-radius: 4px;
}
.expd-body .fixed-closestacks_in_819 {
  pointer-events: all;
  
  opacity: 0;
  pointer-events: none;
  
}

.expd-body.show-close .fixed-closestacks_in_819 {
  opacity: 1;
  pointer-events: all;
} 

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-image: url(../files/headerImage-819.jpg);
  background-size: cover;
  background-position: center center;
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_819.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_819.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_819.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_819.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_819.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_819.expd-card.expd-active [data-close='1'] {
  display: inline-block;
}

#stacks_in_819.expd-card.expd-active .expd-open[data-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_819.expd-card.expd-active .expd-card-button[data-open='1'] {
  display: none;
}

#stacks_in_819.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_819.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_819.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_819.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}





#stacks_in_829 h3,#stacks_in_829 h3 a,#stacks_in_829 p,#stacks_in_829 p a{
	color:rgba(255, 255, 10, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:justify;
	font-weight: bold ;
	
	
	text-justify:auto;
	

	

	
		text-shadow: 0px 1px 1px rgba(85, 85, 85, 1.00);
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_829 p a:hover, #stacks_in_829 h3 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








#stacks_in_181 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_181 .jwresp_col_wrapper{margin:0;width:50%;float:left;position:relative;overflow:auto}#stacks_in_181 .jwresp_col_wrapper.right{float:right}#stacks_in_181 .jwresp_col{overflow:hidden;width:50%;float:left;margin:0}#stacks_in_181 #jwresp_col2_stacks_in_181,#stacks_in_181 #jwresp_col4_stacks_in_181{float:right}#stacks_in_181 #jwresp_col1_stacks_in_181,#stacks_in_181 #jwresp_col3_stacks_in_181{margin-right:0} @media screen and (max-width:770px){#stacks_in_181 .jwresp_col_wrapper.left,#stacks_in_181 .jwresp_col_wrapper.right{width:100%;float:none;clear:both}#stacks_in_181 .jwresp_col_wrapper.left{margin-bottom:20px}#stacks_in_181 .jwresp_col{width:50%}#stacks_in_181 #jwresp_col1_stacks_in_181,#stacks_in_181 #jwresp_col3_stacks_in_181{margin:0}}  @media screen and (max-width:500px){#stacks_in_181 .jwresp_col{width:100%;display:block}#stacks_in_181 #jwresp_col1_stacks_in_181,#stacks_in_181 #jwresp_col2_stacks_in_181,#stacks_in_181 #jwresp_col3_stacks_in_181{margin:0;margin-bottom:20px}#stacks_in_181 #jwresp_col4_stacks_in_181{margin:0}#stacks_in_181 .jwresp_col_wrapper.left{margin-bottom:0}}

#stacks_in_181 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  4px;
	padding:  1px;
}
/*  */
#split-stacks_in_186 {
  max-width: 1200px;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden; }
  #split-stacks_in_186 * {
    box-sizing: border-box; }
  #split-stacks_in_186 .split:first-child {
    width: 50%; }
  #split-stacks_in_186 .split:last-child {
    width: 50%; }
  #split-stacks_in_186.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_186.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 30px; }
  #split-stacks_in_186.hover-split .split:first-child:not(.active) .split-content, #split-stacks_in_186.hover-split .split:last-child:not(.active) .split-content {
    animation: none; }
  #split-stacks_in_186.hover-split .split:first-child:not(.active) .split-icon-on, #split-stacks_in_186.hover-split .split:first-child:not(.active) .split-title, #split-stacks_in_186.hover-split .split:first-child:not(.active) .split-description, #split-stacks_in_186.hover-split .split:first-child:not(.active) .split-button, #split-stacks_in_186.hover-split .split:last-child:not(.active) .split-icon-on, #split-stacks_in_186.hover-split .split:last-child:not(.active) .split-title, #split-stacks_in_186.hover-split .split:last-child:not(.active) .split-description, #split-stacks_in_186.hover-split .split:last-child:not(.active) .split-button {
    opacity: 0;
    transition: opacity 0s 0s; }
  #split-stacks_in_186.hover-split .split:first-child:not(.active) .split-icon-off, #split-stacks_in_186.hover-split .split:last-child:not(.active) .split-icon-off {
    opacity: 1;
    transition: opacity 0.4s 0s; }

#split-stacks_in_186 .split:first-child, #split-stacks_in_186 .split:last-child {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  overflow: hidden;
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  box-sizing: border-box;
  min-height: 275px;
  transition: all 0.5s ease-in-out; }
  #split-stacks_in_186 .split:first-child:hover, #split-stacks_in_186 .split:last-child:hover {
    width: 100%; }
  #split-stacks_in_186 .split:first-child .split-content, #split-stacks_in_186 .split:last-child .split-content {
    z-index: 2;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    transition: all 0.4s;
    -ms-flex-direction: column;
        flex-direction: column; }
  #split-stacks_in_186 .split:first-child .split-icon, #split-stacks_in_186 .split:first-child .split-title, #split-stacks_in_186 .split:first-child .split-description, #split-stacks_in_186 .split:first-child .split-button, #split-stacks_in_186 .split:last-child .split-icon, #split-stacks_in_186 .split:last-child .split-title, #split-stacks_in_186 .split:last-child .split-description, #split-stacks_in_186 .split:last-child .split-button {
    transition: opacity 0.4s 0.5s; }
  #split-stacks_in_186 .split:first-child .split-title, #split-stacks_in_186 .split:last-child .split-title {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    z-index: 2;
    position: relative;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
    line-height: calc(30px * 1.618); }
  #split-stacks_in_186 .split:first-child .split-description, #split-stacks_in_186 .split:last-child .split-description {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    z-index: 2;
    position: relative;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: calc(14px * 1.618); }
  #split-stacks_in_186 .split:first-child .split-button, #split-stacks_in_186 .split:last-child .split-button {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    z-index: 2;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    line-height: calc(16px * 1.618);
    padding: 8px 25px;
    border-radius: 30px; }
  #split-stacks_in_186 .split:first-child .split-icon, #split-stacks_in_186 .split:last-child .split-icon {
    opacity: 1;
    z-index: 2;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    position: relative;
    width: 60px;
    max-width: 60px;
    height: 60px;
    max-height: 60px;
    margin-bottom: 10px;
    border-radius: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    #split-stacks_in_186 .split:first-child .split-icon i, #split-stacks_in_186 .split:last-child .split-icon i {
      line-height: 0;
      font-size: 50px; }
  #split-stacks_in_186 .split:first-child .split-icon-off, #split-stacks_in_186 .split:last-child .split-icon-off {
    top: 50%;
    left: 50%;
    opacity: 1;
    opacity: 0;
    animation: none;
    position: absolute;
    transition: opacity 0s 0s;
    transform: translate(-50%, -50%); }

#split-stacks_in_186 .split:first-child.content-v-top, #split-stacks_in_186 .split:last-child.content-v-top {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#split-stacks_in_186 .split:first-child.content-v-center, #split-stacks_in_186 .split:last-child.content-v-center {
  -ms-flex-pack: center;
      justify-content: center; }

#split-stacks_in_186 .split:first-child.content-v-bottom, #split-stacks_in_186 .split:last-child.content-v-bottom {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#split-stacks_in_186 .split:first-child.content-h-left, #split-stacks_in_186 .split:last-child.content-h-left {
  -ms-flex-align: start;
      align-items: flex-start; }

#split-stacks_in_186 .split:first-child.content-h-center, #split-stacks_in_186 .split:last-child.content-h-center {
  -ms-flex-align: center;
      align-items: center; }

#split-stacks_in_186 .split:first-child.content-h-right, #split-stacks_in_186 .split:last-child.content-h-right {
  -ms-flex-align: end;
      align-items: flex-end; }

#split-stacks_in_186 .split:first-child.text-align-left .split-content, #split-stacks_in_186 .split:last-child.text-align-left .split-content {
  text-align: left;
  -ms-flex-align: start;
      align-items: flex-start; }

#split-stacks_in_186 .split:first-child.text-align-center .split-content, #split-stacks_in_186 .split:last-child.text-align-center .split-content {
  text-align: center;
  -ms-flex-align: center;
      align-items: center; }

#split-stacks_in_186 .split:first-child.text-align-right .split-content, #split-stacks_in_186 .split:last-child.text-align-right .split-content {
  text-align: right;
  -ms-flex-align: end;
      align-items: flex-end; }

@media (max-width: px) {
  #split-stacks_in_186 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: column;
        flex-direction: column; }
    #split-stacks_in_186 .split:first-child, #split-stacks_in_186 .split:last-child {
      width: 100% !important;
      transition: all 0.4s, width 0s; }
      #split-stacks_in_186 .split:first-child .split-icon, #split-stacks_in_186 .split:first-child .split-title, #split-stacks_in_186 .split:first-child .split-description, #split-stacks_in_186 .split:first-child .split-button, #split-stacks_in_186 .split:last-child .split-icon, #split-stacks_in_186 .split:last-child .split-title, #split-stacks_in_186 .split:last-child .split-description, #split-stacks_in_186 .split:last-child .split-button {
        opacity: 1 !important; }
      #split-stacks_in_186 .split:first-child .split-icon-off, #split-stacks_in_186 .split:last-child .split-icon-off {
        opacity: 0 !important; } }

@media (max-width: 700px) {
  #split-stacks_in_186.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_186.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 0px; }
  #split-stacks_in_186 .split:first-child, #split-stacks_in_186 .split:last-child {
    min-height: 250px; }
    #split-stacks_in_186 .split:first-child .split-title, #split-stacks_in_186 .split:last-child .split-title {
      font-size: 30px;
      line-height: calc($split-items--title-t * 1.618); }
    #split-stacks_in_186 .split:first-child .split-description, #split-stacks_in_186 .split:last-child .split-description {
      font-size: 14px;
      line-height: calc($split-items--description-m * 1.618); } }

@media (max-width: 400px) {
  #split-stacks_in_186.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_186.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 0px; }
  #split-stacks_in_186 .split:first-child, #split-stacks_in_186 .split:last-child {
    min-height: 350px; }
    #split-stacks_in_186 .split:first-child .split-title, #split-stacks_in_186 .split:last-child .split-title {
      font-size: 24px;
      line-height: calc($split-items--title-m * 1.618); }
    #split-stacks_in_186 .split:first-child .split-description, #split-stacks_in_186 .split:last-child .split-description {
      font-size: 14px;
      line-height: calc($split-items--description-m * 1.618); } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#split-item-stacks_in_187 {
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/item_bg_image_choice-187.jpg) no-repeat center center;
  background-size: cover;
  /*  */ }
  #split-item-stacks_in_187::before {
    /*  */
    display: block !important;
    /*  */ }
  #split-item-stacks_in_187::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.20); }
  #split-item-stacks_in_187 .split-title {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_187 .split-description {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_187 .split-icon {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 0.30); }
  #split-item-stacks_in_187 .split-button {
    color: rgba(0, 0, 0, 0.50);
    background: rgba(255, 255, 255, 1.00); }
    #split-item-stacks_in_187 .split-button:hover {
      color: rgba(0, 0, 0, 0.50);
      background: rgba(255, 255, 255, 1.00); }
#split-item-stacks_in_191 {
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/item_bg_image_choice-191.jpg) no-repeat center center;
  background-size: cover;
  /*  */ }
  #split-item-stacks_in_191::before {
    /*  */
    display: block !important;
    /*  */ }
  #split-item-stacks_in_191::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.20); }
  #split-item-stacks_in_191 .split-title {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_191 .split-description {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_191 .split-icon {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 0.30); }
  #split-item-stacks_in_191 .split-button {
    color: rgba(0, 0, 0, 0.50);
    background: rgba(255, 255, 255, 1.00); }
    #split-item-stacks_in_191 .split-button:hover {
      color: rgba(0, 0, 0, 0.50);
      background: rgba(255, 255, 255, 1.00); }
/*  */
#split-stacks_in_196 {
  max-width: 900px;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden; }
  #split-stacks_in_196 * {
    box-sizing: border-box; }
  #split-stacks_in_196 .split:first-child {
    width: 50%; }
  #split-stacks_in_196 .split:last-child {
    width: 50%; }
  #split-stacks_in_196.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_196.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 30px; }
  #split-stacks_in_196.hover-split .split:first-child:not(.active) .split-content, #split-stacks_in_196.hover-split .split:last-child:not(.active) .split-content {
    animation: none; }
  #split-stacks_in_196.hover-split .split:first-child:not(.active) .split-icon-on, #split-stacks_in_196.hover-split .split:first-child:not(.active) .split-title, #split-stacks_in_196.hover-split .split:first-child:not(.active) .split-description, #split-stacks_in_196.hover-split .split:first-child:not(.active) .split-button, #split-stacks_in_196.hover-split .split:last-child:not(.active) .split-icon-on, #split-stacks_in_196.hover-split .split:last-child:not(.active) .split-title, #split-stacks_in_196.hover-split .split:last-child:not(.active) .split-description, #split-stacks_in_196.hover-split .split:last-child:not(.active) .split-button {
    opacity: 0;
    transition: opacity 0s 0s; }
  #split-stacks_in_196.hover-split .split:first-child:not(.active) .split-icon-off, #split-stacks_in_196.hover-split .split:last-child:not(.active) .split-icon-off {
    opacity: 1;
    transition: opacity 0.4s 0s; }

#split-stacks_in_196 .split:first-child, #split-stacks_in_196 .split:last-child {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  overflow: hidden;
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  box-sizing: border-box;
  min-height: 275px;
  transition: all 0.5s ease-in-out; }
  #split-stacks_in_196 .split:first-child:hover, #split-stacks_in_196 .split:last-child:hover {
    width: 100%; }
  #split-stacks_in_196 .split:first-child .split-content, #split-stacks_in_196 .split:last-child .split-content {
    z-index: 2;
    padding: 0px;
    max-width: 348px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    transition: all 0.4s;
    -ms-flex-direction: column;
        flex-direction: column; }
  #split-stacks_in_196 .split:first-child .split-icon, #split-stacks_in_196 .split:first-child .split-title, #split-stacks_in_196 .split:first-child .split-description, #split-stacks_in_196 .split:first-child .split-button, #split-stacks_in_196 .split:last-child .split-icon, #split-stacks_in_196 .split:last-child .split-title, #split-stacks_in_196 .split:last-child .split-description, #split-stacks_in_196 .split:last-child .split-button {
    transition: opacity 0.4s 0.5s; }
  #split-stacks_in_196 .split:first-child .split-title, #split-stacks_in_196 .split:last-child .split-title {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    z-index: 2;
    position: relative;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
    line-height: calc(30px * 1.618); }
  #split-stacks_in_196 .split:first-child .split-description, #split-stacks_in_196 .split:last-child .split-description {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    z-index: 2;
    position: relative;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: calc(14px * 1.618); }
  #split-stacks_in_196 .split:first-child .split-button, #split-stacks_in_196 .split:last-child .split-button {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    z-index: 2;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    line-height: calc(16px * 1.618);
    padding: 8px 25px;
    border-radius: 30px; }
  #split-stacks_in_196 .split:first-child .split-icon, #split-stacks_in_196 .split:last-child .split-icon {
    opacity: 1;
    z-index: 2;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    position: relative;
    width: 60px;
    max-width: 60px;
    height: 60px;
    max-height: 60px;
    margin-bottom: 10px;
    border-radius: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    #split-stacks_in_196 .split:first-child .split-icon i, #split-stacks_in_196 .split:last-child .split-icon i {
      line-height: 0;
      font-size: 50px; }
  #split-stacks_in_196 .split:first-child .split-icon-off, #split-stacks_in_196 .split:last-child .split-icon-off {
    top: 50%;
    left: 50%;
    opacity: 1;
    opacity: 0;
    animation: none;
    position: absolute;
    transition: opacity 0s 0s;
    transform: translate(-50%, -50%); }

#split-stacks_in_196 .split:first-child.content-v-top, #split-stacks_in_196 .split:last-child.content-v-top {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#split-stacks_in_196 .split:first-child.content-v-center, #split-stacks_in_196 .split:last-child.content-v-center {
  -ms-flex-pack: center;
      justify-content: center; }

#split-stacks_in_196 .split:first-child.content-v-bottom, #split-stacks_in_196 .split:last-child.content-v-bottom {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#split-stacks_in_196 .split:first-child.content-h-left, #split-stacks_in_196 .split:last-child.content-h-left {
  -ms-flex-align: start;
      align-items: flex-start; }

#split-stacks_in_196 .split:first-child.content-h-center, #split-stacks_in_196 .split:last-child.content-h-center {
  -ms-flex-align: center;
      align-items: center; }

#split-stacks_in_196 .split:first-child.content-h-right, #split-stacks_in_196 .split:last-child.content-h-right {
  -ms-flex-align: end;
      align-items: flex-end; }

#split-stacks_in_196 .split:first-child.text-align-left .split-content, #split-stacks_in_196 .split:last-child.text-align-left .split-content {
  text-align: left;
  -ms-flex-align: start;
      align-items: flex-start; }

#split-stacks_in_196 .split:first-child.text-align-center .split-content, #split-stacks_in_196 .split:last-child.text-align-center .split-content {
  text-align: center;
  -ms-flex-align: center;
      align-items: center; }

#split-stacks_in_196 .split:first-child.text-align-right .split-content, #split-stacks_in_196 .split:last-child.text-align-right .split-content {
  text-align: right;
  -ms-flex-align: end;
      align-items: flex-end; }

@media (max-width: px) {
  #split-stacks_in_196 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: column;
        flex-direction: column; }
    #split-stacks_in_196 .split:first-child, #split-stacks_in_196 .split:last-child {
      width: 100% !important;
      transition: all 0.4s, width 0s; }
      #split-stacks_in_196 .split:first-child .split-icon, #split-stacks_in_196 .split:first-child .split-title, #split-stacks_in_196 .split:first-child .split-description, #split-stacks_in_196 .split:first-child .split-button, #split-stacks_in_196 .split:last-child .split-icon, #split-stacks_in_196 .split:last-child .split-title, #split-stacks_in_196 .split:last-child .split-description, #split-stacks_in_196 .split:last-child .split-button {
        opacity: 1 !important; }
      #split-stacks_in_196 .split:first-child .split-icon-off, #split-stacks_in_196 .split:last-child .split-icon-off {
        opacity: 0 !important; } }

@media (max-width: 700px) {
  #split-stacks_in_196.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_196.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 100px; }
  #split-stacks_in_196 .split:first-child, #split-stacks_in_196 .split:last-child {
    min-height: 400px; }
    #split-stacks_in_196 .split:first-child .split-title, #split-stacks_in_196 .split:last-child .split-title {
      font-size: 30px;
      line-height: calc($split-items--title-t * 1.618); }
    #split-stacks_in_196 .split:first-child .split-description, #split-stacks_in_196 .split:last-child .split-description {
      font-size: 14px;
      line-height: calc($split-items--description-m * 1.618); } }

@media (max-width: 400px) {
  #split-stacks_in_196.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_196.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 100px; }
  #split-stacks_in_196 .split:first-child, #split-stacks_in_196 .split:last-child {
    min-height: 350px; }
    #split-stacks_in_196 .split:first-child .split-title, #split-stacks_in_196 .split:last-child .split-title {
      font-size: 24px;
      line-height: calc($split-items--title-m * 1.618); }
    #split-stacks_in_196 .split:first-child .split-description, #split-stacks_in_196 .split:last-child .split-description {
      font-size: 14px;
      line-height: calc($split-items--description-m * 1.618); } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#split-item-stacks_in_197 {
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/item_bg_image_choice-197.jpg) no-repeat center center;
  background-size: cover;
  /*  */ }
  #split-item-stacks_in_197::before {
    /*  */
    display: block !important;
    /*  */ }
  #split-item-stacks_in_197::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.20); }
  #split-item-stacks_in_197 .split-title {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_197 .split-description {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_197 .split-icon {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 0.30); }
  #split-item-stacks_in_197 .split-button {
    color: rgba(0, 0, 0, 0.50);
    background: rgba(255, 255, 255, 1.00); }
    #split-item-stacks_in_197 .split-button:hover {
      color: rgba(0, 0, 0, 0.50);
      background: rgba(255, 255, 255, 1.00); }
#split-item-stacks_in_201 {
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/item_bg_image_choice-201.jpg) no-repeat center center;
  background-size: cover;
  /*  */ }
  #split-item-stacks_in_201::before {
    /*  */
    display: block !important;
    /*  */ }
  #split-item-stacks_in_201::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.20); }
  #split-item-stacks_in_201 .split-title {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_201 .split-description {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_201 .split-icon {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 0.30); }
  #split-item-stacks_in_201 .split-button {
    color: rgba(0, 0, 0, 0.50);
    background: rgba(255, 255, 255, 1.00); }
    #split-item-stacks_in_201 .split-button:hover {
      color: rgba(0, 0, 0, 0.50);
      background: rgba(255, 255, 255, 1.00); }
/*  */
#split-stacks_in_206 {
  max-width: 900px;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden; }
  #split-stacks_in_206 * {
    box-sizing: border-box; }
  #split-stacks_in_206 .split:first-child {
    width: 50%; }
  #split-stacks_in_206 .split:last-child {
    width: 50%; }
  #split-stacks_in_206.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_206.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 30px; }
  #split-stacks_in_206.hover-split .split:first-child:not(.active) .split-content, #split-stacks_in_206.hover-split .split:last-child:not(.active) .split-content {
    animation: none; }
  #split-stacks_in_206.hover-split .split:first-child:not(.active) .split-icon-on, #split-stacks_in_206.hover-split .split:first-child:not(.active) .split-title, #split-stacks_in_206.hover-split .split:first-child:not(.active) .split-description, #split-stacks_in_206.hover-split .split:first-child:not(.active) .split-button, #split-stacks_in_206.hover-split .split:last-child:not(.active) .split-icon-on, #split-stacks_in_206.hover-split .split:last-child:not(.active) .split-title, #split-stacks_in_206.hover-split .split:last-child:not(.active) .split-description, #split-stacks_in_206.hover-split .split:last-child:not(.active) .split-button {
    opacity: 0;
    transition: opacity 0s 0s; }
  #split-stacks_in_206.hover-split .split:first-child:not(.active) .split-icon-off, #split-stacks_in_206.hover-split .split:last-child:not(.active) .split-icon-off {
    opacity: 1;
    transition: opacity 0.4s 0s; }

#split-stacks_in_206 .split:first-child, #split-stacks_in_206 .split:last-child {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  overflow: hidden;
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  box-sizing: border-box;
  min-height: 275px;
  transition: all 0.5s ease-in-out; }
  #split-stacks_in_206 .split:first-child:hover, #split-stacks_in_206 .split:last-child:hover {
    width: 100%; }
  #split-stacks_in_206 .split:first-child .split-content, #split-stacks_in_206 .split:last-child .split-content {
    z-index: 2;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    transition: all 0.4s;
    -ms-flex-direction: column;
        flex-direction: column; }
  #split-stacks_in_206 .split:first-child .split-icon, #split-stacks_in_206 .split:first-child .split-title, #split-stacks_in_206 .split:first-child .split-description, #split-stacks_in_206 .split:first-child .split-button, #split-stacks_in_206 .split:last-child .split-icon, #split-stacks_in_206 .split:last-child .split-title, #split-stacks_in_206 .split:last-child .split-description, #split-stacks_in_206 .split:last-child .split-button {
    transition: opacity 0.4s 0.5s; }
  #split-stacks_in_206 .split:first-child .split-title, #split-stacks_in_206 .split:last-child .split-title {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    z-index: 2;
    position: relative;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
    line-height: calc(30px * 1.618); }
  #split-stacks_in_206 .split:first-child .split-description, #split-stacks_in_206 .split:last-child .split-description {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    z-index: 2;
    position: relative;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: calc(14px * 1.618); }
  #split-stacks_in_206 .split:first-child .split-button, #split-stacks_in_206 .split:last-child .split-button {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    z-index: 2;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    line-height: calc(16px * 1.618);
    padding: 8px 25px;
    border-radius: 30px; }
  #split-stacks_in_206 .split:first-child .split-icon, #split-stacks_in_206 .split:last-child .split-icon {
    opacity: 1;
    z-index: 2;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    position: relative;
    width: 60px;
    max-width: 60px;
    height: 60px;
    max-height: 60px;
    margin-bottom: 10px;
    border-radius: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    #split-stacks_in_206 .split:first-child .split-icon i, #split-stacks_in_206 .split:last-child .split-icon i {
      line-height: 0;
      font-size: 50px; }
  #split-stacks_in_206 .split:first-child .split-icon-off, #split-stacks_in_206 .split:last-child .split-icon-off {
    top: 50%;
    left: 50%;
    opacity: 1;
    opacity: 0;
    animation: none;
    position: absolute;
    transition: opacity 0s 0s;
    transform: translate(-50%, -50%); }

#split-stacks_in_206 .split:first-child.content-v-top, #split-stacks_in_206 .split:last-child.content-v-top {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#split-stacks_in_206 .split:first-child.content-v-center, #split-stacks_in_206 .split:last-child.content-v-center {
  -ms-flex-pack: center;
      justify-content: center; }

#split-stacks_in_206 .split:first-child.content-v-bottom, #split-stacks_in_206 .split:last-child.content-v-bottom {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#split-stacks_in_206 .split:first-child.content-h-left, #split-stacks_in_206 .split:last-child.content-h-left {
  -ms-flex-align: start;
      align-items: flex-start; }

#split-stacks_in_206 .split:first-child.content-h-center, #split-stacks_in_206 .split:last-child.content-h-center {
  -ms-flex-align: center;
      align-items: center; }

#split-stacks_in_206 .split:first-child.content-h-right, #split-stacks_in_206 .split:last-child.content-h-right {
  -ms-flex-align: end;
      align-items: flex-end; }

#split-stacks_in_206 .split:first-child.text-align-left .split-content, #split-stacks_in_206 .split:last-child.text-align-left .split-content {
  text-align: left;
  -ms-flex-align: start;
      align-items: flex-start; }

#split-stacks_in_206 .split:first-child.text-align-center .split-content, #split-stacks_in_206 .split:last-child.text-align-center .split-content {
  text-align: center;
  -ms-flex-align: center;
      align-items: center; }

#split-stacks_in_206 .split:first-child.text-align-right .split-content, #split-stacks_in_206 .split:last-child.text-align-right .split-content {
  text-align: right;
  -ms-flex-align: end;
      align-items: flex-end; }

@media (max-width: px) {
  #split-stacks_in_206 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: column;
        flex-direction: column; }
    #split-stacks_in_206 .split:first-child, #split-stacks_in_206 .split:last-child {
      width: 100% !important;
      transition: all 0.4s, width 0s; }
      #split-stacks_in_206 .split:first-child .split-icon, #split-stacks_in_206 .split:first-child .split-title, #split-stacks_in_206 .split:first-child .split-description, #split-stacks_in_206 .split:first-child .split-button, #split-stacks_in_206 .split:last-child .split-icon, #split-stacks_in_206 .split:last-child .split-title, #split-stacks_in_206 .split:last-child .split-description, #split-stacks_in_206 .split:last-child .split-button {
        opacity: 1 !important; }
      #split-stacks_in_206 .split:first-child .split-icon-off, #split-stacks_in_206 .split:last-child .split-icon-off {
        opacity: 0 !important; } }

@media (max-width: 700px) {
  #split-stacks_in_206.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_206.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 100px; }
  #split-stacks_in_206 .split:first-child, #split-stacks_in_206 .split:last-child {
    min-height: 400px; }
    #split-stacks_in_206 .split:first-child .split-title, #split-stacks_in_206 .split:last-child .split-title {
      font-size: 30px;
      line-height: calc($split-items--title-t * 1.618); }
    #split-stacks_in_206 .split:first-child .split-description, #split-stacks_in_206 .split:last-child .split-description {
      font-size: 14px;
      line-height: calc($split-items--description-m * 1.618); } }

@media (max-width: 400px) {
  #split-stacks_in_206.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_206.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 100px; }
  #split-stacks_in_206 .split:first-child, #split-stacks_in_206 .split:last-child {
    min-height: 350px; }
    #split-stacks_in_206 .split:first-child .split-title, #split-stacks_in_206 .split:last-child .split-title {
      font-size: 24px;
      line-height: calc($split-items--title-m * 1.618); }
    #split-stacks_in_206 .split:first-child .split-description, #split-stacks_in_206 .split:last-child .split-description {
      font-size: 14px;
      line-height: calc($split-items--description-m * 1.618); } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#split-item-stacks_in_207 {
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/item_bg_image_choice-207.jpg) no-repeat center center;
  background-size: cover;
  /*  */ }
  #split-item-stacks_in_207::before {
    /*  */
    display: block !important;
    /*  */ }
  #split-item-stacks_in_207::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.20); }
  #split-item-stacks_in_207 .split-title {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_207 .split-description {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_207 .split-icon {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 0.30); }
  #split-item-stacks_in_207 .split-button {
    color: rgba(0, 0, 0, 0.50);
    background: rgba(255, 255, 255, 1.00); }
    #split-item-stacks_in_207 .split-button:hover {
      color: rgba(0, 0, 0, 0.50);
      background: rgba(255, 255, 255, 1.00); }
#split-item-stacks_in_211 {
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/item_bg_image_choice-211.jpg) no-repeat center center;
  background-size: cover;
  /*  */ }
  #split-item-stacks_in_211::before {
    /*  */
    display: block !important;
    /*  */ }
  #split-item-stacks_in_211::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.20); }
  #split-item-stacks_in_211 .split-title {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_211 .split-description {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_211 .split-icon {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 0.30); }
  #split-item-stacks_in_211 .split-button {
    color: rgba(0, 0, 0, 0.50);
    background: rgba(255, 255, 255, 1.00); }
    #split-item-stacks_in_211 .split-button:hover {
      color: rgba(0, 0, 0, 0.50);
      background: rgba(255, 255, 255, 1.00); }
/*  */
#split-stacks_in_216 {
  max-width: 900px;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden; }
  #split-stacks_in_216 * {
    box-sizing: border-box; }
  #split-stacks_in_216 .split:first-child {
    width: 50%; }
  #split-stacks_in_216 .split:last-child {
    width: 50%; }
  #split-stacks_in_216.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_216.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 30px; }
  #split-stacks_in_216.hover-split .split:first-child:not(.active) .split-content, #split-stacks_in_216.hover-split .split:last-child:not(.active) .split-content {
    animation: none; }
  #split-stacks_in_216.hover-split .split:first-child:not(.active) .split-icon-on, #split-stacks_in_216.hover-split .split:first-child:not(.active) .split-title, #split-stacks_in_216.hover-split .split:first-child:not(.active) .split-description, #split-stacks_in_216.hover-split .split:first-child:not(.active) .split-button, #split-stacks_in_216.hover-split .split:last-child:not(.active) .split-icon-on, #split-stacks_in_216.hover-split .split:last-child:not(.active) .split-title, #split-stacks_in_216.hover-split .split:last-child:not(.active) .split-description, #split-stacks_in_216.hover-split .split:last-child:not(.active) .split-button {
    opacity: 0;
    transition: opacity 0s 0s; }
  #split-stacks_in_216.hover-split .split:first-child:not(.active) .split-icon-off, #split-stacks_in_216.hover-split .split:last-child:not(.active) .split-icon-off {
    opacity: 1;
    transition: opacity 0.4s 0s; }

#split-stacks_in_216 .split:first-child, #split-stacks_in_216 .split:last-child {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  overflow: hidden;
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  box-sizing: border-box;
  min-height: 275px;
  transition: all 0.5s ease-in-out; }
  #split-stacks_in_216 .split:first-child:hover, #split-stacks_in_216 .split:last-child:hover {
    width: 100%; }
  #split-stacks_in_216 .split:first-child .split-content, #split-stacks_in_216 .split:last-child .split-content {
    z-index: 2;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    transition: all 0.4s;
    -ms-flex-direction: column;
        flex-direction: column; }
  #split-stacks_in_216 .split:first-child .split-icon, #split-stacks_in_216 .split:first-child .split-title, #split-stacks_in_216 .split:first-child .split-description, #split-stacks_in_216 .split:first-child .split-button, #split-stacks_in_216 .split:last-child .split-icon, #split-stacks_in_216 .split:last-child .split-title, #split-stacks_in_216 .split:last-child .split-description, #split-stacks_in_216 .split:last-child .split-button {
    transition: opacity 0.4s 0.5s; }
  #split-stacks_in_216 .split:first-child .split-title, #split-stacks_in_216 .split:last-child .split-title {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    z-index: 2;
    position: relative;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
    line-height: calc(30px * 1.618); }
  #split-stacks_in_216 .split:first-child .split-description, #split-stacks_in_216 .split:last-child .split-description {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    z-index: 2;
    position: relative;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: calc(14px * 1.618); }
  #split-stacks_in_216 .split:first-child .split-button, #split-stacks_in_216 .split:last-child .split-button {
    /*  */
    font-family: "Montserrat";
    /*  */
    opacity: 1;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    z-index: 2;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    line-height: calc(16px * 1.618);
    padding: 8px 25px;
    border-radius: 30px; }
  #split-stacks_in_216 .split:first-child .split-icon, #split-stacks_in_216 .split:last-child .split-icon {
    opacity: 1;
    z-index: 2;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    position: relative;
    width: 60px;
    max-width: 60px;
    height: 60px;
    max-height: 60px;
    margin-bottom: 10px;
    border-radius: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    #split-stacks_in_216 .split:first-child .split-icon i, #split-stacks_in_216 .split:last-child .split-icon i {
      line-height: 0;
      font-size: 50px; }
  #split-stacks_in_216 .split:first-child .split-icon-off, #split-stacks_in_216 .split:last-child .split-icon-off {
    top: 50%;
    left: 50%;
    opacity: 1;
    opacity: 0;
    animation: none;
    position: absolute;
    transition: opacity 0s 0s;
    transform: translate(-50%, -50%); }

#split-stacks_in_216 .split:first-child.content-v-top, #split-stacks_in_216 .split:last-child.content-v-top {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#split-stacks_in_216 .split:first-child.content-v-center, #split-stacks_in_216 .split:last-child.content-v-center {
  -ms-flex-pack: center;
      justify-content: center; }

#split-stacks_in_216 .split:first-child.content-v-bottom, #split-stacks_in_216 .split:last-child.content-v-bottom {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#split-stacks_in_216 .split:first-child.content-h-left, #split-stacks_in_216 .split:last-child.content-h-left {
  -ms-flex-align: start;
      align-items: flex-start; }

#split-stacks_in_216 .split:first-child.content-h-center, #split-stacks_in_216 .split:last-child.content-h-center {
  -ms-flex-align: center;
      align-items: center; }

#split-stacks_in_216 .split:first-child.content-h-right, #split-stacks_in_216 .split:last-child.content-h-right {
  -ms-flex-align: end;
      align-items: flex-end; }

#split-stacks_in_216 .split:first-child.text-align-left .split-content, #split-stacks_in_216 .split:last-child.text-align-left .split-content {
  text-align: left;
  -ms-flex-align: start;
      align-items: flex-start; }

#split-stacks_in_216 .split:first-child.text-align-center .split-content, #split-stacks_in_216 .split:last-child.text-align-center .split-content {
  text-align: center;
  -ms-flex-align: center;
      align-items: center; }

#split-stacks_in_216 .split:first-child.text-align-right .split-content, #split-stacks_in_216 .split:last-child.text-align-right .split-content {
  text-align: right;
  -ms-flex-align: end;
      align-items: flex-end; }

@media (max-width: px) {
  #split-stacks_in_216 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: column;
        flex-direction: column; }
    #split-stacks_in_216 .split:first-child, #split-stacks_in_216 .split:last-child {
      width: 100% !important;
      transition: all 0.4s, width 0s; }
      #split-stacks_in_216 .split:first-child .split-icon, #split-stacks_in_216 .split:first-child .split-title, #split-stacks_in_216 .split:first-child .split-description, #split-stacks_in_216 .split:first-child .split-button, #split-stacks_in_216 .split:last-child .split-icon, #split-stacks_in_216 .split:last-child .split-title, #split-stacks_in_216 .split:last-child .split-description, #split-stacks_in_216 .split:last-child .split-button {
        opacity: 1 !important; }
      #split-stacks_in_216 .split:first-child .split-icon-off, #split-stacks_in_216 .split:last-child .split-icon-off {
        opacity: 0 !important; } }

@media (max-width: 700px) {
  #split-stacks_in_216.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_216.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 100px; }
  #split-stacks_in_216 .split:first-child, #split-stacks_in_216 .split:last-child {
    min-height: 400px; }
    #split-stacks_in_216 .split:first-child .split-title, #split-stacks_in_216 .split:last-child .split-title {
      font-size: 30px;
      line-height: calc($split-items--title-t * 1.618); }
    #split-stacks_in_216 .split:first-child .split-description, #split-stacks_in_216 .split:last-child .split-description {
      font-size: 14px;
      line-height: calc($split-items--description-m * 1.618); } }

@media (max-width: 400px) {
  #split-stacks_in_216.hover-split:not(.auto-shrink) .split:first-child:not(.active), #split-stacks_in_216.hover-split:not(.auto-shrink) .split:last-child:not(.active) {
    width: 100px; }
  #split-stacks_in_216 .split:first-child, #split-stacks_in_216 .split:last-child {
    min-height: 350px; }
    #split-stacks_in_216 .split:first-child .split-title, #split-stacks_in_216 .split:last-child .split-title {
      font-size: 24px;
      line-height: calc($split-items--title-m * 1.618); }
    #split-stacks_in_216 .split:first-child .split-description, #split-stacks_in_216 .split:last-child .split-description {
      font-size: 14px;
      line-height: calc($split-items--description-m * 1.618); } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#split-item-stacks_in_217 {
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/item_bg_image_choice-217.jpg) no-repeat center center;
  background-size: cover;
  /*  */ }
  #split-item-stacks_in_217::before {
    /*  */
    display: block !important;
    /*  */ }
  #split-item-stacks_in_217::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.20); }
  #split-item-stacks_in_217 .split-title {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_217 .split-description {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_217 .split-icon {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 0.30); }
  #split-item-stacks_in_217 .split-button {
    color: rgba(0, 0, 0, 0.50);
    background: rgba(255, 255, 255, 1.00); }
    #split-item-stacks_in_217 .split-button:hover {
      color: rgba(0, 0, 0, 0.50);
      background: rgba(255, 255, 255, 1.00); }
#split-item-stacks_in_221 {
  /*  */
  /*  */
  /*  */
  /*  */
  background: url(../files/item_bg_image_choice-221.jpg) no-repeat center center;
  background-size: cover;
  /*  */ }
  #split-item-stacks_in_221::before {
    /*  */
    display: block !important;
    /*  */ }
  #split-item-stacks_in_221::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.20); }
  #split-item-stacks_in_221 .split-title {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_221 .split-description {
    color: rgba(255, 255, 255, 1.00); }
  #split-item-stacks_in_221 .split-icon {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(255, 255, 255, 0.30); }
  #split-item-stacks_in_221 .split-button {
    color: rgba(0, 0, 0, 0.50);
    background: rgba(255, 255, 255, 1.00); }
    #split-item-stacks_in_221 .split-button:hover {
      color: rgba(0, 0, 0, 0.50);
      background: rgba(255, 255, 255, 1.00); }
/* Start Responsive Shim stack CSS code */.stacks_in_921shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */#stacks_in_911 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_911 .jwresp_col_wrapper{margin:0;width:49%;float:left;position:relative;overflow:auto}#stacks_in_911 .jwresp_col_wrapper.right{float:right}#stacks_in_911 .jwresp_col{overflow:hidden;width:48%;float:left;margin:0}#stacks_in_911 #jwresp_col2_stacks_in_911,#stacks_in_911 #jwresp_col4_stacks_in_911{float:right}#stacks_in_911 #jwresp_col1_stacks_in_911,#stacks_in_911 #jwresp_col3_stacks_in_911{margin-right:2} @media screen and (max-width:770px){#stacks_in_911 .jwresp_col_wrapper.left,#stacks_in_911 .jwresp_col_wrapper.right{width:100%;float:none;clear:both}#stacks_in_911 .jwresp_col_wrapper.left{margin-bottom:20px}#stacks_in_911 .jwresp_col{width:49%}#stacks_in_911 #jwresp_col1_stacks_in_911,#stacks_in_911 #jwresp_col3_stacks_in_911{margin:0}}  @media screen and (max-width:500px){#stacks_in_911 .jwresp_col{width:100%;display:block}#stacks_in_911 #jwresp_col1_stacks_in_911,#stacks_in_911 #jwresp_col2_stacks_in_911,#stacks_in_911 #jwresp_col3_stacks_in_911{margin:0;margin-bottom:20px}#stacks_in_911 #jwresp_col4_stacks_in_911{margin:0}#stacks_in_911 .jwresp_col_wrapper.left{margin-bottom:0}}
/* HitCounter styles */
/* Bryn Owen Design, 2015   */


/* Nebula Stack v1.0.3 */html {	background-color: transparent !important;	background-image: none !important;}body {	background-color: rgba(0, 212, 0, 0.41) !important;	background-image: none !important;	height: 100% !important;}#stacks_in_920-nebula-bg {	position: fixed;	top: 0;	left: 0;	bottom: 0;	right: 0;	z-index: -100;}/* End of Nebula Stack *//* Start Stats stack CSS code */.stacks_in_922stats, .stacks_in_922pagetitle{	display: none;}.stacks_in_922instructwrapper{	position: relative;	background: url("../files/newstatsbg.png") repeat-x;	height: 100px;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;}.stacks_in_922instruct{	position: absolute;	text-align: center;	bottom: 0px;	left: 0px;	right: 0px;	color: #fff;	font-weight: bold;	font-family: Arial, Helvetica, sans-serif;	background: rgba(0, 0, 0, 0.6);	padding: 4px 10px 5px 10px;} /* End if record mode */ /* End if admin mode *//* End Stats stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_918shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code */