@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);
  }
}
.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
#stacks_in_1357_15>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1357_15>.s3_row>.s3_column_left {
	width: 70.00%;
}

#stacks_in_1357_15>.s3_row>.s3_column_right {
	width: 30.000000%;
}




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










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


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


}



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


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


}





#stacks_in_1357_9 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_1357_9 .hTxt{text-shadow:-1px -1px 3px rgba(153, 204, 51, 1.00),1px -1px 3px rgba(153, 204, 51, 1.00),-1px 1px 3px rgba(153, 204, 51, 1.00),1px 1px 3px rgba(153, 204, 51, 1.00)}

#stacks_in_1357_18 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_1357_18 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_1357_18 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.30),1px -1px 3px rgba(0, 102, 204, 0.30),-1px 1px 3px rgba(0, 102, 204, 0.30),1px 1px 3px rgba(0, 102, 204, 0.30)}

#stacks_in_1357_16_4 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_1357_16_4 a,
#stacks_in_1357_16_4 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_1357_16_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_1357_16_4 a i,
#stacks_in_1357_16_4 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_1357_16_4 a,
  #stacks_in_1357_16_4 a:visited {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1357_16_4 a:hover,
  #stacks_in_1357_16_4 a:active {
    background: rgba(102, 153, 51, 1.00);
    background: -moz-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%, rgba(102, 153, 0, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1357_16_4 a i,
  #stacks_in_1357_16_4 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_1357_16_4 a:hover i,
  #stacks_in_1357_16_4 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_1357_16_4 a,
    #stacks_in_1357_16_4 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_1357_32_2 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_1357_32_2 a,
#stacks_in_1357_32_2 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_1357_32_2 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_1357_32_2 a i,
#stacks_in_1357_32_2 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_1357_32_2 a,
  #stacks_in_1357_32_2 a:visited {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1357_32_2 a:hover,
  #stacks_in_1357_32_2 a:active {
    background: rgba(102, 153, 51, 1.00);
    background: -moz-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%, rgba(102, 153, 0, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1357_32_2 a i,
  #stacks_in_1357_32_2 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_1357_32_2 a:hover i,
  #stacks_in_1357_32_2 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_1357_32_2 a,
    #stacks_in_1357_32_2 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_1373_4 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_1373_4 .hTxt{text-shadow:-1px -1px 3px rgba(153, 204, 51, 1.00),1px -1px 3px rgba(153, 204, 51, 1.00),-1px 1px 3px rgba(153, 204, 51, 1.00),1px 1px 3px rgba(153, 204, 51, 1.00)}


#stacks_in_683 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  2px;
	padding:  10px;
}

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

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_1313 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_1313 {
		display: none !important;
	}
}
#stacks_in_1320 div,#stacks_in_1320 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1320 div a,#stacks_in_1320 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1320 div a:hover,#stacks_in_1320 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1320 small,#stacks_in_1320 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1320 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_1325 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_1325 {
		display: none !important;
	}
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_1326 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_1326 {
		display: none !important;
	}
}
#stacks_in_931>.s3_row {
	margin: 0 -10px;
}

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

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

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

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








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



}



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


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


}



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



.wow {
	visibility: hidden;
}

#stacks_in_1027 {
	background-color: rgba(0, 0, 0, 0.75);
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_1029 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_1029 {
		display: none !important;
	}
}
#stacks_in_1329 div,#stacks_in_1329 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1329 div a,#stacks_in_1329 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1329 div a:hover,#stacks_in_1329 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1329 small,#stacks_in_1329 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1329 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_1030 h4,#stacks_in_1030 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1030 h4 a,#stacks_in_1030 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1030 h4 a:hover,#stacks_in_1030 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1030 small,#stacks_in_1030 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1030 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_1030 {
	background-color: rgba(138, 42, 170, 1.00);
	padding: 20px 0px 10px 0px;
}
#stacks_in_1036 h5,#stacks_in_1036 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1036 h5 a,#stacks_in_1036 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1036 h5 a:hover,#stacks_in_1036 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1036 small,#stacks_in_1036 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1036 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_1290 div,#stacks_in_1290 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1290 div a,#stacks_in_1290 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1290 div a:hover,#stacks_in_1290 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1290 small,#stacks_in_1290 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1290 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1051 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1051 {
		display: none !important;
	}
}
#stacks_in_1272 div,#stacks_in_1272 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1272 div a,#stacks_in_1272 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1272 div a:hover,#stacks_in_1272 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1272 small,#stacks_in_1272 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1272 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_1063 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_1063 {
		display: none !important;
	}
}
#stacks_in_1064 div,#stacks_in_1064 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1064 div a,#stacks_in_1064 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1064 div a:hover,#stacks_in_1064 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1064 small,#stacks_in_1064 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1064 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1057 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1057 {
		display: none !important;
	}
}
#stacks_in_1041 div,#stacks_in_1041 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1041 div a,#stacks_in_1041 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1041 div a:hover,#stacks_in_1041 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1041 small,#stacks_in_1041 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1041 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1378 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1378 {
		display: none !important;
	}
}
#stacks_in_1046 div,#stacks_in_1046 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1046 div a,#stacks_in_1046 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1046 div a:hover,#stacks_in_1046 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1046 small,#stacks_in_1046 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1046 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1069 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1069 {
		display: none !important;
	}
}
#stacks_in_1372 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_1372 a,
#stacks_in_1372 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_1372 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_1372 a i,
#stacks_in_1372 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_1372 a,
  #stacks_in_1372 a:visited {
    background: rgba(138, 42, 170, 1.00);
    background: -moz-linear-gradient(top,  rgba(138, 42, 170, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(138, 42, 170, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(138, 42, 170, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1372 a:hover,
  #stacks_in_1372 a:active {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1372 a i,
  #stacks_in_1372 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_1372 a:hover i,
  #stacks_in_1372 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_1372 a,
    #stacks_in_1372 a:visited {
      width: 100%;
    }
  }

  





.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_1070 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_1070 {
		display: none !important;
	}
}
#stacks_in_976 *,
#stacks_in_976 *:before,
#stacks_in_976 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_977 {
	background-color: rgba(0, 0, 0, 0.75);
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_979 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_979 {
		display: none !important;
	}
}
#stacks_in_1336 div,#stacks_in_1336 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1336 div a,#stacks_in_1336 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1336 div a:hover,#stacks_in_1336 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1336 small,#stacks_in_1336 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1336 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_980 h4,#stacks_in_980 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_980 h4 a,#stacks_in_980 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_980 h4 a:hover,#stacks_in_980 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_980 small,#stacks_in_980 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_980 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_980 {
	background-color: rgba(153, 204, 51, 1.00);
	padding: 20px 0px 10px 0px;
}
#stacks_in_986 h5,#stacks_in_986 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_986 h5 a,#stacks_in_986 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_986 h5 a:hover,#stacks_in_986 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_986 small,#stacks_in_986 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_986 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_991 div,#stacks_in_991 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_991 div a,#stacks_in_991 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_991 div a:hover,#stacks_in_991 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_991 small,#stacks_in_991 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_991 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1284 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1284 {
		display: none !important;
	}
}
#stacks_in_1007 div,#stacks_in_1007 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1007 div a,#stacks_in_1007 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1007 div a:hover,#stacks_in_1007 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1007 small,#stacks_in_1007 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1007 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_1295 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_1295 {
		display: none !important;
	}
}
#stacks_in_1012 div,#stacks_in_1012 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1012 div a,#stacks_in_1012 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1012 div a:hover,#stacks_in_1012 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1012 small,#stacks_in_1012 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1012 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1006 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1006 {
		display: none !important;
	}
}
#stacks_in_996 div,#stacks_in_996 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_996 div a,#stacks_in_996 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_996 div a:hover,#stacks_in_996 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_996 small,#stacks_in_996 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_996 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1379 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1379 {
		display: none !important;
	}
}
#stacks_in_1001 div,#stacks_in_1001 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1001 div a,#stacks_in_1001 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1001 div a:hover,#stacks_in_1001 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1001 small,#stacks_in_1001 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1001 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1017 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1017 {
		display: none !important;
	}
}
#stacks_in_1370 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_1370 a,
#stacks_in_1370 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_1370 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_1370 a i,
#stacks_in_1370 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_1370 a,
  #stacks_in_1370 a:visited {
    background: rgba(153, 204, 51, 1.00);
    background: -moz-linear-gradient(top,  rgba(153, 204, 51, 1.00) 0%, rgba(102, 153, 0, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(153, 204, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(153, 204, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1370 a:hover,
  #stacks_in_1370 a:active {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1370 a i,
  #stacks_in_1370 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_1370 a:hover i,
  #stacks_in_1370 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_1370 a,
    #stacks_in_1370 a:visited {
      width: 100%;
    }
  }

  





.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_1024 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_1024 {
		display: none !important;
	}
}
#stacks_in_932 *,
#stacks_in_932 *:before,
#stacks_in_932 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_933 {
	background-color: rgba(0, 0, 0, 0.75);
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_935 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_935 {
		display: none !important;
	}
}
#stacks_in_1341 div,#stacks_in_1341 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1341 div a,#stacks_in_1341 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1341 div a:hover,#stacks_in_1341 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1341 small,#stacks_in_1341 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1341 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_936 h4,#stacks_in_936 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_936 h4 a,#stacks_in_936 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_936 h4 a:hover,#stacks_in_936 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_936 small,#stacks_in_936 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_936 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#stacks_in_936 {
	background-color: rgba(3, 117, 216, 1.00);
	padding: 20px 0px 10px 0px;
}
#stacks_in_1298 h5,#stacks_in_1298 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1298 h5 a,#stacks_in_1298 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1298 h5 a:hover,#stacks_in_1298 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1298 small,#stacks_in_1298 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1298 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_1305 div,#stacks_in_1305 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1305 div a,#stacks_in_1305 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1305 div a:hover,#stacks_in_1305 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1305 small,#stacks_in_1305 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1305 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_952 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_952 {
		display: none !important;
	}
}
#stacks_in_953 div,#stacks_in_953 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_953 div a,#stacks_in_953 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_953 div a:hover,#stacks_in_953 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_953 small,#stacks_in_953 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_953 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_958 div,#stacks_in_958 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_958 div a,#stacks_in_958 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_958 div a:hover,#stacks_in_958 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_958 small,#stacks_in_958 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_958 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_969 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_969 {
		display: none !important;
	}
}
#stacks_in_942 div,#stacks_in_942 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_942 div a,#stacks_in_942 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_942 div a:hover,#stacks_in_942 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_942 small,#stacks_in_942 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_942 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_1380 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_1380 {
		display: none !important;
	}
}
#stacks_in_947 div,#stacks_in_947 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_947 div a,#stacks_in_947 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_947 div a:hover,#stacks_in_947 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_947 small,#stacks_in_947 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_947 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_963 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_963 {
		display: none !important;
	}
}
/* --------------------------------

Primary style

-------------------------------- */

body.overflow-hidden {
  /* used when modal is visible */
  overflow: hidden;
}

body.overflow-hidden .cd-modal {
  display: block !important;
}


/* --------------------------------

Main Components

-------------------------------- */


#stacks_in_970 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_970 .cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}


#stacks_in_970 .cd-modal .cd-modal-content {
  box-sizing: border-box;
  
	height: 100%;
  width: 100%;
  padding: 3em 5%;
	color: #FFFFFF;
	
  text-align: left;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#stacks_in_970 .cd-modal-content a,
#stacks_in_970 .cd-modal-content a:visited {
	color: #0099FF;
}

#stacks_in_970 .cd-modal-content a:hover,
#stacks_in_970 .cd-modal-content a:active {
	color: #CCFFFF;
}

#stacks_in_970 .modal-is-visible .cd-modal {
  z-index: 300000 !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

#stacks_in_970 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


@media only screen and (min-width: 768px) {
  #stacks_in_970 .cd-modal .cd-modal-content {
    padding: 4em 10%;
  }
}

@media only screen and (min-width: 1170px) {
  #stacks_in_970 .cd-modal .cd-modal-content {
    padding: 6em 20%;
  }
}


#stacks_in_970 .cd-modal-action {
  position: relative;
}

#stacks_in_970 .cd-modal-action .modal_btn, #stacks_in_970 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 3.25em;
  background-color: #313131;
}

#stacks_in_970 .modal_btn,
#stacks_in_970 .cd-modal-close {
  text-decoration: none !important;
  border: none !important;
}

#stacks_in_970 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 3.25em;
  white-space: nowrap;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s 0.3s, width 0.3s 0s;
  -moz-transition: color 0.2s 0.3s, width 0.3s 0s;
  transition: color 0.2s 0.3s, width 0.3s 0s;
	overflow: hidden;
}

@media only screen {
	#stacks_in_970 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

@media only screen and (max-width: 720px) {
	#stacks_in_970 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#stacks_in_970 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

#stacks_in_970 .cd-modal-action .modal_btn i {
	margin-right: 6px;
}

#stacks_in_970 .cd-modal-action .modal_btn.to-circle {
  width: 3.25em;
	color: transparent !important;
  -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
  -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
  transition: color 0.2s 0s, width 0.3s 0.2s;
}

#stacks_in_970 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 3.25em;
	
	border-radius: 4px;
	
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-2em);
  -moz-transform: translateX(-2em);
  -ms-transform: translateX(-2em);
  -o-transform: translateX(-2em);
  transform: translateX(-2em);
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
#stacks_in_970 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_970 .cd-modal-close {
  position: fixed;
  z-index: 300001  !important;
  top: 10px;
  right: 10px;
	display: block;
  height: 50px;
  width: 50px;
	
	border-radius: 4px;
	
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../files/cd-icon-close.png);
  background-repeat: no-repeat;
  background-position: center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
#stacks_in_970 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_970 .modal-is-visible .cd-modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  #stacks_in_970 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

#stacks_in_970 .cd-modal-action a,
#stacks_in_970 .cd-modal-action a:visited,
#stacks_in_970 .cd-modal-action a:hover,
#stacks_in_970 .cd-modal-action a:active {
		color: #FFFFFF !important;
		text-decoration: none;
}


/* Font Selections */
  #stacks_in_970 .cd-modal-action .modal_btn {
  }






#stacks_in_970 {
	margin:  3px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_971_7 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_971_7 {
		display: none !important;
	}
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_971_14 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_971_14 {
		display: none !important;
	}
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_971_21 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_971_21 {
		display: none !important;
	}
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_971_26 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_971_26 {
		display: none !important;
	}
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_973 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_973 {
		display: none !important;
	}
}
#stacks_in_1371 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_1371 a,
#stacks_in_1371 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_1371 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_1371 a i,
#stacks_in_1371 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_1371 a,
  #stacks_in_1371 a:visited {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1371 a:hover,
  #stacks_in_1371 a:active {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1371 a i,
  #stacks_in_1371 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_1371 a:hover i,
  #stacks_in_1371 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_1371 a,
    #stacks_in_1371 a:visited {
      width: 100%;
    }
  }

  





.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_974 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_974 {
		display: none !important;
	}
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_1072 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_1072 {
		display: none !important;
	}
}

#stacks_in_1073 {
	background-color: rgba(49, 49, 49, 0.50);
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_1074 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_1074 {
		display: none !important;
	}
}
#stacks_in_1075 h4,#stacks_in_1075 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1075 h4 a,#stacks_in_1075 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1075 h4 a:hover,#stacks_in_1075 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1075 small,#stacks_in_1075 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1075 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_1081 div,#stacks_in_1081 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1081 div a,#stacks_in_1081 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1081 div a:hover,#stacks_in_1081 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1081 small,#stacks_in_1081 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1081 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_1086 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_1086 {
		display: none !important;
	}
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_32 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_32 {
		display: none !important;
	}
}

.spacerStack {
	height: 100.00px;
}

#spacerStackstacks_in_16_178 {
	height: 100.00px;
}




























@media print {
	#spacerStackstacks_in_16_178 {
		display: none !important;
	}
}
#stacks_in_16_179 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_16_179 .hTxt{text-shadow:-1px -1px 3px rgba(153, 204, 51, 1.00),1px -1px 3px rgba(153, 204, 51, 1.00),-1px 1px 3px rgba(153, 204, 51, 1.00),1px 1px 3px rgba(153, 204, 51, 1.00)}





#stacks_in_16_185 .splide__track {
	overflow: hidden !important;
}

@keyframes splide-loading {
	0% {
		transform: rotate(0)
	}
	to {
		transform: rotate(1turn)
	}
}

#stacks_in_16_185 .splide__container {
	position: relative;
	box-sizing: border-box
}

#stacks_in_16_185 .splide__list {
	margin: 0 !important;
	padding: 0 !important;
	will-change: transform;

}


#stacks_in_16_185 .splide__track > .splide__list > .splide__slide {
	transform: translate3d(0px,0,0);
	-webkit-transform: translate3d(0px,0,0);
	-moz-transform: translate3d(0px,0,0);
	-ms-transform: translate3d(0px,0,0);
	-o-transform: translate3d(0px,0,0);
	will-change: inherit;
}

#stacks_in_16_185 .splide.is-active .splide__list {
	display: flex
}

#stacks_in_16_185 .splide__pagination {
	display: inline-flex;
	align-items: center;
	width: 95%;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0
}

#stacks_in_16_185 .splide__pagination li {
	list-style-type: none;
	display: inline-block;
	line-height: 1;
	margin: 0
}

#stacks_in_16_185 .splide {
/* 	visibility: hidden */
}

#stacks_in_16_185 .splide,
#stacks_in_16_185 .splide__slide {
	position: relative;
	outline: none
}

#stacks_in_16_185 .splide__slide {
	box-sizing: border-box;
	list-style-type: none !important;
	margin: 0;
	flex-shrink: 0
}

#stacks_in_16_185 .splide__slide img {
	vertical-align: bottom
}

#stacks_in_16_185 .splide__slider {
	position: relative
}

#stacks_in_16_185 .splide__spinner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #999;
	border-left-color: transparent;
	animation: splide-loading 1s linear infinite
}

#stacks_in_16_185 .splide__track {
	position: relative;
	z-index: 0;
	overflow: hidden
}

#stacks_in_16_185 .splide--draggable>.splide__track>.splide__list>.splide__slide {
	-webkit-user-select: none;
	user-select: none
}

#stacks_in_16_185 .splide--fade>.splide__track>.splide__list {
	display: block
}

#stacks_in_16_185 .splide--fade>.splide__track>.splide__list>.splide__slide {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0
}

#stacks_in_16_185 .splide--fade>.splide__track>.splide__list>.splide__slide.is-active {
	position: relative;
	z-index: 1;
	opacity: 1
}

#stacks_in_16_185 .splide--rtl {
	direction: rtl
}

#stacks_in_16_185 .splide--ttb>.splide__track>.splide__list {
	display: block
}

#stacks_in_16_185 .splide--ttb>.splide__pagination {
	width: auto
}

#stacks_in_16_185 .splide__arrow {
	position: absolute;
	z-index: 5;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	
	border-radius: 50%;
	
	
	
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	padding: 0;
	background: rgba(255, 255, 255, 0.75);
	
	transition-duration: 200ms;
	transition-property: box-shadow;
	transition-timing-function: ease-out;
}

#stacks_in_16_185 .splide__arrow svg {
	width: 1.2em;
	height: 1.2em;
	fill: rgba(27, 28, 29, 1.00);
}

#stacks_in_16_185 .splide__arrow:hover {
	cursor: pointer;
	
}

#stacks_in_16_185 .splide__arrow:focus {
	outline: none
}

#stacks_in_16_185 .splide__arrow--prev {
	left: 1em
}

#stacks_in_16_185 .splide__arrow--prev svg {
	transform: scaleX(-1)
}

#stacks_in_16_185 .splide__arrow--next {
	right: 1em
}

#stacks_in_16_185 .splide__pagination {
	position: absolute;
	z-index: 1;
	bottom: .5em;
	left: 50%;
	transform: translateX(-50%);
	padding: 0
}

#stacks_in_16_185 .splide__pagination__page {
	display: inline-block;
	background: rgba(220, 220, 220, 1.00);
	border-radius: 50%;
	margin: 3px;
	padding: 0;
	transition-duration: .2s;
	transition-timing-function: linear;
	transition-property: transform, width;
	border: none;
}

#stacks_in_16_185 .splide__pagination__page.is-active {
	background: rgba(245, 137, 153, 1.00);
	transition-duration: .2s;
	transition-timing-function: linear;
	transition-property: transform, width;
}

#stacks_in_16_185 .splide__pagination__page:hover {
	background: rgba(245, 137, 153, 1.00);
	cursor: pointer;
}

#stacks_in_16_185 .splide__pagination__page:focus {
	outline: none
}

#stacks_in_16_185 .splide__progress__bar {
	width: 0;
	height: 4px;
	background: #F48999;
}

#stacks_in_16_185 .splide--nav>.splide__track>.splide__list>.splide__slide {
	border: 3px solid transparent
}

#stacks_in_16_185 .splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
	border-color: #000
}

#stacks_in_16_185 .splide--nav>.splide__track>.splide__list>.splide__slide:focus {
	outline: none
}

#stacks_in_16_185 .splide--rtl>.splide__arrows .splide__arrow--prev,
#stacks_in_16_185 .splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev {
	right: 1em;
	left: auto
}

#stacks_in_16_185 .splide--rtl>.splide__arrows .splide__arrow--prev svg,
#stacks_in_16_185 .splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev svg {
	transform: scaleX(1)
}

#stacks_in_16_185 .splide--rtl>.splide__arrows .splide__arrow--next,
#stacks_in_16_185 .splide--rtl>.splide__track>.splide__arrows .splide__arrow--next {
	left: 1em;
	right: auto
}

#stacks_in_16_185 .splide--rtl>.splide__arrows .splide__arrow--next svg,
#stacks_in_16_185 .splide--rtl>.splide__track>.splide__arrows .splide__arrow--next svg {
	transform: scaleX(-1)
}

#stacks_in_16_185 .splide--ttb>.splide__arrows .splide__arrow,
#stacks_in_16_185 .splide--ttb>.splide__track>.splide__arrows .splide__arrow {
	left: 50%;
	transform: translate(-50%)
}

#stacks_in_16_185 .splide--ttb>.splide__arrows .splide__arrow--prev,
#stacks_in_16_185 .splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev {
	top: 1em
}

#stacks_in_16_185 .splide--ttb>.splide__arrows .splide__arrow--prev svg,
#stacks_in_16_185 .splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev svg {
	transform: rotate(-90deg)
}

#stacks_in_16_185 .splide--ttb>.splide__arrows .splide__arrow--next,
#stacks_in_16_185 .splide--ttb>.splide__track>.splide__arrows .splide__arrow--next {
	top: auto;
	bottom: 1em
}

#stacks_in_16_185 .splide--ttb>.splide__arrows .splide__arrow--next svg,
#stacks_in_16_185 .splide--ttb>.splide__track>.splide__arrows .splide__arrow--next svg {
	transform: rotate(90deg)
}

#stacks_in_16_185 .splide--ttb>.splide__pagination {
	display: flex;
	flex-direction: column;
	bottom: 50%;
	left: auto;
	right: .5em;
	transform: translateY(50%)
}

#stacks_in_16_185 .splide__slide--has-video {
	cursor: pointer
}

#stacks_in_16_185 .splide__slide--has-video:hover .splide__video__play {
	opacity: 1
}

#stacks_in_16_185 .splide__slide__container--has-video {
	cursor: pointer;
	position: relative
}

#stacks_in_16_185 .splide__slide__container--has-video:hover .splide__video__play {
	opacity: 1
}

#stacks_in_16_185 .splide__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/* 	background: #000 */
}

#stacks_in_16_185 .splide__video__wrapper {
	background: #000;
}

#stacks_in_16_185 .splide__video div {
	height: 100%
}

#stacks_in_16_185 .splide__video iframe,
#stacks_in_16_185 .splide__video video {
	width: 100%;
	height: 100%
}

#stacks_in_16_185 .splide__video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(27, 28, 29, 0.75);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 1;
	
	transition-duration: 200ms;
	transition-property: box-shadow;
	transition-timing-function: ease-out;
}

#stacks_in_16_185 .splide__video__play:hover {
	
	transition-duration: 200ms;
	transition-property: box-shadow;
	transition-timing-function: ease-out;
}


#stacks_in_16_185 .splide__video__play:after {
	content: "";
	display: inline-block;
	border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
	border-style: solid;
	border-width: 9px 0 9px 17px;
	margin-left: 4px
}

#stacks_in_16_185 .splide__video__play:hover {
	background: rgba(249, 158, 168, 0.90);
}

#stacks_in_16_185 .splide__video__play:hover:after {
	border-color: transparent transparent transparent rgba(255, 255, 255, 1.00);
}


#stacks_in_16_185 .splide__slide.is-active,
#stacks_in_16_185 .splide__slide.is-active img {
}




@media (max-width: 47.9375em) {
	#stacks_in_16_185 .splide {
		
		padding-top: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		padding-right: 0px;
		
	}
	
	#stacks_in_16_185 .splide__arrow {
		
		width: 30px;
		height: 30px;
	}
	
	#stacks_in_16_185 .splide__pagination__page {
		
		height: 10px;
		width: 10px;
		
	}
	
	#stacks_in_16_185 .splide__pagination__page.is-active {
		
	}
	
	#stacks_in_16_185 .splide__slide,
	#stacks_in_16_185 .splide__video,
	#stacks_in_16_185 .splide__video iframe {
		border-radius: 0px;
	}
	
	

		
}

@media (min-width: 48em) and (max-width: 61.9em) {
	#stacks_in_16_185 .splide {
		
		padding-top: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		padding-right: 0px;
		
	}
	
	#stacks_in_16_185 .splide__arrow {
		
		width: 40px;
		height: 40px;
	}
	
	#stacks_in_16_185 .splide__pagination__page {
		
		height: 10px;
		width: 10px;
		
	}
	
	#stacks_in_16_185 .splide__pagination__page.is-active {
		
	}
	
	#stacks_in_16_185 .splide__slide,
	#stacks_in_16_185 .splide__video,
	#stacks_in_16_185 .splide__video iframe {
		border-radius: 0px;
	}

	

}

@media (min-width: 62em) {
	#stacks_in_16_185 .splide {
		
		padding-top: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		padding-right: 0px;
		
	}
	
	#stacks_in_16_185 .splide__arrow {
		
		width: 40px;
		height: 40px;
	}	
	
	#stacks_in_16_185 .splide__pagination__page {
		
		height: 10px;
		width: 10px;
		
	}
	
	#stacks_in_16_185 .splide__pagination__page.is-active {
		
	}

	#stacks_in_16_185 .splide__slide,
	#stacks_in_16_185 .splide__video,
	#stacks_in_16_185 .splide__video iframe {
		border-radius: 0px;
	}

	

}




#stacks_in_16_185 .splide {
	position: relative;
}

#stacks_in_16_185 .splide__slide.is-active {
	transition-duration: 300ms;
	transition-property: all;
}


#stacks_in_16_185 .splide__slide {
	
		
	
	filter:     contrast(100%);

}

#stacks_in_16_185 .splide__slide.is-active {
	opacity: 1;
	filter: blur(0) saturate(1) grayscale(0) sepia(0);
}

#stacks_in_16_185 .orbit__img__slide img,
#stacks_in_16_185 .orbit__video__slide img {
	width: 100%;
	height: auto;
}

#stacks_in_16_185 .splide__slide,
#stacks_in_16_185 .splide__video,
#stacks_in_16_185 .splide__video iframe {
	overflow: hidden;
}


#linkBoxstacks_in_16_188_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_188_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_188_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_188_4 {
    background-image: url("7AFB6276-8CCF-4445-ACD4-A6FB45A3F4F8.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_188_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_188_6 {
		display: none !important;
	}
}

#stacks_in_16_188_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_16_188_9 div,#stacks_in_16_188_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_188_9 div a,#stacks_in_16_188_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_188_9 div a:hover,#stacks_in_16_188_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_188_9 small,#stacks_in_16_188_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_188_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_188_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_188_16 div,#stacks_in_16_188_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_188_16 div a,#stacks_in_16_188_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_188_16 div a:hover,#stacks_in_16_188_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_188_16 small,#stacks_in_16_188_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_188_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_188_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_191_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_191_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_191_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_191_4 {
    background-image: url("8BAC13B3-38C7-4BC6-BB4B-6DBCFBFA521C.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_191_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_191_6 {
		display: none !important;
	}
}

#stacks_in_16_191_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_16_191_9 div,#stacks_in_16_191_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_191_9 div a,#stacks_in_16_191_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_191_9 div a:hover,#stacks_in_16_191_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_191_9 small,#stacks_in_16_191_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_191_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_191_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_191_16 div,#stacks_in_16_191_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_191_16 div a,#stacks_in_16_191_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_191_16 div a:hover,#stacks_in_16_191_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_191_16 small,#stacks_in_16_191_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_191_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_191_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_194_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_194_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_194_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_194_4 {
    background-image: url("07F5DE13-4205-4F58-BF76-8E030E52CABB.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_194_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_194_6 {
		display: none !important;
	}
}

#stacks_in_16_194_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_16_194_9 div,#stacks_in_16_194_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_194_9 div a,#stacks_in_16_194_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_194_9 div a:hover,#stacks_in_16_194_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_194_9 small,#stacks_in_16_194_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_194_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_194_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_194_16 div,#stacks_in_16_194_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_194_16 div a,#stacks_in_16_194_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_194_16 div a:hover,#stacks_in_16_194_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_194_16 small,#stacks_in_16_194_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_194_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_194_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_197_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_197_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_197_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_197_4 {
	background-color: rgba(102, 102, 102, 1.00);
    background-image: url("88110B57-C01B-49F0-922A-5A695A4AD768.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_197_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_197_6 {
		display: none !important;
	}
}

#stacks_in_16_197_7 {
	background-color: rgba(153, 204, 51, 0.67);
}
#stacks_in_16_197_9 div,#stacks_in_16_197_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_197_9 div a,#stacks_in_16_197_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_197_9 div a:hover,#stacks_in_16_197_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_197_9 small,#stacks_in_16_197_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_197_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_197_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_197_16 div,#stacks_in_16_197_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_197_16 div a,#stacks_in_16_197_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_197_16 div a:hover,#stacks_in_16_197_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_197_16 small,#stacks_in_16_197_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_197_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_197_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_200_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_200_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_200_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_200_4 {
    background-image: url("E953E81A-EC91-451A-ABA4-B1A9F3ABB3C3.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_200_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_200_6 {
		display: none !important;
	}
}

#stacks_in_16_200_7 {
	background-color: rgba(0, 102, 204, 0.67);
}
#stacks_in_16_200_9 div,#stacks_in_16_200_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_200_9 div a,#stacks_in_16_200_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_200_9 div a:hover,#stacks_in_16_200_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_200_9 small,#stacks_in_16_200_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_200_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_200_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_200_16 div,#stacks_in_16_200_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_200_16 div a,#stacks_in_16_200_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_200_16 div a:hover,#stacks_in_16_200_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_200_16 small,#stacks_in_16_200_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_200_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_200_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_203_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_203_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_203_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_203_4 {
    background-image: url("B560FBCC-F84B-4C3E-BDAF-0EC341FDF20C.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_203_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_203_6 {
		display: none !important;
	}
}

#stacks_in_16_203_7 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_16_203_9 div,#stacks_in_16_203_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_203_9 div a,#stacks_in_16_203_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_203_9 div a:hover,#stacks_in_16_203_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_203_9 small,#stacks_in_16_203_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_203_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_203_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_203_16 div,#stacks_in_16_203_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_203_16 div a,#stacks_in_16_203_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_203_16 div a:hover,#stacks_in_16_203_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_203_16 small,#stacks_in_16_203_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_203_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_203_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_206_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_206_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_206_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_206_4 {
    background-image: url("31AF9A12-3F9E-48EC-9293-2C5DDA7C348E.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_206_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_206_6 {
		display: none !important;
	}
}

#stacks_in_16_206_7 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_16_206_9 div,#stacks_in_16_206_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_206_9 div a,#stacks_in_16_206_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_206_9 div a:hover,#stacks_in_16_206_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_206_9 small,#stacks_in_16_206_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_206_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_206_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_206_16 div,#stacks_in_16_206_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_206_16 div a,#stacks_in_16_206_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_206_16 div a:hover,#stacks_in_16_206_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_206_16 small,#stacks_in_16_206_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_206_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_206_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_209_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_209_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_209_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_209_4 {
    background-image: url("859281CE-ADF9-43D6-93E6-85A9F3AC030C.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_209_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_209_6 {
		display: none !important;
	}
}

#stacks_in_16_209_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_16_209_9 div,#stacks_in_16_209_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_209_9 div a,#stacks_in_16_209_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_209_9 div a:hover,#stacks_in_16_209_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_209_9 small,#stacks_in_16_209_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_209_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_209_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_209_16 div,#stacks_in_16_209_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_209_16 div a,#stacks_in_16_209_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_209_16 div a:hover,#stacks_in_16_209_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_209_16 small,#stacks_in_16_209_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_209_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_209_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_212_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_212_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_212_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_212_4 {
    background-image: url("5869C114-ED98-4479-9F2D-2B97571E45C9.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right bottom;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_212_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_212_6 {
		display: none !important;
	}
}

#stacks_in_16_212_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_16_212_9 div,#stacks_in_16_212_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_212_9 div a,#stacks_in_16_212_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_212_9 div a:hover,#stacks_in_16_212_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_212_9 small,#stacks_in_16_212_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_212_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_212_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_212_16 div,#stacks_in_16_212_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_212_16 div a,#stacks_in_16_212_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_212_16 div a:hover,#stacks_in_16_212_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_212_16 small,#stacks_in_16_212_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_212_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_212_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


#linkBoxstacks_in_16_215_2 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_215_2 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_215_2 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_215_4 {
    background-image: url("3CE813AA-7884-4846-A59D-2FED103FCC94.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

.spacerStack {
	height: 180.00px;
}

#spacerStackstacks_in_16_215_6 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_16_215_6 {
		display: none !important;
	}
}

#stacks_in_16_215_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_16_215_9 div,#stacks_in_16_215_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_215_9 div a,#stacks_in_16_215_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_215_9 div a:hover,#stacks_in_16_215_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_215_9 small,#stacks_in_16_215_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_215_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_215_9 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}

#stacks_in_16_215_16 div,#stacks_in_16_215_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_215_16 div a,#stacks_in_16_215_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_16_215_16 div a:hover,#stacks_in_16_215_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_16_215_16 small,#stacks_in_16_215_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_16_215_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_16_215_16 .hTxt{text-shadow:-1px -1px 3px rgba(102, 102, 102, 0.30),1px -1px 3px rgba(102, 102, 102, 0.30),-1px 1px 3px rgba(102, 102, 102, 0.30),1px 1px 3px rgba(102, 102, 102, 0.30)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_16_152 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_16_152 {
		display: none !important;
	}
}
#stacks_in_16_30>.s3_row {
	margin: 0 -10px;
}

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

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

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

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








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


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


}



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


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


}




#stacks_in_16_2 {
	padding:  10px;
}
#stacks_in_16_100 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_16_100 .hTxt{text-shadow:-1px -1px 3px rgba(153, 204, 51, 0.67),1px -1px 3px rgba(153, 204, 51, 0.67),-1px 1px 3px rgba(153, 204, 51, 0.67),1px 1px 3px rgba(153, 204, 51, 0.67)}

#stacks_in_16_153_4 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_16_153_4 a,
#stacks_in_16_153_4 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_16_153_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_16_153_4 a i,
#stacks_in_16_153_4 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_16_153_4 a,
  #stacks_in_16_153_4 a:visited {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_16_153_4 a:hover,
  #stacks_in_16_153_4 a:active {
    background: rgba(102, 153, 51, 1.00);
    background: -moz-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%, rgba(102, 153, 0, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_16_153_4 a i,
  #stacks_in_16_153_4 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_16_153_4 a:hover i,
  #stacks_in_16_153_4 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_16_153_4 a,
    #stacks_in_16_153_4 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_16_167_2 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_16_167_2 a,
#stacks_in_16_167_2 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_16_167_2 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_16_167_2 a i,
#stacks_in_16_167_2 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_16_167_2 a,
  #stacks_in_16_167_2 a:visited {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_16_167_2 a:hover,
  #stacks_in_16_167_2 a:active {
    background: rgba(102, 153, 51, 1.00);
    background: -moz-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%, rgba(102, 153, 0, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_16_167_2 a i,
  #stacks_in_16_167_2 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_16_167_2 a:hover i,
  #stacks_in_16_167_2 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_16_167_2 a,
    #stacks_in_16_167_2 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_16_121 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_16_121 .hTxt{text-shadow:-1px -1px 3px rgba(153, 204, 51, 0.67),1px -1px 3px rgba(153, 204, 51, 0.67),-1px 1px 3px rgba(153, 204, 51, 0.67),1px 1px 3px rgba(153, 204, 51, 0.67)}


#stacks_in_16_34 {
	padding: 5px 0px 5px 0px;
}
#stacks_in_16_154_2 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_16_154_2 a,
#stacks_in_16_154_2 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_16_154_2 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_16_154_2 a i,
#stacks_in_16_154_2 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_16_154_2 a,
  #stacks_in_16_154_2 a:visited {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_16_154_2 a:hover,
  #stacks_in_16_154_2 a:active {
    background: rgba(102, 153, 51, 1.00);
    background: -moz-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%, rgba(102, 153, 0, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_16_154_2 a i,
  #stacks_in_16_154_2 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(40, 87, 127, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(40, 87, 127, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(40, 87, 127, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_16_154_2 a:hover i,
  #stacks_in_16_154_2 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(51, 102, 0, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(51, 102, 0, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(51, 102, 0, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_16_154_2 a,
    #stacks_in_16_154_2 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_16_9 {
	padding:  10px;
}
#stacks_in_16_107 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_16_107 .hTxt{text-shadow:-1px -1px 3px rgba(153, 204, 51, 0.67),1px -1px 3px rgba(153, 204, 51, 0.67),-1px 1px 3px rgba(153, 204, 51, 0.67),1px 1px 3px rgba(153, 204, 51, 0.67)}

#linkBoxstacks_in_16_164 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_16_164 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_16_164 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_16_12 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 5px 0px 5px 0px;
}

#stacks_in_16_159 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 5px 0px 5px 0px;
}

#stacks_in_16_16 {
	padding:  10px;
}
#stacks_in_16_114 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_16_114 .hTxt{text-shadow:-1px -1px 3px rgba(153, 204, 51, 0.67),1px -1px 3px rgba(153, 204, 51, 0.67),-1px 1px 3px rgba(153, 204, 51, 0.67),1px 1px 3px rgba(153, 204, 51, 0.67)}


#stacks_in_16_38 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 5px 0px 5px 0px;
}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_16_42 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_16_42 {
		display: none !important;
	}
}
#stacks_in_16_129 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:500;font-style:normal}#stacks_in_16_129 .hTxt{text-shadow:-1px -1px 3px rgba(153, 204, 51, 0.67),1px -1px 3px rgba(153, 204, 51, 0.67),-1px 1px 3px rgba(153, 204, 51, 0.67),1px 1px 3px rgba(153, 204, 51, 0.67)}


#stacks_in_16_19 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 5px 0px 5px 0px;
}

#stacks_in_16_168 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 5px 0px 5px 0px;
}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_16_151 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_16_151 {
		display: none !important;
	}
}
#stacks_in_16_44_28233 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_16_44_28233 a,
#stacks_in_16_44_28233 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.80);
  margin-bottom: 8px;
  

}


#stacks_in_16_44_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_16_44_28233 a i,
#stacks_in_16_44_28233 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;

  
    float: left;
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_16_44_28233 a,
  #stacks_in_16_44_28233 a:visited {
    background: rgba(102, 153, 51, 1.00);
    background: -moz-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%, rgba(102, 153, 0, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(102, 153, 51, 1.00) 0%,rgba(102, 153, 0, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_16_44_28233 a:hover,
  #stacks_in_16_44_28233 a:active {
    background: rgba(80, 174, 255, 1.00);
    background: -moz-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(80, 174, 255, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_16_44_28233 a i,
  #stacks_in_16_44_28233 a:visited i {
    background: rgba(3, 117, 216, 1.00);
    background: -moz-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(3, 117, 216, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_16_44_28233 a:hover i,
  #stacks_in_16_44_28233 a:active i {
    background: rgba(51, 102, 0, 1.00);
    background: -moz-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%, rgba(138, 42, 170, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(51, 102, 0, 1.00) 0%,rgba(138, 42, 170, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_16_44_28233 a,
    #stacks_in_16_44_28233 a:visited {
      width: 100%;
    }
  }

  




