@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_2589_15>.s3_row {
	margin: 0 -0px;
}

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

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




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










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


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


}



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


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


}





#stacks_in_2589_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_2589_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_2589_18 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2589_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_2589_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_2589_16_4 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_2589_16_4 a,
#stacks_in_2589_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_2589_16_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2589_16_4 a i,
#stacks_in_2589_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_2589_16_4 a,
  #stacks_in_2589_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_2589_16_4 a:hover,
  #stacks_in_2589_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_2589_16_4 a i,
  #stacks_in_2589_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_2589_16_4 a:hover i,
  #stacks_in_2589_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_2589_16_4 a,
    #stacks_in_2589_16_4 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_2589_32_2 a,
#stacks_in_2589_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_2589_32_2 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2589_32_2 a i,
#stacks_in_2589_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_2589_32_2 a,
  #stacks_in_2589_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_2589_32_2 a:hover,
  #stacks_in_2589_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_2589_32_2 a i,
  #stacks_in_2589_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_2589_32_2 a:hover i,
  #stacks_in_2589_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_2589_32_2 a,
    #stacks_in_2589_32_2 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_3416_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_3416_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_3426 .splide__track {
	overflow: hidden !important;
}

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

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

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

}


#stacks_in_3426 .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_3426 .splide.is-active .splide__list {
	display: flex
}

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

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

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

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

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

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

#stacks_in_3426 .splide__slider {
	position: relative
}

#stacks_in_3426 .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_3426 .splide__track {
	position: relative;
	z-index: 0;
	overflow: hidden
}

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

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

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

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

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

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

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

#stacks_in_3426 .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_3426 .splide__arrow svg {
	width: 1.2em;
	height: 1.2em;
	fill: rgba(27, 28, 29, 1.00);
}

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

#stacks_in_3426 .splide__arrow:focus {
	outline: none
}

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

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

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

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

#stacks_in_3426 .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_3426 .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_3426 .splide__pagination__page:hover {
	background: rgba(245, 137, 153, 1.00);
	cursor: pointer;
}

#stacks_in_3426 .splide__pagination__page:focus {
	outline: none
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_3426 .splide__video__wrapper {
	background: #000;
}

#stacks_in_3426 .splide__video div {
	height: 100%
}

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

#stacks_in_3426 .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_3426 .splide__video__play:hover {
	
	transition-duration: 200ms;
	transition-property: box-shadow;
	transition-timing-function: ease-out;
}


#stacks_in_3426 .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_3426 .splide__video__play:hover {
	background: rgba(249, 158, 168, 0.90);
}

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


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




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

		
}

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

	

}

@media (min-width: 62em) {
	#stacks_in_3426 .splide {
		
	}
	
	#stacks_in_3426 .splide__arrow {
		
		width: 40px;
		height: 40px;
	}	
	
	#stacks_in_3426 .splide__pagination__page {
		
		height: 10px;
		width: 10px;
		
	}
	
	#stacks_in_3426 .splide__pagination__page.is-active {
		
	}

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

	

}




#stacks_in_3426 .splide {
	position: relative;
}

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


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

}

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

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

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













.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_91 {
	height: 40.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2769_2 {
	height: 40.00px;
}




























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

#stacks_in_1993 {
	margin:  20px;
	padding: 10px 0px 10px 0px;
}
#stacks_in_2086 .hTxt:not(.vault-font),.com_bigwhiteduck_stacks_headerpro_stack:not(.custom-font) .hTxt:not(.vault-font){font-family:"Exo 2",sans-serif;font-weight:600;font-style:normal}#stacks_in_2086 .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)}


.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_2000 {
	height: 10.00px;
}




























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

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

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




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










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


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


}



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


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


}






#stacks_in_2001 {
	padding:  10px;
}
#stacks_in_2066 *,
#stacks_in_2066 *:before,
#stacks_in_2066 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3529_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3529_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_3529_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_3529_6 {
	height: 180.00px;
}




























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

#stacks_in_3529_7 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3529_9 div,#stacks_in_3529_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3529_9 div a,#stacks_in_3529_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3529_9 div a:hover,#stacks_in_3529_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3529_9 small,#stacks_in_3529_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3529_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3529_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_3529_16 div,#stacks_in_3529_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3529_16 div a,#stacks_in_3529_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3529_16 div a:hover,#stacks_in_3529_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3529_16 small,#stacks_in_3529_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3529_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3529_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)}

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



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3530_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3530_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_3530_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_3530_6 {
	height: 180.00px;
}




























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

#stacks_in_3530_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_3530_9 div,#stacks_in_3530_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3530_9 div a,#stacks_in_3530_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3530_9 div a:hover,#stacks_in_3530_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3530_9 small,#stacks_in_3530_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3530_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3530_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_3530_16 div,#stacks_in_3530_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3530_16 div a,#stacks_in_3530_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3530_16 div a:hover,#stacks_in_3530_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3530_16 small,#stacks_in_3530_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3530_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3530_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)}

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

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

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




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










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


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


}



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


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


}






#stacks_in_2002 {
	padding:  10px;
}
#stacks_in_2245 *,
#stacks_in_2245 *:before,
#stacks_in_2245 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3531_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3531_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_3531_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_3531_6 {
	height: 180.00px;
}




























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

#stacks_in_3531_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_3531_9 div,#stacks_in_3531_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3531_9 div a,#stacks_in_3531_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3531_9 div a:hover,#stacks_in_3531_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3531_9 small,#stacks_in_3531_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3531_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3531_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_3531_16 div,#stacks_in_3531_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3531_16 div a,#stacks_in_3531_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3531_16 div a:hover,#stacks_in_3531_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3531_16 small,#stacks_in_3531_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3531_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3531_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)}

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



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3532_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3532_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_3532_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_3532_6 {
	height: 180.00px;
}




























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

#stacks_in_3532_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_3532_9 div,#stacks_in_3532_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3532_9 div a,#stacks_in_3532_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3532_9 div a:hover,#stacks_in_3532_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3532_9 small,#stacks_in_3532_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3532_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3532_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_3532_16 div,#stacks_in_3532_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3532_16 div a,#stacks_in_3532_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3532_16 div a:hover,#stacks_in_3532_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3532_16 small,#stacks_in_3532_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3532_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3532_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)}

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

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

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




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










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


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


}



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


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


}






#stacks_in_2716 {
	padding:  10px;
}
#stacks_in_3184 *,
#stacks_in_3184 *:before,
#stacks_in_3184 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3533_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3533_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_3533_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_3533_6 {
	height: 180.00px;
}




























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

#stacks_in_3533_7 {
	background-color: rgba(153, 204, 51, 0.67);
}
#stacks_in_3533_9 div,#stacks_in_3533_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3533_9 div a,#stacks_in_3533_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3533_9 div a:hover,#stacks_in_3533_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3533_9 small,#stacks_in_3533_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3533_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3533_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_3533_16 div,#stacks_in_3533_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3533_16 div a,#stacks_in_3533_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3533_16 div a:hover,#stacks_in_3533_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3533_16 small,#stacks_in_3533_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3533_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3533_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)}

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



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3534_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3534_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_3534_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_3534_6 {
	height: 180.00px;
}




























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

#stacks_in_3534_7 {
	background-color: rgba(0, 102, 204, 0.67);
}
#stacks_in_3534_9 div,#stacks_in_3534_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3534_9 div a,#stacks_in_3534_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3534_9 div a:hover,#stacks_in_3534_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3534_9 small,#stacks_in_3534_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3534_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3534_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_3534_16 div,#stacks_in_3534_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3534_16 div a,#stacks_in_3534_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3534_16 div a:hover,#stacks_in_3534_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3534_16 small,#stacks_in_3534_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3534_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3534_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)}

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

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

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




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










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


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


}



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


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


}






#stacks_in_2273 {
	padding:  10px;
}
#stacks_in_2396>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}





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



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3535_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3535_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_3535_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_3535_6 {
	height: 180.00px;
}




























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

#stacks_in_3535_7 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3535_9 div,#stacks_in_3535_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3535_9 div a,#stacks_in_3535_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3535_9 div a:hover,#stacks_in_3535_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3535_9 small,#stacks_in_3535_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3535_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3535_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_3535_16 div,#stacks_in_3535_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3535_16 div a,#stacks_in_3535_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3535_16 div a:hover,#stacks_in_3535_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3535_16 small,#stacks_in_3535_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3535_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3535_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)}

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



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3536_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3536_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_3536_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_3536_6 {
	height: 180.00px;
}




























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

#stacks_in_3536_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_3536_9 div,#stacks_in_3536_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3536_9 div a,#stacks_in_3536_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3536_9 div a:hover,#stacks_in_3536_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3536_9 small,#stacks_in_3536_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3536_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3536_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_3536_16 div,#stacks_in_3536_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3536_16 div a,#stacks_in_3536_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3536_16 div a:hover,#stacks_in_3536_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3536_16 small,#stacks_in_3536_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3536_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3536_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)}

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

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

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




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










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



}



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


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


}





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



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3537_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3537_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_3537_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_3537_6 {
	height: 180.00px;
}




























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

#stacks_in_3537_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_3537_9 div,#stacks_in_3537_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3537_9 div a,#stacks_in_3537_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3537_9 div a:hover,#stacks_in_3537_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3537_9 small,#stacks_in_3537_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3537_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3537_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_3537_16 div,#stacks_in_3537_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3537_16 div a,#stacks_in_3537_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3537_16 div a:hover,#stacks_in_3537_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3537_16 small,#stacks_in_3537_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3537_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3537_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)}

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



.wow {
	visibility: hidden;
}
#linkBoxstacks_in_3538_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3538_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_3538_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_3538_6 {
	height: 180.00px;
}




























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

#stacks_in_3538_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_3538_9 div,#stacks_in_3538_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3538_9 div a,#stacks_in_3538_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3538_9 div a:hover,#stacks_in_3538_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3538_9 small,#stacks_in_3538_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3538_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3538_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_3538_16 div,#stacks_in_3538_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3538_16 div a,#stacks_in_3538_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3538_16 div a:hover,#stacks_in_3538_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3538_16 small,#stacks_in_3538_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3538_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3538_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: 40.00px;
}

#spacerStackstacks_in_2765_2 {
	height: 40.00px;
}




























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

#stacks_in_313 {
	margin:  20px;
}

#stacks_in_1824 {
	background-color: rgba(0, 0, 0, 0.23);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
#stacks_in_1917 .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_1917 .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)}


.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_1831 {
	height: 10.00px;
}




























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

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

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




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










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


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


}



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


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


}





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

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

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




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










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



}



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


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


}





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



.wow {
	visibility: hidden;
}

#stacks_in_1899 {
    background-image: url("35BC026E-C8E8-4A6C-8222-B1EBFE162BC6.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_2626 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_2633 div,#stacks_in_2633 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_2633 div a,#stacks_in_2633 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_2633 div a:hover,#stacks_in_2633 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_2633 small,#stacks_in_2633 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_2633 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2633 .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: 180.00px;
}

#spacerStackstacks_in_1901 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_1901 {
		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_2604 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_2604 .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_2604 .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_2604 .cd-modal-content a,
#stacks_in_2604 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_2604 .cd-modal-content a:hover,
#stacks_in_2604 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_2604 .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_2604 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_2604 .cd-modal-action .modal_btn, #stacks_in_2604 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #8A2AAA;
}

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

#stacks_in_2604 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_2604 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_2604 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_2604 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_2604 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_2604 .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_2604 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_2604 .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_2604 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_434 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(138, 42, 170, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2704 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_2704 {
		display: none !important;
	}
}
#stacks_in_718 .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_718 .hTxt{text-shadow:-1px -1px 3px rgba(138, 42, 170, 1.00),1px -1px 3px rgba(138, 42, 170, 1.00),-1px 1px 3px rgba(138, 42, 170, 1.00),1px 1px 3px rgba(138, 42, 170, 1.00)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2771 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_599 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_2688_4_28233 a,
#stacks_in_2688_4_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_2688_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2688_4_28233 a i,
#stacks_in_2688_4_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_2688_4_28233 a,
  #stacks_in_2688_4_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_2688_4_28233 a:hover,
  #stacks_in_2688_4_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_2688_4_28233 a i,
  #stacks_in_2688_4_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_2688_4_28233 a:hover i,
  #stacks_in_2688_4_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_2688_4_28233 a,
    #stacks_in_2688_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_2688_6_4 a,
#stacks_in_2688_6_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_2688_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2688_6_4 a i,
#stacks_in_2688_6_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_2688_6_4 a,
  #stacks_in_2688_6_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_2688_6_4 a:hover,
  #stacks_in_2688_6_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_2688_6_4 a i,
  #stacks_in_2688_6_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_2688_6_4 a:hover i,
  #stacks_in_2688_6_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_2688_6_4 a,
    #stacks_in_2688_6_4 a:visited {
      width: 100%;
    }
  }

  




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



.wow {
	visibility: hidden;
}

#stacks_in_1879 {
	background-color: rgba(102, 102, 102, 1.00);
    background-image: url("43AD058B-CE4E-43A6-9738-EB6149CFA26E.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_2638 {
	background-color: rgba(153, 204, 51, 0.67);
}
#stacks_in_2645 div,#stacks_in_2645 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_2645 div a,#stacks_in_2645 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_2645 div a:hover,#stacks_in_2645 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_2645 small,#stacks_in_2645 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_2645 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2645 .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: 180.00px;
}

#spacerStackstacks_in_1881 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_1881 {
		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_2599 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_2599 .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_2599 .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_2599 .cd-modal-content a,
#stacks_in_2599 .cd-modal-content a:visited {
	color: #0375D8;
}

#stacks_in_2599 .cd-modal-content a:hover,
#stacks_in_2599 .cd-modal-content a:active {
	color: #336699;
}

#stacks_in_2599 .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_2599 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_2599 .cd-modal-action .modal_btn, #stacks_in_2599 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #99CC33;
}

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

#stacks_in_2599 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_2599 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_2599 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_2599 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_2599 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_2599 .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_2599 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_2599 .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_2599 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_465 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(153, 204, 51, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2703 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_2703 {
		display: none !important;
	}
}
#stacks_in_732 .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_732 .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)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2772 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_596 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_2689_4_28233 a,
#stacks_in_2689_4_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_2689_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2689_4_28233 a i,
#stacks_in_2689_4_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_2689_4_28233 a,
  #stacks_in_2689_4_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_2689_4_28233 a:hover,
  #stacks_in_2689_4_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_2689_4_28233 a i,
  #stacks_in_2689_4_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_2689_4_28233 a:hover i,
  #stacks_in_2689_4_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_2689_4_28233 a,
    #stacks_in_2689_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_2689_6_4 a,
#stacks_in_2689_6_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_2689_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2689_6_4 a i,
#stacks_in_2689_6_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_2689_6_4 a,
  #stacks_in_2689_6_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_2689_6_4 a:hover,
  #stacks_in_2689_6_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_2689_6_4 a i,
  #stacks_in_2689_6_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_2689_6_4 a:hover i,
  #stacks_in_2689_6_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_2689_6_4 a,
    #stacks_in_2689_6_4 a:visited {
      width: 100%;
    }
  }

  




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

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

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




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










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



}



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


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


}





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



.wow {
	visibility: hidden;
}

#stacks_in_1857 {
    background-image: url("34AAABAA-42F2-4333-97A6-F7934D2597E7.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_2650 {
	background-color: rgba(0, 102, 204, 0.67);
}
#stacks_in_2657 div,#stacks_in_2657 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_2657 div a,#stacks_in_2657 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_2657 div a:hover,#stacks_in_2657 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_2657 small,#stacks_in_2657 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_2657 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2657 .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: 180.00px;
}

#spacerStackstacks_in_1859 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_1859 {
		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_2594 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_2594 .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_2594 .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_2594 .cd-modal-content a,
#stacks_in_2594 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_2594 .cd-modal-content a:hover,
#stacks_in_2594 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_2594 .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_2594 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_2594 .cd-modal-action .modal_btn, #stacks_in_2594 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #0375D8;
}

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

#stacks_in_2594 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_2594 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_2594 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_2594 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_2594 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_2594 .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_2594 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_2594 .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_2594 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_472 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2705 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_2705 {
		display: none !important;
	}
}
#stacks_in_739 .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_739 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2773 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_595 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_2690_4_28233 a,
#stacks_in_2690_4_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_2690_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2690_4_28233 a i,
#stacks_in_2690_4_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_2690_4_28233 a,
  #stacks_in_2690_4_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_2690_4_28233 a:hover,
  #stacks_in_2690_4_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_2690_4_28233 a i,
  #stacks_in_2690_4_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_2690_4_28233 a:hover i,
  #stacks_in_2690_4_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_2690_4_28233 a,
    #stacks_in_2690_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_2690_6_4 a,
#stacks_in_2690_6_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_2690_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2690_6_4 a i,
#stacks_in_2690_6_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_2690_6_4 a,
  #stacks_in_2690_6_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_2690_6_4 a:hover,
  #stacks_in_2690_6_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_2690_6_4 a i,
  #stacks_in_2690_6_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_2690_6_4 a:hover i,
  #stacks_in_2690_6_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_2690_6_4 a,
    #stacks_in_2690_6_4 a:visited {
      width: 100%;
    }
  }

  




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



.wow {
	visibility: hidden;
}

#stacks_in_1837 {
    background-image: url("6896DE71-BE7B-4FAD-B149-83EE9AAECD8A.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_2662 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_2669 div,#stacks_in_2669 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_2669 div a,#stacks_in_2669 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_2669 div a:hover,#stacks_in_2669 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_2669 small,#stacks_in_2669 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_2669 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2669 .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: 180.00px;
}

#spacerStackstacks_in_1839 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_1839 {
		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_2609 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_2609 .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_2609 .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_2609 .cd-modal-content a,
#stacks_in_2609 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_2609 .cd-modal-content a:hover,
#stacks_in_2609 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_2609 .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_2609 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_2609 .cd-modal-action .modal_btn, #stacks_in_2609 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_2609 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_2609 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_2609 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_2609 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_2609 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_2609 .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_2609 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_2609 .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_2609 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_2613 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2706 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_2706 {
		display: none !important;
	}
}
#stacks_in_2614 .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_2614 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2774 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2622 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_2691_4_28233 a,
#stacks_in_2691_4_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_2691_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2691_4_28233 a i,
#stacks_in_2691_4_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_2691_4_28233 a,
  #stacks_in_2691_4_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_2691_4_28233 a:hover,
  #stacks_in_2691_4_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_2691_4_28233 a i,
  #stacks_in_2691_4_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_2691_4_28233 a:hover i,
  #stacks_in_2691_4_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_2691_4_28233 a,
    #stacks_in_2691_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_2691_6_4 a,
#stacks_in_2691_6_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_2691_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2691_6_4 a i,
#stacks_in_2691_6_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_2691_6_4 a,
  #stacks_in_2691_6_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_2691_6_4 a:hover,
  #stacks_in_2691_6_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_2691_6_4 a i,
  #stacks_in_2691_6_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_2691_6_4 a:hover i,
  #stacks_in_2691_6_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_2691_6_4 a,
    #stacks_in_2691_6_4 a:visited {
      width: 100%;
    }
  }

  





.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_2770 {
	height: 10.00px;
}




























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

#stacks_in_476 {
	border: solid rgba(102, 153, 204, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  20px;
	padding:  10px;
}
#stacks_in_753 .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_753 .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_753 {
	background-color: rgba(0, 0, 0, 0.23);
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

.spacerStack {
	height: 6.00px;
}

#spacerStackstacks_in_598 {
	height: 6.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2764_2 {
	height: 40.00px;
}




























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

#stacks_in_864 {
	background-color: rgba(0, 0, 0, 0.23);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  20px;
	padding:  20px;
}
#stacks_in_1697 .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_1697 .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)}


.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_871 {
	height: 10.00px;
}




























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

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

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




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










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


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


}



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


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


}





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

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

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




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










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



}



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


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


}





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



.wow {
	visibility: hidden;
}

#stacks_in_3344 {
    background-image: url("D9117ACD-E9A4-4825-97C9-DD5F6098C549.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_3346 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3348 div,#stacks_in_3348 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3348 div a,#stacks_in_3348 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3348 div a:hover,#stacks_in_3348 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3348 small,#stacks_in_3348 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3348 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3348 .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: 180.00px;
}

#spacerStackstacks_in_3354 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_3354 {
		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_3355 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_3355 .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_3355 .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_3355 .cd-modal-content a,
#stacks_in_3355 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_3355 .cd-modal-content a:hover,
#stacks_in_3355 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_3355 .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_3355 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_3355 .cd-modal-action .modal_btn, #stacks_in_3355 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_3355 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_3355 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_3355 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_3355 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_3355 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_3355 .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_3355 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_3355 .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_3355 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_3356 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3361 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_3361 {
		display: none !important;
	}
}
#stacks_in_3362 .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_3362 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}

#stacks_in_3388 .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_3388 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3367 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3370 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_3371_4_28233 a,
#stacks_in_3371_4_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_3371_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3371_4_28233 a i,
#stacks_in_3371_4_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_3371_4_28233 a,
  #stacks_in_3371_4_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_3371_4_28233 a:hover,
  #stacks_in_3371_4_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_3371_4_28233 a i,
  #stacks_in_3371_4_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_3371_4_28233 a:hover i,
  #stacks_in_3371_4_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_3371_4_28233 a,
    #stacks_in_3371_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_3371_6_4 a,
#stacks_in_3371_6_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_3371_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3371_6_4 a i,
#stacks_in_3371_6_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_3371_6_4 a,
  #stacks_in_3371_6_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_3371_6_4 a:hover,
  #stacks_in_3371_6_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_3371_6_4 a i,
  #stacks_in_3371_6_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_3371_6_4 a:hover i,
  #stacks_in_3371_6_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_3371_6_4 a,
    #stacks_in_3371_6_4 a:visited {
      width: 100%;
    }
  }

  




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



.wow {
	visibility: hidden;
}

#stacks_in_3315 {
    background-image: url("CA549A12-B346-42C5-B13B-6C8159472039.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_3317 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3319 div,#stacks_in_3319 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3319 div a,#stacks_in_3319 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3319 div a:hover,#stacks_in_3319 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3319 small,#stacks_in_3319 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3319 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3319 .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: 180.00px;
}

#spacerStackstacks_in_3325 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_3325 {
		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_3326 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_3326 .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_3326 .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_3326 .cd-modal-content a,
#stacks_in_3326 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_3326 .cd-modal-content a:hover,
#stacks_in_3326 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_3326 .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_3326 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_3326 .cd-modal-action .modal_btn, #stacks_in_3326 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_3326 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_3326 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_3326 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_3326 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_3326 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_3326 .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_3326 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_3326 .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_3326 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_3327 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3332 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_3332 {
		display: none !important;
	}
}
#stacks_in_3333 .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_3333 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}

#stacks_in_3395 .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_3395 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3338 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3341 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_3342_4_28233 a,
#stacks_in_3342_4_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_3342_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3342_4_28233 a i,
#stacks_in_3342_4_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_3342_4_28233 a,
  #stacks_in_3342_4_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_3342_4_28233 a:hover,
  #stacks_in_3342_4_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_3342_4_28233 a i,
  #stacks_in_3342_4_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_3342_4_28233 a:hover i,
  #stacks_in_3342_4_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_3342_4_28233 a,
    #stacks_in_3342_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_3342_6_4 a,
#stacks_in_3342_6_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_3342_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3342_6_4 a i,
#stacks_in_3342_6_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_3342_6_4 a,
  #stacks_in_3342_6_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_3342_6_4 a:hover,
  #stacks_in_3342_6_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_3342_6_4 a i,
  #stacks_in_3342_6_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_3342_6_4 a:hover i,
  #stacks_in_3342_6_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_3342_6_4 a,
    #stacks_in_3342_6_4 a:visited {
      width: 100%;
    }
  }

  




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

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

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




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










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



}



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


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


}





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



.wow {
	visibility: hidden;
}

#stacks_in_3286 {
    background-image: url("5A8EB80C-615A-4A89-BE7B-1586CC8980B3.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_3288 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3290 div,#stacks_in_3290 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3290 div a,#stacks_in_3290 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3290 div a:hover,#stacks_in_3290 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3290 small,#stacks_in_3290 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3290 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3290 .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: 180.00px;
}

#spacerStackstacks_in_3296 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_3296 {
		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_3297 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_3297 .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_3297 .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_3297 .cd-modal-content a,
#stacks_in_3297 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_3297 .cd-modal-content a:hover,
#stacks_in_3297 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_3297 .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_3297 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_3297 .cd-modal-action .modal_btn, #stacks_in_3297 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_3297 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_3297 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_3297 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_3297 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_3297 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_3297 .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_3297 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_3297 .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_3297 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_3298 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3303 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_3303 {
		display: none !important;
	}
}
#stacks_in_3304 .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_3304 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}

#stacks_in_3400 .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_3400 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3309 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3312 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_3313_4_28233 a,
#stacks_in_3313_4_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_3313_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3313_4_28233 a i,
#stacks_in_3313_4_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_3313_4_28233 a,
  #stacks_in_3313_4_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_3313_4_28233 a:hover,
  #stacks_in_3313_4_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_3313_4_28233 a i,
  #stacks_in_3313_4_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_3313_4_28233 a:hover i,
  #stacks_in_3313_4_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_3313_4_28233 a,
    #stacks_in_3313_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_3313_6_4 a,
#stacks_in_3313_6_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_3313_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3313_6_4 a i,
#stacks_in_3313_6_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_3313_6_4 a,
  #stacks_in_3313_6_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_3313_6_4 a:hover,
  #stacks_in_3313_6_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_3313_6_4 a i,
  #stacks_in_3313_6_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_3313_6_4 a:hover i,
  #stacks_in_3313_6_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_3313_6_4 a,
    #stacks_in_3313_6_4 a:visited {
      width: 100%;
    }
  }

  




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



.wow {
	visibility: hidden;
}

#stacks_in_3257 {
    background-image: url("BB0A300B-8DD5-4554-A335-7187F491E35B.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_3259 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3261 div,#stacks_in_3261 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3261 div a,#stacks_in_3261 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3261 div a:hover,#stacks_in_3261 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3261 small,#stacks_in_3261 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3261 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3261 .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: 180.00px;
}

#spacerStackstacks_in_3267 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_3267 {
		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_3268 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_3268 .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_3268 .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_3268 .cd-modal-content a,
#stacks_in_3268 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_3268 .cd-modal-content a:hover,
#stacks_in_3268 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_3268 .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_3268 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_3268 .cd-modal-action .modal_btn, #stacks_in_3268 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_3268 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_3268 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_3268 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_3268 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_3268 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_3268 .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_3268 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_3268 .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_3268 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_3269 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3274 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_3274 {
		display: none !important;
	}
}
#stacks_in_3275 .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_3275 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}

#stacks_in_3405 .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_3405 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3280 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3283 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_3284_4_28233 a,
#stacks_in_3284_4_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_3284_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3284_4_28233 a i,
#stacks_in_3284_4_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_3284_4_28233 a,
  #stacks_in_3284_4_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_3284_4_28233 a:hover,
  #stacks_in_3284_4_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_3284_4_28233 a i,
  #stacks_in_3284_4_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_3284_4_28233 a:hover i,
  #stacks_in_3284_4_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_3284_4_28233 a,
    #stacks_in_3284_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_3284_6_4 a,
#stacks_in_3284_6_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_3284_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3284_6_4 a i,
#stacks_in_3284_6_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_3284_6_4 a,
  #stacks_in_3284_6_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_3284_6_4 a:hover,
  #stacks_in_3284_6_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_3284_6_4 a i,
  #stacks_in_3284_6_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_3284_6_4 a:hover i,
  #stacks_in_3284_6_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_3284_6_4 a,
    #stacks_in_3284_6_4 a:visited {
      width: 100%;
    }
  }

  





.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2766_2 {
	height: 40.00px;
}




























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

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

padding:2.5em 0.5em;

font-style:italic;
}


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


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

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

#stacks_in_386 {
	background-color: rgba(0, 0, 0, 0.23);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  20px;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_2761 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_2761 {
		display: none !important;
	}
}
#stacks_in_763 .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_763 .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_1618 {
    background-image: url("FDAEF81A-86BD-43F0-96A6-E34565BCF28F.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.spacerStack {
	height: 340.00px;
}

#spacerStackstacks_in_1619 {
	height: 340.00px;
}




























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

#stacks_in_1657>.s3_row>.s3_column_left {
	width: 60.00%;
}

#stacks_in_1657>.s3_row>.s3_column_right {
	width: 40.000000%;
}




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










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


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


}



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


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


}






#stacks_in_1657 {
	background-color: rgba(255, 255, 255, 0.70);
	padding: 10px 0px 10px 0px;
}

#stacks_in_1655 {
	padding:  20px;
}
/* --------------------------------

Primary style

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

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

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


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

Main Components

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


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


#stacks_in_1662 .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_1662 .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_1662 .cd-modal-content a,
#stacks_in_1662 .cd-modal-content a:visited {
	color: #FF6600;
}

#stacks_in_1662 .cd-modal-content a:hover,
#stacks_in_1662 .cd-modal-content a:active {
	color: #CC6600;
}

#stacks_in_1662 .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_1662 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_1662 .cd-modal-action .modal_btn, #stacks_in_1662 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #0375D8;
}

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

#stacks_in_1662 .cd-modal-action .modal_btn {
	
  border-radius: 5em;
	
  color: #ffffff;
  line-height: 4em;
  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_1662 .cd-modal-action .modal_btn {
		width: 260px;
	}
}

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

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

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

#stacks_in_1662 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_1662 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
  border-radius: 50%;
	
  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_1662 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_1662 .cd-modal-close {
  position: fixed;
  z-index: 300001  !important;
  top: 10px;
  right: 10px;
	display: block;
  height: 50px;
  width: 50px;
	
  border-radius: 50%;
	
  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_1662 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_1662 .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_1662 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_1662 {
	padding:  20px;
}

#stacks_in_1663 {
	padding:  20px;
}
#stacks_in_1666>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1666>.s3_row>.s3_column_left {
	width: 37.00%;
}

#stacks_in_1666>.s3_row>.s3_column_right {
	width: 63.000000%;
}




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










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


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


}



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


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


}






#stacks_in_1666 {
	margin: 10px 0px 10px 0px;
}

#stacks_in_1667 {
	padding: 20px 20px 20px 20px;
}
#stacks_in_1673>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1673>.s3_row>.s3_column_left {
	width: 37.00%;
}

#stacks_in_1673>.s3_row>.s3_column_right {
	width: 63.000000%;
}




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










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


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


}



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


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


}






#stacks_in_1673 {
	margin: 10px 0px 10px 0px;
}

#stacks_in_1674 {
	padding:  20px;
}
#stacks_in_1680>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1680>.s3_row>.s3_column_left {
	width: 37.00%;
}

#stacks_in_1680>.s3_row>.s3_column_right {
	width: 63.000000%;
}




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










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


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


}



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


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


}






#stacks_in_1680 {
	margin: 10px 0px 10px 0px;
}

#stacks_in_1681 {
	padding:  20px;
}
#stacks_in_1687>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1687>.s3_row>.s3_column_left {
	width: 37.00%;
}

#stacks_in_1687>.s3_row>.s3_column_right {
	width: 63.000000%;
}




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










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


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


}



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


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


}






#stacks_in_1687 {
	margin: 10px 0px 10px 0px;
}

#stacks_in_1688 {
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_1654 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3522_2 {
	height: 40.00px;
}




























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

#stacks_in_3494 {
	border: solid rgba(102, 153, 204, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  20px;
	padding:  10px;
}
#stacks_in_3495 .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_3495 .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_3495 {
	background-color: rgba(0, 0, 0, 0.23);
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}
#stacks_in_3504>.s3_row {
	margin: 0 -10px;
}

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

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




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










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


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


}



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


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


}






.spacerStack {
	height: 6.00px;
}

#spacerStackstacks_in_3503 {
	height: 6.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2767_2 {
	height: 40.00px;
}




























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

#stacks_in_278 {
	background-color: rgba(0, 0, 0, 0.23);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin:  20px;
	padding:  20px;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_2768 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_2768 {
		display: none !important;
	}
}
#stacks_in_774 .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_774 .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)}


.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_377 {
	height: 10.00px;
}




























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

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

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

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

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








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



}



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


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


}



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



.wow {
	visibility: hidden;
}

#stacks_in_2558_80 {
    background-image: url("CC0E9F20-F774-494C-9796-148D3C114F81.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_2558_82 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_2558_84 div,#stacks_in_2558_84 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_2558_84 div a,#stacks_in_2558_84 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_2558_84 div a:hover,#stacks_in_2558_84 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_2558_84 small,#stacks_in_2558_84 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_2558_84 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2558_84 .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: 180.00px;
}

#spacerStackstacks_in_2558_90 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_2558_90 {
		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_2558_91 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_2558_91 .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_2558_91 .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_2558_91 .cd-modal-content a,
#stacks_in_2558_91 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_2558_91 .cd-modal-content a:hover,
#stacks_in_2558_91 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_2558_91 .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_2558_91 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_2558_91 .cd-modal-action .modal_btn, #stacks_in_2558_91 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 5em;
  background-color: #8A2AAA;
}

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

#stacks_in_2558_91 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 5em;
  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_2558_91 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_2558_91 .cd-modal-action .modal_btn.to-circle {
  width: 5em;
	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_2558_91 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 5em;
	
	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_2558_91 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_2558_91 .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_2558_91 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_2558_91 .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_2558_91 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_2558_92 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(138, 42, 170, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2558_97 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_2558_97 {
		display: none !important;
	}
}
#stacks_in_2558_98 .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_2558_98 .hTxt{text-shadow:-1px -1px 3px rgba(138, 42, 170, 1.00),1px -1px 3px rgba(138, 42, 170, 1.00),-1px 1px 3px rgba(138, 42, 170, 1.00),1px 1px 3px rgba(138, 42, 170, 1.00)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2558_103 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2558_106 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_2558_107_4_28233 a,
#stacks_in_2558_107_4_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_2558_107_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2558_107_4_28233 a i,
#stacks_in_2558_107_4_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_2558_107_4_28233 a,
  #stacks_in_2558_107_4_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_2558_107_4_28233 a:hover,
  #stacks_in_2558_107_4_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_2558_107_4_28233 a i,
  #stacks_in_2558_107_4_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_2558_107_4_28233 a:hover i,
  #stacks_in_2558_107_4_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_2558_107_4_28233 a,
    #stacks_in_2558_107_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_2558_107_6_4 a,
#stacks_in_2558_107_6_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_2558_107_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2558_107_6_4 a i,
#stacks_in_2558_107_6_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_2558_107_6_4 a,
  #stacks_in_2558_107_6_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_2558_107_6_4 a:hover,
  #stacks_in_2558_107_6_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_2558_107_6_4 a i,
  #stacks_in_2558_107_6_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_2558_107_6_4 a:hover i,
  #stacks_in_2558_107_6_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_2558_107_6_4 a,
    #stacks_in_2558_107_6_4 a:visited {
      width: 100%;
    }
  }

  




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



.wow {
	visibility: hidden;
}

#stacks_in_2558_50 {
	background-color: rgba(102, 102, 102, 1.00);
    background-image: url("83D1C144-8155-4268-950E-8318788F03BE.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_2558_52 {
	background-color: rgba(153, 204, 51, 0.67);
}
#stacks_in_2558_54 div,#stacks_in_2558_54 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_2558_54 div a,#stacks_in_2558_54 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_2558_54 div a:hover,#stacks_in_2558_54 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_2558_54 small,#stacks_in_2558_54 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_2558_54 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2558_54 .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: 180.00px;
}

#spacerStackstacks_in_2558_60 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_2558_60 {
		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_2558_61 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_2558_61 .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_2558_61 .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_2558_61 .cd-modal-content a,
#stacks_in_2558_61 .cd-modal-content a:visited {
	color: #0375D8;
}

#stacks_in_2558_61 .cd-modal-content a:hover,
#stacks_in_2558_61 .cd-modal-content a:active {
	color: #336699;
}

#stacks_in_2558_61 .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_2558_61 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_2558_61 .cd-modal-action .modal_btn, #stacks_in_2558_61 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 5em;
  background-color: #99CC33;
}

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

#stacks_in_2558_61 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 5em;
  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_2558_61 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_2558_61 .cd-modal-action .modal_btn.to-circle {
  width: 5em;
	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_2558_61 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 5em;
	
	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_2558_61 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_2558_61 .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_2558_61 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_2558_61 .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_2558_61 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_2558_62 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(153, 204, 51, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2558_67 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_2558_67 {
		display: none !important;
	}
}
#stacks_in_2558_68 .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_2558_68 .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)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2558_73 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2558_76 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_2558_77_4_28233 a,
#stacks_in_2558_77_4_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_2558_77_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2558_77_4_28233 a i,
#stacks_in_2558_77_4_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_2558_77_4_28233 a,
  #stacks_in_2558_77_4_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_2558_77_4_28233 a:hover,
  #stacks_in_2558_77_4_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_2558_77_4_28233 a i,
  #stacks_in_2558_77_4_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_2558_77_4_28233 a:hover i,
  #stacks_in_2558_77_4_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_2558_77_4_28233 a,
    #stacks_in_2558_77_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_2558_77_6_4 a,
#stacks_in_2558_77_6_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_2558_77_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2558_77_6_4 a i,
#stacks_in_2558_77_6_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_2558_77_6_4 a,
  #stacks_in_2558_77_6_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_2558_77_6_4 a:hover,
  #stacks_in_2558_77_6_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_2558_77_6_4 a i,
  #stacks_in_2558_77_6_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_2558_77_6_4 a:hover i,
  #stacks_in_2558_77_6_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_2558_77_6_4 a,
    #stacks_in_2558_77_6_4 a:visited {
      width: 100%;
    }
  }

  




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



.wow {
	visibility: hidden;
}

#stacks_in_2558_20 {
    background-image: url("D87DBAD2-13E2-4397-91C2-2843A19536A3.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_2558_22 {
	background-color: rgba(0, 102, 204, 0.67);
}
#stacks_in_2558_24 div,#stacks_in_2558_24 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_2558_24 div a,#stacks_in_2558_24 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_2558_24 div a:hover,#stacks_in_2558_24 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_2558_24 small,#stacks_in_2558_24 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_2558_24 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2558_24 .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: 180.00px;
}

#spacerStackstacks_in_2558_30 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_2558_30 {
		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_2558_31 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_2558_31 .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_2558_31 .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_2558_31 .cd-modal-content a,
#stacks_in_2558_31 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_2558_31 .cd-modal-content a:hover,
#stacks_in_2558_31 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_2558_31 .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_2558_31 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_2558_31 .cd-modal-action .modal_btn, #stacks_in_2558_31 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 5em;
  background-color: #0375D8;
}

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

#stacks_in_2558_31 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 5em;
  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_2558_31 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_2558_31 .cd-modal-action .modal_btn.to-circle {
  width: 5em;
	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_2558_31 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 5em;
	
	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_2558_31 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_2558_31 .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_2558_31 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_2558_31 .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_2558_31 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_2558_32 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2558_37 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_2558_37 {
		display: none !important;
	}
}
#stacks_in_2558_38 .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_2558_38 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2558_43 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2558_46 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_2558_47_4_28233 a,
#stacks_in_2558_47_4_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_2558_47_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2558_47_4_28233 a i,
#stacks_in_2558_47_4_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_2558_47_4_28233 a,
  #stacks_in_2558_47_4_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_2558_47_4_28233 a:hover,
  #stacks_in_2558_47_4_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_2558_47_4_28233 a i,
  #stacks_in_2558_47_4_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_2558_47_4_28233 a:hover i,
  #stacks_in_2558_47_4_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_2558_47_4_28233 a,
    #stacks_in_2558_47_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_2558_47_6_4 a,
#stacks_in_2558_47_6_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_2558_47_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_2558_47_6_4 a i,
#stacks_in_2558_47_6_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_2558_47_6_4 a,
  #stacks_in_2558_47_6_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_2558_47_6_4 a:hover,
  #stacks_in_2558_47_6_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_2558_47_6_4 a i,
  #stacks_in_2558_47_6_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_2558_47_6_4 a:hover i,
  #stacks_in_2558_47_6_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_2558_47_6_4 a,
    #stacks_in_2558_47_6_4 a:visited {
      width: 100%;
    }
  }

  





.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3132 {
	height: 20.00px;
}




























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

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

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




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










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


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


}



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


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


}





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

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

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




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










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



}



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


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


}






#stacks_in_2983 {
    background-image: url("942CD910-1923-43FD-98B3-47502A6947E1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_2985 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_2987 div,#stacks_in_2987 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_2987 div a,#stacks_in_2987 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_2987 div a:hover,#stacks_in_2987 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_2987 small,#stacks_in_2987 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_2987 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_2987 .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: 180.00px;
}

#spacerStackstacks_in_2993 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_2993 {
		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_2994 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_2994 .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_2994 .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_2994 .cd-modal-content a,
#stacks_in_2994 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_2994 .cd-modal-content a:hover,
#stacks_in_2994 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_2994 .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_2994 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_2994 .cd-modal-action .modal_btn, #stacks_in_2994 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_2994 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_2994 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_2994 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_2994 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_2994 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_2994 .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_2994 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_2994 .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_2994 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_2995 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3000 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_3000 {
		display: none !important;
	}
}
#stacks_in_3001 .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_3001 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3006 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3009 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_3010_4_28233 a,
#stacks_in_3010_4_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_3010_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3010_4_28233 a i,
#stacks_in_3010_4_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_3010_4_28233 a,
  #stacks_in_3010_4_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_3010_4_28233 a:hover,
  #stacks_in_3010_4_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_3010_4_28233 a i,
  #stacks_in_3010_4_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_3010_4_28233 a:hover i,
  #stacks_in_3010_4_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_3010_4_28233 a,
    #stacks_in_3010_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_3010_6_4 a,
#stacks_in_3010_6_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_3010_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3010_6_4 a i,
#stacks_in_3010_6_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_3010_6_4 a,
  #stacks_in_3010_6_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_3010_6_4 a:hover,
  #stacks_in_3010_6_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_3010_6_4 a i,
  #stacks_in_3010_6_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_3010_6_4 a:hover i,
  #stacks_in_3010_6_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_3010_6_4 a,
    #stacks_in_3010_6_4 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_3034 {
    background-image: url("EDACE370-A26A-48CA-B5BB-642B9BF9F23A.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_3036 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3038 div,#stacks_in_3038 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3038 div a,#stacks_in_3038 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3038 div a:hover,#stacks_in_3038 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3038 small,#stacks_in_3038 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3038 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3038 .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: 180.00px;
}

#spacerStackstacks_in_3044 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_3044 {
		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_3045 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_3045 .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_3045 .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_3045 .cd-modal-content a,
#stacks_in_3045 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_3045 .cd-modal-content a:hover,
#stacks_in_3045 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_3045 .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_3045 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_3045 .cd-modal-action .modal_btn, #stacks_in_3045 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_3045 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_3045 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_3045 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_3045 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_3045 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_3045 .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_3045 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_3045 .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_3045 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_3046 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3051 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_3051 {
		display: none !important;
	}
}
#stacks_in_3052 .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_3052 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3057 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3060 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_3061_4_28233 a,
#stacks_in_3061_4_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_3061_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3061_4_28233 a i,
#stacks_in_3061_4_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_3061_4_28233 a,
  #stacks_in_3061_4_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_3061_4_28233 a:hover,
  #stacks_in_3061_4_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_3061_4_28233 a i,
  #stacks_in_3061_4_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_3061_4_28233 a:hover i,
  #stacks_in_3061_4_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_3061_4_28233 a,
    #stacks_in_3061_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_3061_6_4 a,
#stacks_in_3061_6_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_3061_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3061_6_4 a i,
#stacks_in_3061_6_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_3061_6_4 a,
  #stacks_in_3061_6_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_3061_6_4 a:hover,
  #stacks_in_3061_6_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_3061_6_4 a i,
  #stacks_in_3061_6_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_3061_6_4 a:hover i,
  #stacks_in_3061_6_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_3061_6_4 a,
    #stacks_in_3061_6_4 a:visited {
      width: 100%;
    }
  }

  




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

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

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




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










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



}



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


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


}






#stacks_in_3063 {
    background-image: url("3CBD5C32-1EC7-49CB-823A-F1CF95A081DB.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_3065 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3067 div,#stacks_in_3067 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3067 div a,#stacks_in_3067 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3067 div a:hover,#stacks_in_3067 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3067 small,#stacks_in_3067 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3067 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3067 .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: 180.00px;
}

#spacerStackstacks_in_3073 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_3073 {
		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_3074 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_3074 .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_3074 .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_3074 .cd-modal-content a,
#stacks_in_3074 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_3074 .cd-modal-content a:hover,
#stacks_in_3074 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_3074 .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_3074 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_3074 .cd-modal-action .modal_btn, #stacks_in_3074 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_3074 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_3074 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_3074 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_3074 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_3074 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_3074 .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_3074 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_3074 .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_3074 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_3075 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3080 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_3080 {
		display: none !important;
	}
}
#stacks_in_3081 .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_3081 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3086 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3089 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_3090_4_28233 a,
#stacks_in_3090_4_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_3090_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3090_4_28233 a i,
#stacks_in_3090_4_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_3090_4_28233 a,
  #stacks_in_3090_4_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_3090_4_28233 a:hover,
  #stacks_in_3090_4_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_3090_4_28233 a i,
  #stacks_in_3090_4_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_3090_4_28233 a:hover i,
  #stacks_in_3090_4_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_3090_4_28233 a,
    #stacks_in_3090_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_3090_6_4 a,
#stacks_in_3090_6_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_3090_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3090_6_4 a i,
#stacks_in_3090_6_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_3090_6_4 a,
  #stacks_in_3090_6_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_3090_6_4 a:hover,
  #stacks_in_3090_6_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_3090_6_4 a i,
  #stacks_in_3090_6_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_3090_6_4 a:hover i,
  #stacks_in_3090_6_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_3090_6_4 a,
    #stacks_in_3090_6_4 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_3092 {
    background-image: url("4854245D-61E2-44EC-B843-213C000F8350.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_3094 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_3096 div,#stacks_in_3096 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3096 div a,#stacks_in_3096 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3096 div a:hover,#stacks_in_3096 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3096 small,#stacks_in_3096 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3096 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3096 .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: 180.00px;
}

#spacerStackstacks_in_3102 {
	height: 180.00px;
}




























@media print {
	#spacerStackstacks_in_3102 {
		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_3103 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_3103 .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_3103 .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_3103 .cd-modal-content a,
#stacks_in_3103 .cd-modal-content a:visited {
	color: #CCFF66;
}

#stacks_in_3103 .cd-modal-content a:hover,
#stacks_in_3103 .cd-modal-content a:active {
	color: #99CC33;
}

#stacks_in_3103 .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_3103 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


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

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


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

#stacks_in_3103 .cd-modal-action .modal_btn, #stacks_in_3103 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #000000;
}

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

#stacks_in_3103 .cd-modal-action .modal_btn {
	
	border-radius: 4px;
	
  color: #ffffff;
  line-height: 4em;
  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_3103 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

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

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

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

#stacks_in_3103 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	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_3103 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
	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_3103 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_3103 .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_3103 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_3103 .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_3103 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

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


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






#stacks_in_3104 {
	background-color: rgba(0, 0, 0, 0.75);
	border: solid rgba(3, 117, 216, 1.00);
	border-width:  2px;
	-moz-border-radius:  8px;
	-webkit-border-radius:  8px;
	border-radius:  8px;
	margin:  10px;
	padding:  20px;
}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3109 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_3109 {
		display: none !important;
	}
}
#stacks_in_3110 .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_3110 .hTxt{text-shadow:-1px -1px 3px rgba(0, 102, 204, 0.67),1px -1px 3px rgba(0, 102, 204, 0.67),-1px 1px 3px rgba(0, 102, 204, 0.67),1px 1px 3px rgba(0, 102, 204, 0.67)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_3115 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_3118 {
	height: 40.00px;
}




























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

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

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




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










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



}



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


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


}





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


#stacks_in_3119_4_28233 a,
#stacks_in_3119_4_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_3119_4_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3119_4_28233 a i,
#stacks_in_3119_4_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_3119_4_28233 a,
  #stacks_in_3119_4_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_3119_4_28233 a:hover,
  #stacks_in_3119_4_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_3119_4_28233 a i,
  #stacks_in_3119_4_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_3119_4_28233 a:hover i,
  #stacks_in_3119_4_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_3119_4_28233 a,
    #stacks_in_3119_4_28233 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_3119_6_4 a,
#stacks_in_3119_6_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_3119_6_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_3119_6_4 a i,
#stacks_in_3119_6_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_3119_6_4 a,
  #stacks_in_3119_6_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_3119_6_4 a:hover,
  #stacks_in_3119_6_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_3119_6_4 a i,
  #stacks_in_3119_6_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_3119_6_4 a:hover i,
  #stacks_in_3119_6_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_3119_6_4 a,
    #stacks_in_3119_6_4 a:visited {
      width: 100%;
    }
  }

  





.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2954_2 {
	height: 40.00px;
}




























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

#stacks_in_329 {
	margin:  20px;
}
#stacks_in_315>.s3_row {
	margin: 0 -10px;
}

#stacks_in_315>.s3_row>.s3_column_left {
	width: 67.00%;
}

#stacks_in_315>.s3_row>.s3_column_right {
	width: 33.000000%;
}




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










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


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


}



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


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


}





#stacks_in_802 .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_802 .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)}


.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_593 {
	height: 20.00px;
}




























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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_594 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_594 {
		display: none !important;
	}
}
#linkBoxstacks_in_3485 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_3485 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_3443 {
    background-image: url("EB986D1B-830C-4DC1-A849-764C924CB42E.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

#stacks_in_3445 {
	background-color: rgba(0, 0, 0, 0.33);
}
#stacks_in_3447 h3,#stacks_in_3447 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3447 h3 a,#stacks_in_3447 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3447 h3 a:hover,#stacks_in_3447 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3447 small,#stacks_in_3447 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3447 h3.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3447 .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: 180.00px;
}

#spacerStackstacks_in_3453 {
	height: 180.00px;
}




























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

#stacks_in_3471 {
	background-color: rgba(0, 0, 0, 0.33);
}
#stacks_in_3478 h5,#stacks_in_3478 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_3478 h5 a,#stacks_in_3478 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_3478 h5 a:hover,#stacks_in_3478 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_3478 small,#stacks_in_3478 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_3478 h5.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_3478 .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_133 {
	padding:  20px;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2955_2 {
	height: 40.00px;
}




























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

#stacks_in_3236_2 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 3px 0px 3px 0px;
}

#stacks_in_3236_4 {
	padding:  10px;
}
#stacks_in_3236_6 .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_3236_6 .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)}

/* Styling for Preview Mode & Publishing */


/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

#stacks_in_3236_64 .bx-wrapper {
	position: relative;
	
	margin: 0 auto;
	
	padding: 0;
	*zoom: 1;
}

#stacks_in_3236_64 .bx-wrapper img {
	
	max-width: 100%;
	height: auto;
	

	
	display: block;
}

/** THEME
===================================*/

#stacks_in_3236_64 .bx-wrapper .bx-viewport {
}

#stacks_in_3236_64 .bx-wrapper .bx-pager,
#stacks_in_3236_64 .bx-wrapper .bx-controls-auto {
	position: absolute;
	
	bottom: 20px;
	
	width: 100%;
	z-index: 200;
}

/* LOADER */

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




	#stacks_in_3236_64 .bx-wrapper .bx-pager {
		display: none;
	}





/*  Hide navigation arrows if toggled off in settings. */

	#stacks_in_3236_64 .bx-wrapper .bx-prev,
	#stacks_in_3236_64 .bx-wrapper .bx-next {
		display: none;
	}


/* AUTO CONTROLS (START / STOP) */

#stacks_in_3236_64 .bx-wrapper .bx-controls-auto {
	text-align: center;
}

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

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

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

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

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

#stacks_in_3236_64 .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

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

/* IMAGE CAPTIONS */

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

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

#stacks_in_3236_64 ul.bxslider, #stacks_in_3236_64 ul.bxslider li {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}






/* Styling for Edit Mode within Stacks */



#stacks_in_3236_15_1 {
	padding:  10px;
}

#stacks_in_3236_15_2 {
	padding: 70px 0px 70px 0px;
}

#stacks_in_3236_15_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_17_1 {
	padding:  10px;
}

#stacks_in_3236_17_2 {
	padding: 50px 0px 50px 0px;
}

#stacks_in_3236_17_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_19_1 {
	padding:  10px;
}

#stacks_in_3236_19_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_21_1 {
	padding:  10px;
}

#stacks_in_3236_21_2 {
	background-color: rgba(51, 51, 51, 1.00);
	padding: 70px 10px 70px 10px;
}

#stacks_in_3236_21_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_23_1 {
	padding:  10px;
}

#stacks_in_3236_23_2 {
	padding: 70px 0px 70px 0px;
}

#stacks_in_3236_23_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_25_2 {
	padding:  10px;
}

#stacks_in_3236_25_4 {
	background-color: rgba(51, 51, 51, 1.00);
	padding: 70px 10px 70px 10px;
}

#stacks_in_3236_25_6 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_27_8 {
	padding:  10px;
}

#stacks_in_3236_27_12 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_29_2 {
	padding:  10px;
}

#stacks_in_3236_29_6 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_33_2 {
	padding:  10px;
}

#stacks_in_3236_33_6 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_35_2 {
	padding:  10px;
}

#stacks_in_3236_35_6 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_37_1 {
	padding:  10px;
}

#stacks_in_3236_37_2 {
	padding: 60px 0px 60px 0px;
}

#stacks_in_3236_37_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_39_1 {
	padding:  10px;
}

#stacks_in_3236_39_2 {
	padding: 70px 0px 70px 0px;
}

#stacks_in_3236_39_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_31_2 {
	padding:  10px;
}

#stacks_in_3236_31_6 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_41_1 {
	padding:  10px;
}

#stacks_in_3236_41_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_43_1 {
	padding:  10px;
}

#stacks_in_3236_43_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_45_1 {
	padding:  10px;
}

#stacks_in_3236_45_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_47_1 {
	padding:  10px;
}

#stacks_in_3236_47_2 {
	padding: 60px 0px 60px 0px;
}

#stacks_in_3236_47_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_49_1 {
	padding:  10px;
}

#stacks_in_3236_49_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_51_1 {
	padding:  10px;
}

#stacks_in_3236_51_2 {
	padding: 40px 0px 40px 0px;
}

#stacks_in_3236_51_4 {
	padding: 5px 0px 5px 0px;
}

#stacks_in_3236_53_1 {
	padding:  10px;
}

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

#stacks_in_3236_53_4 {
	padding: 5px 0px 5px 0px;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2956_2 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_2956_2 {
		display: none !important;
	}
}
#linkBoxstacks_in_2952 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_2952 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_2566 .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_2566 .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)}


.spacerStack {
	height: 100.00px;
}

#spacerStackstacks_in_24_178 {
	height: 100.00px;
}




























@media print {
	#spacerStackstacks_in_24_178 {
		display: none !important;
	}
}
#stacks_in_24_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_24_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_24_185 .splide__track {
	overflow: hidden !important;
}

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

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

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

}


#stacks_in_24_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_24_185 .splide.is-active .splide__list {
	display: flex
}

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

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

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

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

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

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

#stacks_in_24_185 .splide__slider {
	position: relative
}

#stacks_in_24_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_24_185 .splide__track {
	position: relative;
	z-index: 0;
	overflow: hidden
}

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

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

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

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

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

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

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

#stacks_in_24_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_24_185 .splide__arrow svg {
	width: 1.2em;
	height: 1.2em;
	fill: rgba(27, 28, 29, 1.00);
}

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

#stacks_in_24_185 .splide__arrow:focus {
	outline: none
}

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

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

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

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

#stacks_in_24_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_24_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_24_185 .splide__pagination__page:hover {
	background: rgba(245, 137, 153, 1.00);
	cursor: pointer;
}

#stacks_in_24_185 .splide__pagination__page:focus {
	outline: none
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_24_185 .splide__video__wrapper {
	background: #000;
}

#stacks_in_24_185 .splide__video div {
	height: 100%
}

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

#stacks_in_24_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_24_185 .splide__video__play:hover {
	
	transition-duration: 200ms;
	transition-property: box-shadow;
	transition-timing-function: ease-out;
}


#stacks_in_24_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_24_185 .splide__video__play:hover {
	background: rgba(249, 158, 168, 0.90);
}

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


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




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

		
}

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

	

}

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

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

	

}




#stacks_in_24_185 .splide {
	position: relative;
}

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


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

}

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

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

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


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

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

#linkBoxLinkstacks_in_24_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_24_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_24_188_6 {
	height: 180.00px;
}




























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

#stacks_in_24_188_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_24_188_9 div,#stacks_in_24_188_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_188_9 div a,#stacks_in_24_188_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_188_9 div a:hover,#stacks_in_24_188_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_188_9 small,#stacks_in_24_188_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_188_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_188_16 div,#stacks_in_24_188_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_188_16 div a,#stacks_in_24_188_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_188_16 div a:hover,#stacks_in_24_188_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_188_16 small,#stacks_in_24_188_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_188_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_191_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_191_6 {
	height: 180.00px;
}




























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

#stacks_in_24_191_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_24_191_9 div,#stacks_in_24_191_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_191_9 div a,#stacks_in_24_191_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_191_9 div a:hover,#stacks_in_24_191_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_191_9 small,#stacks_in_24_191_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_191_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_191_16 div,#stacks_in_24_191_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_191_16 div a,#stacks_in_24_191_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_191_16 div a:hover,#stacks_in_24_191_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_191_16 small,#stacks_in_24_191_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_191_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_194_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_194_6 {
	height: 180.00px;
}




























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

#stacks_in_24_194_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_24_194_9 div,#stacks_in_24_194_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_194_9 div a,#stacks_in_24_194_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_194_9 div a:hover,#stacks_in_24_194_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_194_9 small,#stacks_in_24_194_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_194_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_194_16 div,#stacks_in_24_194_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_194_16 div a,#stacks_in_24_194_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_194_16 div a:hover,#stacks_in_24_194_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_194_16 small,#stacks_in_24_194_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_194_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_197_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_197_6 {
	height: 180.00px;
}




























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

#stacks_in_24_197_7 {
	background-color: rgba(153, 204, 51, 0.67);
}
#stacks_in_24_197_9 div,#stacks_in_24_197_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_197_9 div a,#stacks_in_24_197_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_197_9 div a:hover,#stacks_in_24_197_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_197_9 small,#stacks_in_24_197_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_197_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_197_16 div,#stacks_in_24_197_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_197_16 div a,#stacks_in_24_197_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_197_16 div a:hover,#stacks_in_24_197_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_197_16 small,#stacks_in_24_197_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_197_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_200_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_200_6 {
	height: 180.00px;
}




























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

#stacks_in_24_200_7 {
	background-color: rgba(0, 102, 204, 0.67);
}
#stacks_in_24_200_9 div,#stacks_in_24_200_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_200_9 div a,#stacks_in_24_200_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_200_9 div a:hover,#stacks_in_24_200_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_200_9 small,#stacks_in_24_200_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_200_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_200_16 div,#stacks_in_24_200_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_200_16 div a,#stacks_in_24_200_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_200_16 div a:hover,#stacks_in_24_200_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_200_16 small,#stacks_in_24_200_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_200_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_203_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_203_6 {
	height: 180.00px;
}




























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

#stacks_in_24_203_7 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_24_203_9 div,#stacks_in_24_203_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_203_9 div a,#stacks_in_24_203_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_203_9 div a:hover,#stacks_in_24_203_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_203_9 small,#stacks_in_24_203_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_203_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_203_16 div,#stacks_in_24_203_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_203_16 div a,#stacks_in_24_203_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_203_16 div a:hover,#stacks_in_24_203_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_203_16 small,#stacks_in_24_203_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_203_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_206_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_206_6 {
	height: 180.00px;
}




























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

#stacks_in_24_206_7 {
	background-color: rgba(0, 0, 0, 0.67);
}
#stacks_in_24_206_9 div,#stacks_in_24_206_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_206_9 div a,#stacks_in_24_206_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_206_9 div a:hover,#stacks_in_24_206_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_206_9 small,#stacks_in_24_206_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_206_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_206_16 div,#stacks_in_24_206_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_206_16 div a,#stacks_in_24_206_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_206_16 div a:hover,#stacks_in_24_206_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_206_16 small,#stacks_in_24_206_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_206_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_209_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_209_6 {
	height: 180.00px;
}




























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

#stacks_in_24_209_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_24_209_9 div,#stacks_in_24_209_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_209_9 div a,#stacks_in_24_209_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_209_9 div a:hover,#stacks_in_24_209_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_209_9 small,#stacks_in_24_209_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_209_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_209_16 div,#stacks_in_24_209_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_209_16 div a,#stacks_in_24_209_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_209_16 div a:hover,#stacks_in_24_209_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_209_16 small,#stacks_in_24_209_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_209_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_212_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_212_6 {
	height: 180.00px;
}




























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

#stacks_in_24_212_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_24_212_9 div,#stacks_in_24_212_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_212_9 div a,#stacks_in_24_212_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_212_9 div a:hover,#stacks_in_24_212_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_212_9 small,#stacks_in_24_212_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_212_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_212_16 div,#stacks_in_24_212_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_212_16 div a,#stacks_in_24_212_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_212_16 div a:hover,#stacks_in_24_212_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_212_16 small,#stacks_in_24_212_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_212_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_215_2 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_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_24_215_6 {
	height: 180.00px;
}




























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

#stacks_in_24_215_7 {
	background-color: rgba(138, 42, 170, 0.67);
}
#stacks_in_24_215_9 div,#stacks_in_24_215_9 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_215_9 div a,#stacks_in_24_215_9 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_215_9 div a:hover,#stacks_in_24_215_9 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_215_9 small,#stacks_in_24_215_9 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_215_9 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_215_16 div,#stacks_in_24_215_16 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_215_16 div a,#stacks_in_24_215_16 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_24_215_16 div a:hover,#stacks_in_24_215_16 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_24_215_16 small,#stacks_in_24_215_16 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_24_215_16 div.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_24_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_24_152 {
	height: 20.00px;
}




























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

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

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

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

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








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


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


}



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


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


}




#stacks_in_24_2 {
	padding:  10px;
}
#stacks_in_24_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_24_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_24_153_4 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_24_153_4 a,
#stacks_in_24_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_24_153_4 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_24_153_4 a i,
#stacks_in_24_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_24_153_4 a,
  #stacks_in_24_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_24_153_4 a:hover,
  #stacks_in_24_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_24_153_4 a i,
  #stacks_in_24_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_24_153_4 a:hover i,
  #stacks_in_24_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_24_153_4 a,
    #stacks_in_24_153_4 a:visited {
      width: 100%;
    }
  }

  




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


#stacks_in_24_167_2 a,
#stacks_in_24_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_24_167_2 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_24_167_2 a i,
#stacks_in_24_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_24_167_2 a,
  #stacks_in_24_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_24_167_2 a:hover,
  #stacks_in_24_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_24_167_2 a i,
  #stacks_in_24_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_24_167_2 a:hover i,
  #stacks_in_24_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_24_167_2 a,
    #stacks_in_24_167_2 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_24_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_24_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_24_34 {
	padding: 5px 0px 5px 0px;
}
#stacks_in_24_154_2 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: "Exo 2";
  
  text-align: center;
}


#stacks_in_24_154_2 a,
#stacks_in_24_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_24_154_2 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_24_154_2 a i,
#stacks_in_24_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_24_154_2 a,
  #stacks_in_24_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_24_154_2 a:hover,
  #stacks_in_24_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_24_154_2 a i,
  #stacks_in_24_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_24_154_2 a:hover i,
  #stacks_in_24_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_24_154_2 a,
    #stacks_in_24_154_2 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_24_9 {
	padding:  10px;
}
#stacks_in_24_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_24_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_24_164 {
	display: block;
	position: relative;
	z-index: 1;
}

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

#linkBoxLinkstacks_in_24_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_24_12 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 5px 0px 5px 0px;
}

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

#stacks_in_24_16 {
	padding:  10px;
}
#stacks_in_24_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_24_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_24_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_24_42 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_24_42 {
		display: none !important;
	}
}
#stacks_in_24_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_24_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_24_19 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 5px 0px 5px 0px;
}

#stacks_in_24_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_24_151 {
	height: 50.00px;
}




























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


#stacks_in_24_44_28233 a,
#stacks_in_24_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_24_44_28233 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_24_44_28233 a i,
#stacks_in_24_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_24_44_28233 a,
  #stacks_in_24_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_24_44_28233 a:hover,
  #stacks_in_24_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_24_44_28233 a i,
  #stacks_in_24_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_24_44_28233 a:hover i,
  #stacks_in_24_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_24_44_28233 a,
    #stacks_in_24_44_28233 a:visited {
      width: 100%;
    }
  }

  




