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

/* Edit Mode */


/* Preview */


.vast_hide.vast_video_player,
.vast_standby.vast_video_player{
  opacity: 0;
}


.vast_video_wrapper{
  position: relative;
  background-size: cover;
  overflow: hidden;
}
.vast_video_wrapper:before{
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.vast_video_tint{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: scale(1.05);
}
.vast_video_slice{
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.vast_video_background{
  background-position: center;
  background-size: cover;
  position: absolute;
  transform: scale(1.05);
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  bottom: 0;
  transition: opacity 500ms 500ms;
}
[data-status="ready"] ~ .vast_video_background{
  opacity: 0;
}
[data-status="ready"].vast_hide ~ .vast_video_background{
  opacity: 1;
}


#vast-log{
  position: fixed;
  width: 200px;
  bottom: 40px;
  right: 40px;
  background: #fff;
  color: #000;
  padding: 0 0 5px;
  border-radius: 9px;
  box-shadow: 0 1px 4px -2px #000;
  z-index: 10000;
  overflow: hidden;
}
#vast-log p{
  font-size: 13px;
  padding: 7px 20px;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}
#vast-log p ~ p{
  border-top: 1px solid #eee;
}
#vast-log p#log-header{
  font-weight: bolder;
  text-align: center;
}
.vast-icon{
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 3px;

  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.vast-loaded .vast-icon{
  background: rgb(255, 221, 7);
  animation: none;
  border: none;
}
.vast-loaded.vast-pause .vast-icon{
  background: rgb(206, 205, 204);
  animation: none;
  border: none;
}
.vast-loaded.vast-play .vast-icon{
  background: transparent;
  width: 0; 
  height: 0;
  border-radius: 0;
  animation: none;
  border-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgb(85, 211, 94);
}
.vast-pause{
  opacity: 0.4;
}


html.ncd-photo-lock{
	overflow: hidden;
}
a[data-photo-group]{
	cursor:pointer;
}
.ncd-photo *{
	padding: 0;
	margin: 0;
	list-style: none;
}
.ncd-photo *,
.ncd-photo *:before,
.ncd-photo *:after{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.ncd-photo .cf:after {
  content: "";
  display: table;
  clear: both;
}
.ncd-photo .ncd-photo{
	display: none;
}
.ncd-photo ul{
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}
.ncd-photo ul:after {
	content: "";
	display: table;
	clear: both;
}
.ncd-photo li{
	cursor: zoom-in;
	line-height: 0;
}
.ncd-photo li.hide{
	display: none !important;
}
.ncd-photo li div{
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transition: -webkit-box-shadow 150ms ease-out;
	-moz-transition: -moz-box-shadow 150ms ease-out;
	transition: box-shadow 150ms ease-out;
	-webkit-box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
	-moz-box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.ncd-photo li img{
	position: relative;
	z-index: 10;
	-webkit-transform: -webkit-translateZ(0);
	-moz-transform: -moz-translateZ(0);
	transform: translateZ(0);
}
.ncd-photo ul p{
	display: inline-block;
	z-index: 30;
	font-variant: normal;
	position: absolute;
	line-height: 1.4;
	margin: 0 0 10px;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transform: -webkit-translateZ(0);
	-moz-transform: -moz-translateZ(0);
	transform: translateZ(0);
	-webkit-touch-callout:none;}

.ncd-photo ul p b{
	font-weight: normal;
	font-style: normal;
	padding-right: 3px;
}
.ncd-photo ul p em{
	font-weight: normal;
	font-style: normal;
}
.ncd-photo ul p span{
	display: inline-block;
	padding: 6px 12px;
}
.ncd-photo ul p span.empty{
	visibility: hidden;
}

.ncd-photo[data-italic-title="True"] p b,
.ncd-photo[data-italic-caption="True"] p em{ font-style: italic; }

.ncd-photo[data-bold-title="True"] p b,
.ncd-photo[data-bold-caption="True"] p em{ font-weight: bold; }

.ncd-photo[data-hide-title="True"] p b,
.ncd-photo[data-hide-caption="True"] p em,
.ncd-photo[data-hide-title="True"][data-hide-caption="True"] p{ display: none; }

.ncd-photo[data-hide-caption="True"] ul p b{padding-right: 0;}

/* Caption Positions */

.ncd-photo ul.cap-hov li p{
	opacity: 0;
	-webkit-transition: -webkit-transform 300ms, opacity 300ms;
	-moz-transition: -moz-transform 300ms, opacity 300ms;
	transition: transform 300ms, opacity 300ms;
	-webkit-transform: -webkit-translate3d(0,4px,0);
	-moz-transform: -moz-translate3d(0,4px,0);
	transform: translate3d(0,4px,0); 
}
.ncd-photo ul.cap-hov li:hover p{
	opacity: 1;
	-webkit-transform: -webkit-translate3d(0,0,0);
	-moz-transform: -moz-translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.ncd-photo ul.cap-hide li p{
	display: none !important;
}
.ncd-photo ul.cap-ibl p,
.ncd-photo ul.cap-ibc p{
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	text-align: left;
}
.ncd-photo ul.cap-ibl p span,
.ncd-photo ul.cap-ibc p span{
	display: block;
}
.ncd-photo ul.cap-imbl p,
.ncd-photo ul.cap-imbc p{
	left: 20px;
	bottom: 10px;
	right: 20px;
	text-align: left;
}
.ncd-photo ul.cap-ibc p,
.ncd-photo ul.cap-imbc p{
	text-align: center;
}
.ncd-photo ul.cap-imbl p span,
.ncd-photo ul.cap-imbc p span{
	border-radius: 3px;
}

/* FLOW Thumbnails */

.ncd-photo.photo-flow {
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: .85em;
	-moz-column-count: 1;
	-webkit-column-count: 1;
	column-count: 1;
}
.ncd-photo.photo-flow li div{
	display: inline-block;
	width: 100%;
	background: none !important;
}
.ncd-photo.photo-flow li div:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	content: "";
	display: block;
	-webkit-transition: box-shadow 150ms ease-out;
	-moz-transition: box-shadow 150ms ease-out;
	transition: box-shadow 150ms ease-out;
	-webkit-box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
	-moz-box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.ncd-photo.photo-flow li img {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}
.ncd-photo.photo-flow ul.cap-ibl li p,
.ncd-photo.photo-flow ul.cap-ibc li p{
	-webkit-transform: -webkit-translate3d(0,0,0);
	-moz-transform: -moz-translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Spacing Thumbnails */

.ncd-photo.space-0.photo-grid{margin: 0;}
.ncd-photo.space-0.photo-grid li div{margin: 0;}
.ncd-photo.space-0.photo-flow li div{margin: 0;}
.ncd-photo.space-0.photo-flow {
	-moz-column-gap: 0;
	-webkit-column-gap: 0;
	column-gap: 0;
}

.ncd-photo.space-1.photo-grid{margin: 0 -1px;}
.ncd-photo.space-1.photo-grid li div{margin: 1px;}
.ncd-photo.space-1.photo-flow li div{margin: 0 0 2px;}
.ncd-photo.space-1.photo-flow {
	-moz-column-gap: 2px;
	-webkit-column-gap: 2px;
	column-gap: 2px;
}
.ncd-photo.space-3.photo-grid{margin: 0 -3px;}
.ncd-photo.space-3.photo-grid li div{margin: 3px;}
.ncd-photo.space-3.photo-flow li div{margin: 0 0 6px;}
.ncd-photo.space-3.photo-flow {
	-moz-column-gap: 6px;
	-webkit-column-gap: 6px;
	column-gap: 6px;
}
.ncd-photo.space-5.photo-grid{margin: 0 -5px;}
.ncd-photo.space-5.photo-grid li div{margin: 5px;}
.ncd-photo.space-5.photo-flow li div{margin: 0 0 10px;}
.ncd-photo.space-5.photo-flow {
	-moz-column-gap: 10px;
	-webkit-column-gap: 10px;
	column-gap: 10px;
}
.ncd-photo.space-7.photo-grid{margin: 0 -7px;}
.ncd-photo.space-7.photo-grid li div{margin: 7px;}
.ncd-photo.space-7.photo-flow li div{margin: 0 0 14px;}
.ncd-photo.space-7.photo-flow {
	-moz-column-gap: 14px;
	-webkit-column-gap: 14px;
	column-gap: 14px;
}
.ncd-photo.space-9.photo-grid{margin: 0 -9px;}
.ncd-photo.space-9.photo-grid li div{margin: 9px;}
.ncd-photo.space-9.photo-flow li div{margin: 0 0 18px;}
.ncd-photo.space-9.photo-flow {
	-moz-column-gap: 18px;
	-webkit-column-gap: 18px;
	column-gap: 18px;
}

.ncd-photo.space-11.photo-grid{margin: 0 -11px;}
.ncd-photo.space-11.photo-grid li div{margin: 11px;}
.ncd-photo.space-11.photo-flow li div{margin: 0 0 22px;}
.ncd-photo.space-11.photo-flow {
	-moz-column-gap: 22px;
	-webkit-column-gap: 22px;
	column-gap: 22px;
}

.ncd-photo.space-13.photo-grid{margin: 0 -13px;}
.ncd-photo.space-13.photo-grid li div{margin: 13px;}
.ncd-photo.space-13.photo-flow li div{margin: 0 0 26px;}
.ncd-photo.space-13.photo-flow {
	-moz-column-gap: 26px;
	-webkit-column-gap: 26px;
	column-gap: 26px;
}

.ncd-photo.space-15.photo-grid{margin: 0 -15px;}
.ncd-photo.space-15.photo-grid li div{margin: 15px;}
.ncd-photo.space-15.photo-flow li div{margin: 0 0 30px;}
.ncd-photo.space-15.photo-flow {
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}

/* GRID Thumbnails */

.ncd-photo.photo-grid li{
	line-height: 0;
	float: left;
	display: block;
	position: relative;
	height: auto;
}
.ncd-photo.photo-grid li div{
	overflow: hidden;
}
.ncd-photo.photo-grid img{
	visibility: hidden;
	position: absolute;
	top: -9999px;
	left: -9999px;
}
.ncd-photo.photo-grid ul li div:after{
	padding-top: 100%;
	display: block;
	content: '';
}
.ncd-photo.photo-col-1.photo-grid li,
.ncd-photo.photo-col-2.photo-grid li,
.ncd-photo.photo-col-3.photo-grid li,
.ncd-photo.photo-col-4.photo-grid li,
.ncd-photo.photo-col-5.photo-grid li{width: 100%;}

/* Thumbnail Radius */

.ncd-photo.rad-0 li div,
.ncd-photo.rad-0.photo-flow li div:before,
.ncd-photo.rad-0.photo-flow li img,
.ncd-photo.rad-0.photo-flow li div{border-radius:  0;}
.ncd-photo.rad-0 ul.cap-ibl p span,
.ncd-photo.rad-0 ul.cap-ibc p span{border-radius: 0; }

.ncd-photo.rad-3 li div,
.ncd-photo.rad-3.photo-flow li div:before,
.ncd-photo.rad-3.photo-flow li img,
.ncd-photo.rad-3.photo-flow li div{border-radius:  3px;}
.ncd-photo.rad-3 ul.cap-ibl p span,
.ncd-photo.rad-3 ul.cap-ibc p span{border-radius: 0 0 3px 3px; }

.ncd-photo.rad-5 li div,
.ncd-photo.rad-5.photo-flow li div:before,
.ncd-photo.rad-5.photo-flow li img,
.ncd-photo.rad-5.photo-flow li div{border-radius:  5px;}
.ncd-photo.rad-5 ul.cap-ibl p span,
.ncd-photo.rad-5 ul.cap-ibc p span{border-radius: 0 0 5px 5px; }

.ncd-photo.rad-7 li div,
.ncd-photo.rad-7.photo-flow li div:before,
.ncd-photo.rad-7.photo-flow li img,
.ncd-photo.rad-7.photo-flow li div{border-radius:  7px;}
.ncd-photo.rad-7 ul.cap-ibl p span,
.ncd-photo.rad-7 ul.cap-ibc p span{border-radius: 0 0 7px 7px; }

/* Break Points for Columns */

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

	.ncd-photo.photo-col-1.photo-grid li,
	.ncd-photo.photo-col-2.photo-grid li,
	.ncd-photo.photo-col-3.photo-grid li,
	.ncd-photo.photo-col-4.photo-grid li,
	.ncd-photo.photo-col-5.photo-grid li{width: 100%;}

	.ncd-photo.photo-col-1.photo-flow,
	.ncd-photo.photo-col-2.photo-flow,
	.ncd-photo.photo-col-3.photo-flow,
	.ncd-photo.photo-col-4.photo-flow,
	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}

@media only screen and (min-width: 550px) {

	.ncd-photo.photo-col-2.photo-grid li,
	.ncd-photo.photo-col-3.photo-grid li,
	.ncd-photo.photo-col-4.photo-grid li,
	.ncd-photo.photo-col-5.photo-grid li{width: 50%;}

	.ncd-photo.photo-col-2.photo-flow,
	.ncd-photo.photo-col-3.photo-flow,
	.ncd-photo.photo-col-4.photo-flow,
	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
	}
}

@media only screen and (min-width: 750px) {
	.ncd-photo.photo-col-3.photo-grid li,
	.ncd-photo.photo-col-4.photo-grid li,
	.ncd-photo.photo-col-5.photo-grid li{width: 33.3333%;}

	.ncd-photo.photo-col-3.photo-flow,
	.ncd-photo.photo-col-4.photo-flow,
	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}

@media only screen and (min-width: 950px) {
	.ncd-photo.photo-col-4.photo-grid li,
	.ncd-photo.photo-col-5.photo-grid li{width: 25%;}

	.ncd-photo.photo-col-4.photo-flow,
	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 4;
		-webkit-column-count: 4;
		column-count: 4;
	}
}

@media only screen and (min-width: 1200px) {
	.ncd-photo.photo-col-5.photo-grid li{width: 20%;}

	.ncd-photo.photo-col-5.photo-flow{
		-moz-column-count: 5;
		-webkit-column-count: 5;
		column-count: 5;
	}
}

.batch-hide{
	position: absolute;
	opacity: 0;
	top:-9999px;
	left:-9999px;
}
@media only screen and (max-width: 400px) {
	.ncd-photo ul p{
		opacity: 0 !important;
	}
}

/* Captions Under Flow */

.ncd-photo.photo-flow.cap-under ul p,
.ncd-photo.photo-flow.cap-under ul p span{
position: static;
display: block;
margin-bottom: 0;
}

.ncd-photo.photo-flow.cap-under ul p span{
border-top-right-radius: 0 !important;
border-top-left-radius: 0 !important;
padding: 10px;
}

.ncd-photo.photo-flow.cap-under ul img{
border-bottom-right-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
	
.ncd-photo.photo-flow.cap-under li div{
-webkit-box-shadow: none;
box-shadow: none;
}

/* Lightbox */

#ncdPhotoLoader{
position: absolute;
color: #ff0000;
top: 50%;
left: 50%;
opacity: 0;
-webkit-transition: opacity 350ms 150ms;
-moz-transition: opacity 350ms 150ms;
transition: opacity 350ms 150ms;
-webkit-transform: translate3d(-50%, -50%, 0);
-moz-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
}
#ncdPhotoLoader.processing{
	opacity: 1;
}
#ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{
	height: 44px;
	width: 44px;
	margin: 0 auto;
	position: relative;
	-webkit-animation: rotation .6s infinite linear;
	-moz-animation: rotation .6s infinite linear;
	-o-animation: rotation .6s infinite linear;
	animation: rotation .6s infinite linear;
	border-radius: 100%;
}
@-webkit-keyframes rotation {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
	from {-o-transform: rotate(0deg);}
	to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}

#ncdPhotoBase {
	position: fixed;
	top: -9999px;
	left: -9999px;
	width: 100%;
	height: 100%;
	z-index: 10;
	opacity: 0;
	-webkit-transition: opacity 300ms 0ms, top 0ms 300ms, left 0ms 300ms;
	-moz-transition: opacity 300ms 0ms, top 0ms 300ms, left 0ms 300ms;
	transition: opacity 300ms 0ms, top 0ms 300ms, left 0ms 300ms;
	user-select: none;}

#ncdPhotoBase *,
#ncdPhotoBase *:before,
#ncdPhotoBase *:after{
	box-sizing: border-box;
}

#ncdPhotoBase.on {
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 10000;
	-webkit-transition: 
		opacity 150ms ease-out,
		top 0ms ease-out,
		left 0ms ease-out;
	-moz-transition: 
		opacity 150ms ease-out,
		top 0ms ease-out,
		left 0ms ease-out;
	transition: 
		opacity 150ms ease-out,
		top 0ms ease-out,
		left 0ms ease-out;}
#ncdPhotoBase.out {
	z-index: 10000;
}
.ncdPhotoZoom,
.ncdPhotoClose,
.ncdPhotoNext,
.ncdPhotoPrev {
	z-index: 100;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	cursor: pointer;
	position: absolute;
	border: 2px solid transparent;
}

/* ZOOM & CLOSE */

.ncdPhotoZoom,
.ncdPhotoClose{
	margin-top: 4%;
	top: 0;
	-webkit-transition: border 0.3s ease-out, box-shadow 0.15s ease-out;
	-moz-transition: border 0.3s ease-out, box-shadow 0.15s ease-out;
	transition: border 0.3s ease-out, box-shadow 0.15s ease-out;
}

.ncdPhotoZoom:before,
.ncdPhotoZoom:after,
.ncdPhotoClose:before,
.ncdPhotoClose:after {
	top:50%;
	left:0;
	width:2px;
	height:18px;
	content:"";
	position:absolute;
	margin:-9px 22.5px 0;
	-webkit-transition: opacity 300ms, transform 300ms;
	-moz-transition: opacity 300ms, transform 300ms;
	transition: opacity 300ms, transform 300ms;}

/* ZOOM */

.ncdPhotoZoom{
	-webkit-transition: border 0.3s ease-out, box-shadow 0.15s ease-out, opacity 300ms ease-out, transform 300ms ease-out;
	-moz-transition: border 0.3s ease-out, box-shadow 0.15s ease-out, opacity 300ms ease-out, transform 300ms ease-out;
	transition: border 0.3s ease-out, box-shadow 0.15s ease-out, opacity 300ms ease-out, transform 300ms ease-out;
	left: 0;
	transform: rotate(90deg);
	opacity: 0;
	margin-left: 4%;}
.ncdPhotoZoom.enable{
	opacity:1;
	transform: rotate(0deg);	
}
.ncdPhotoZoom:after {
	-webkit-transform:rotate(-90deg);
	-ms-transform:rotate(-90deg);
	transform:rotate(-90deg);}

.ncdPhotoZoom.zoom:after {
	opacity: 0;
	-webkit-transform:rotate(-180deg);
	-ms-transform:rotate(-180deg);
	transform:rotate(-180deg);}
.ncdPhotoZoom:before {
	transform:rotate(0deg);}
.ncdPhotoZoom.zoom:before {
	transform:rotate(-90deg);}

/* CLOSE */

.ncdPhotoClose {
	right: 0;
	margin-right: 4%;}

.ncdPhotoClose:before,
.ncdPhotoClose:after {
	height:22px;
	margin:-11px 22.5px 0;
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);}

.ncdPhotoClose:after {
	-webkit-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	transform:rotate(-45deg);}

/* PREV / NEXT */

.ncdPhotoNext,
.ncdPhotoPrev {
	top: 50%;
	margin-top: -25px;
	opacity: 0;
	transition: opacity 0.2s ease-out, transform 0.8s cubic-bezier(0.190, 1.000, 0.220, 1.000),border 0.3s ease-out,box-shadow 0.15s ease-out;
	-moz-transition: opacity 0.2s ease-out, -moz-transform 0.8s cubic-bezier(0.190, 1.000, 0.220, 1.000),border 0.3s ease-out,box-shadow 0.15s ease-out;
	-webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.8s cubic-bezier(0.190, 1.000, 0.220, 1.000),border 0.3s ease-out,box-shadow 0.15s ease-out;
}

.ncdPhotoNext:before,
.ncdPhotoNext:after,
.ncdPhotoPrev:before,
.ncdPhotoPrev:after {
	top:50%;
	left:0;
	width:2px;
	height:15px;
	content:'';
	position:absolute;
	margin:-13px 24px 0;}

.ncdPhotoNext:after,
.ncdPhotoPrev:after{
	margin-top: -3px;
}
.ncdPhotoPrev:after,.ncdPhotoPrev:before {left:-3px;}
.ncdPhotoNext:after{
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	transform:rotate(45deg);}
.ncdPhotoNext:before {
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	transform:rotate(-45deg);}
.ncdPhotoPrev:after{
	-webkit-transform:rotate(315deg);
	-moz-transform:rotate(315deg);
	-ms-transform:rotate(315deg);
	-o-transform:rotate(315deg);
	transform:rotate(315deg);}
.ncdPhotoPrev:before {
	-webkit-transform:rotate(-315deg);
	-moz-transform:rotate(-315deg);
	-ms-transform:rotate(-315deg);
	-o-transform:rotate(-315deg);
	transform:rotate(-315deg);}

@media screen and (min-width: 800px) {
	#ncdPhotoControls #ncdPhotoCounter{
		display: none;
	}
}
@media screen and (max-width: 800px) {
#ncdPhotoControls{
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 53px;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout:none;
	z-index: 100;}

	/* No Caption Mobile */
	#ncdPhotoBase.cap-hide #ncdPhotoControls{height: 70px;}
	#ncdPhotoBase.cap-hide .ncd-ui{bottom: 8px !important;}

	.ncdPhotoZoom.zoom{
		-webkit-transform: translateY(-20px);
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

/* Prev Button */

.ncdPhotoNext {
	-webkit-transform: translateX(-15px);
	-moz-transform: translateX(-15px);
	transform: translateX(-15px);
	right: 4%;}
.ncdPhotoPrev {
	-webkit-transform: translateX(15px);
	-moz-transform: translateX(15px);
	transform: translateX(15px);
	left: 4%;}


#ncdPhotoBase:hover .ncdPhotoNext,
#ncdPhotoBase:hover .ncdPhotoPrev {
	-webkit-transform: translateX(0) rotate(0deg);opacity: 1;
	-moz-transform: translateX(0) rotate(0deg);opacity: 1;
	transform: translateX(0) rotate(0deg);opacity: 1;
}


@media screen and (max-width: 800px) {
	#ncdPhotoBase .ncdPhotoNext,
	#ncdPhotoBase .ncdPhotoPrev {
		-webkit-transform: translateX(0) rotate(0deg);
		-moz-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
		margin-top: 4%;
		top: 0;
		opacity: 1;
	}
	#ncdPhotoBase .ncdPhotoNext{margin-right: 20%; }
	#ncdPhotoBase .ncdPhotoZoom{margin-left: -25px;left: 50%;}
	#ncdPhotoBase .ncdPhotoPrev{margin-left: 20%;}

	#ncdPhotoBase #ncdPhotoCounter,
	#ncdPhotoBase .ncdPhotoClose,
	#ncdPhotoBase .ncdPhotoNext,
	#ncdPhotoBase .ncdPhotoZoom,
	#ncdPhotoBase .ncdPhotoPrev{top: auto; bottom: 0;}
	#ncdPhotoOverlay div.slide p{
		position: absolute;
		bottom: 100%;
		left: 0;
	}

	#ncdPhotoCounter{
		position: absolute;
		left: 4%;
		margin-left: 10px;
		font-family: 'Helvetica Neue';
		font-weight: 300;
		letter-spacing: -1px;
		height: 27px;
		line-height: 0;
		font-size: 16px;
		z-index: 100;
	}
	#ncdPhotoCounter .lb-current{
		font-size: 28px;
		padding-right: 2px;
		letter-spacing: -2px;
	}

}
#ncdPhotoBase.out .ncdPhotoNext {
	-webkit-transform: translateX(30px) rotate(0deg);opacity: 0;
	-moz-transform: translateX(30px) rotate(0deg);opacity: 0;
	transform: translateX(30px) rotate(0deg);opacity: 0;
}
#ncdPhotoBase.out .ncdPhotoPrev {
	-webkit-transform: translateX(-30px) rotate(0deg);opacity: 0;
	-moz-transform: translateX(-30px) rotate(0deg);opacity: 0;
	transform: translateX(-30px) rotate(0deg);opacity: 0;
}
#ncdPhotoBase .ncdPhotoNext.hide,
#ncdPhotoBase .ncdPhotoPrev.hide {opacity: 0;}

#ncdPhotoBase.single-image .ncdPhotoNext,
#ncdPhotoBase.single-image .ncdPhotoPrev,
#ncdPhotoOverlay[data-hide-full-title="True"] span b,
#ncdPhotoOverlay[data-hide-full-caption="True"] span em{
	display: none;
}

/* Lightbox */

#ncdPhotoOverlay {
	position: absolute;
	height: 100%;
	width: 100%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
#ncdPhotoOverlay div.slide {
	display: block;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	line-height: 0;
	position:absolute;
	top:-9999px;
	left:-9999px;
}
#ncdPhotoOverlay div.slide.ncd-show{
	position: relative;
	top: 50%;
	left: 0%;
	height: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#ncdPhotoOverlay div.slide.out{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: auto;
	-webkit-transform: translateY(-50%) translateX(-10px);
	-ms-transform: translateY(-50%) translateX(-10px);
	transform: translateY(-50%) translateX(-10px);
	opacity: 0;
	transition: opacity 200ms ease-in, transform 200ms ease-in;
}
#ncdPhotoBase.go-next #ncdPhotoOverlay div.slide.out{
	-webkit-transform: translateY(-50%) translateX(-10px);
	-ms-transform: translateY(-50%) translateX(-10px);
	transform: translateY(-50%) translateX(-10px);
	opacity: 0;
	transition: opacity 200ms ease-in, transform 200ms ease-in;
}
#ncdPhotoBase.go-prev #ncdPhotoOverlay div.slide.out{
	-webkit-transform: translateY(-50%) translateX(10px);
	-ms-transform: translateY(-50%) translateX(10px);
	transform: translateY(-50%) translateX(10px);
	opacity: 0;
	transition: opacity 200ms ease-in, transform 200ms ease-in;
}
#ncdPhotoBase.go-next div.slide.out img,
#ncdPhotoBase.go-prev div.slide.out img,
#ncdPhotoBase.processing div.slide.ncd-show.out img{
	-webkit-animation: none !important;
	animation: none !important;
	opacity: 1 !important;
}

#ncdPhotoOverlay div.slide.out.ncd-show,
.go-next #ncdPhotoOverlay div.slide.out.ncd-show,
.go-prev #ncdPhotoOverlay div.slide.out.ncd-show{
	opacity: 0;
	transition: none;
}

#ncdPhotoOverlay div.slide > div {
	display: inline-block;
	position: relative;
	padding: 4%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
#ncdPhotoOverlay div.slide.zoom.in > div {
	padding: 0;
}
#ncdPhotoOverlay div.slide.zoom.in,
#ncdPhotoOverlay div.slide.zoom.in > div {font-size: 0;}

#ncdPhotoOverlay div.slide.zoom {
	overflow: scroll; 
	cursor:move;
	-webkit-overflow-scrolling: touch;}
#ncdPhotoOverlay div.slide.zoom::-webkit-scrollbar {
	display: none;
}

#ncdPhotoOverlay div.slide.zoom.in br{display: none;}
#ncdPhotoOverlay div.slide.zoom.out br{display: block;}
#ncdPhotoOverlay div.slide.zoom.in.transition,
#ncdPhotoOverlay div.slide.zoom.out{overflow: hidden;}
#ncdPhotoOverlay div.slide.zoom.transition div{
	-webkit-animation: float-zoom-in 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	-moz-animation: float-zoom-in 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	animation: float-zoom-in 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#ncdPhotoOverlay div.slide.zoom.in div{
	line-height: normal;
	-webkit-animation: float-zoom-in-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	-moz-animation: float-zoom-in-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	animation: float-zoom-in-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#ncdPhotoOverlay div.slide.zoom.in.transition div{
	-webkit-animation: float-zoom-out 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	-moz-animation: float-zoom-out 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	animation: float-zoom-out 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#ncdPhotoOverlay div.slide.zoom.out div{
	-webkit-animation: float-zoom-out-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	-moz-animation: float-zoom-out-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
	animation: float-zoom-out-complete 250ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#ncdPhotoOverlay div.slide.ncd-show > div{opacity: 1;}

@-webkit-keyframes float-zoom-in {
	from {-webkit-transform: scale(1);opacity: 1}
	to {-webkit-transform: scale(1.03);opacity: 0}
}
@keyframes float-zoom-in {
	from {transform: scale(1);opacity: 1}
	to {transform: scale(1.03);opacity: 0}
}
@-webkit-keyframes float-zoom-in-complete {
	from {-webkit-transform: scale(.98);opacity: 0}
	to {-webkit-transform: scale(1);opacity: 1}
}
@keyframes float-zoom-in-complete {
	from {transform: scale(.98);opacity: 0}
	to {transform: scale(1);opacity: 1}
}
@-webkit-keyframes float-zoom-out {
	from {-webkit-transform: scale(1);opacity: 1}
	to {-webkit-transform: scale(.98);opacity: 0}
}
@keyframes float-zoom-out {
	from {transform: scale(1);opacity: 1}
	to {transform: scale(.98);opacity: 0}
}
@-webkit-keyframes float-zoom-out-complete {
	from {-webkit-transform: scale(1.03);opacity: 0}
	to {-webkit-transform: scale(1);opacity: 1}
}
@keyframes float-zoom-out-complete {
	from {transform: scale(1.03);opacity: 0}
	to {transform: scale(1);opacity: 1}
}
@-webkit-keyframes float-in {
	from {-webkit-transform: scale(1.04);opacity: 0}
	to {-webkit-transform: scale(1);opacity: 1}
}
@keyframes float-in {
	from {transform: scale(1.02);opacity: 0}
	to {transform: scale(1);opacity: 1}
}
@-webkit-keyframes float-down {
	from {-webkit-transform: translateY(-10px);opacity: 0}
	to {-webkit-transform: translateY(0);opacity: 1}
}
@keyframes float-down {
	from {transform: translateY(-10px);opacity: 0}
	to {transform: translateY(0);opacity: 1}
}
@-webkit-keyframes float-out {
	from {-webkit-transform: scale(1);opacity: 1}
	to {-webkit-transform: scale(0.97);opacity: 0}
}
@keyframes float-out {
	from {transform: scale(1);opacity: 1}
	to {transform: scale(0.97);opacity: 0}
}
@-webkit-keyframes float-up {
	from {-webkit-transform: translateY(0px);opacity: 1}
	to {-webkit-transform: translateY(10px);opacity: 0}
}
@keyframes float-up {
	from {transform: translateY(0px);opacity: 1}
	to {transform: translateY(10px);opacity: 0}
}
@-webkit-keyframes float-next {
	from {-webkit-transform: translateX(5px);opacity: 0}
	to {-webkit-transform: translateX(0);opacity: 1}
}
@keyframes float-next {
	from {transform: translateX(5px);opacity: 0}
	to {transform: translateX(0);opacity: 1}
}
@-webkit-keyframes float-prev {
	from {-webkit-transform: translateX(-5px);opacity: 0}
	to {-webkit-transform: translateX(0);opacity: 1}
}
@keyframes float-prev {
	from {transform: translateX(-5px);opacity: 0}
	to {transform: translateX(0);opacity: 1}
}
@-webkit-keyframes text-swap {
	from {-webkit-opacity: 0}
	to {-webkit-opacity: 1}
}
@keyframes text-swap {
	from {opacity: 0}
	to {opacity: 1}
}

#ncdPhotoOverlay div.slide img {
	list-style: none;
	line-height: 0;
	max-width: 100% !important;
	max-height: 80vh !important;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout:none;
	border-radius: 0px;
}
#ncdPhotoOverlay div.slide.zoom.in > div{
	height: auto;
}
#ncdPhotoOverlay div.slide.zoom.in img{
	max-width: none !important;
	max-height: none !important;
	border-radius: 0;
}
#ncdPhotoBase.go-next div.slide img{
	-webkit-animation: float-next 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: float-next 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#ncdPhotoBase.go-prev div.slide img{
	-webkit-animation: float-prev 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: float-prev 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#ncdPhotoBase.processing div.slide.ncd-show img{
	-webkit-animation: none;
	animation: none;
	opacity: 0;
}

@media screen and (min-width: 800px) {
	/*
	#ncdPhotoOverlay div.slide > div{
		height: 60vh;
	}
	*/
}
@media screen and (max-width: 800px) {
	#ncdPhotoBase > .ncdPhotoZoom{display: none}

	#ncdPhotoBase.go-next #ncdPhotoCaption p,
	#ncdPhotoBase.go-prev #ncdPhotoCaption p {
		-webkit-animation: text-swap 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
		animation: text-swap 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
	}
}

/* COUNTER */

.ncdPhotoCounter{
	left: auto !important;
	right: 0;}
.ncdPhotoCounter[data-show-count="False"],
#ncdPhotoCounter[data-show-count="False"]{
	display: none !important;}

/* CAPTION - MOBILE */

#ncdPhotoCaption{
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	text-align:center;
	padding: 12px 4%;
	font-size: 15px;
	z-index: 100;
	line-height: 1.4;
}
#ncdPhotoCaption p{
	margin: 0;
}
#ncdPhotoCaption b{
	padding-right: 5px;
}

#ncdPhotoOverlay p b,
#ncdPhotoCaption p b{
	font-weight: normal;
	font-style: normal;
	padding-right: 5px;
}
#ncdPhotoOverlay p em,
#ncdPhotoCaption p em{
	font-weight: normal;
	font-style: normal;
}

@media screen and (min-width: 800px) {

	#ncdPhotoCaption{
		display: none;
	}
	.img-caption-in{
		display: block;
	}
	.img-caption-in:after {
		content: "";
		display: table;
		clear: both;
	}
}
#ncdPhotoOverlay p.ncdPhotoCounter,
#ncdPhotoOverlay p{
	display: inline-block;
	text-align: left;
	padding: 12px 0 18px;
	font-size: 14px;
	font-variant: normal;
	line-height: 20px;
	margin: 0;
	float: left;
}

#ncdPhotoOverlay p.ncdPhotoCounter{
	float: right;
}

/* CAPTION - DESK */

#ncdPhotoBase:hover .img-caption-in {opacity: 1}
#ncdPhotoBase.cap-hide .img-caption-in{ display: none; }
#ncdPhotoBase.cap-show .img-caption-in.invis{
	visibility: hidden;
	-webkit-animation:none;
	animation:none
}
#ncdPhotoBase .img-caption-in{
	opacity: 0 ;
	transition: opacity 200ms;
}
#ncdPhotoBase.cap-show .ncd-show .img-caption-in{
	opacity: 1;
	-webkit-animation: float-down 600ms 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: float-down 600ms 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#ncdPhotoBase.processing .img-caption-in{
	opacity: 0 ;
}
@media screen and (max-width: 800px) {
	.img-caption-in{display: none}
}

/* LB Font Styles */

#ncdPhotoBase [data-italic-title="True"] p b,
#ncdPhotoBase [data-italic-caption="True"] p em{ font-style: italic; }
#ncdPhotoBase [data-bold-title="True"] p b,
#ncdPhotoBase [data-bold-caption="True"] p em{ font-weight: bold; }
#ncdPhotoBase [data-hide-title="True"] p b,
#ncdPhotoBase [data-hide-caption="True"] p em{ display: none; }

/* LB Theme - Default Dark */

.style-default #ncdPhotoOverlay p b,
.style-default #ncdPhotoCaption p b{color: #FFF} /* Caption Title */
.style-default #ncdPhotoOverlay p em,
.style-default #ncdPhotoCaption p em,
.style-default .ncdPhotoCounter,
.style-default #ncdPhotoCounter{color: #EEE} /* Caption Text */

.style-default img{box-shadow: 0 2px 16px rgba(0,0,0,0.6);} /* Img Shadow */
.style-default{background: rgba(0,0,0,0.85) !important} /* Overlay */

.style-default #ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{
	border-left: 3px solid rgba(200,200,200, .15);
	border-right: 3px solid rgba(200,200,200, .15);
	border-bottom: 3px solid rgba(200,200,200, .15);
	border-top: 3px solid rgba(200,200,200, .8);
}

@media screen and (max-width: 800px) {
	.style-default #ncdPhotoControls{
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.7)));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.7));
	background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.7));}
}

.style-default .ncdPhotoZoom,
.style-default .ncdPhotoClose,
.style-default .ncdPhotoNext,
.style-default .ncdPhotoPrev {
	background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(rgba(0, 0, 0, 0.00)), to(rgba(0, 0, 0, 0.1)));
	background-image: -webkit-radial-gradient(50% 50%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.00));
	background-image: radial-gradient(50% 50%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.00));
}

.style-default #ncdPhotoCaption{background: #000;}
.style-default .ncdPhotoNext:before,.ncdPhotoNext:after,
.style-default .ncdPhotoPrev:before,.ncdPhotoPrev:after,
.style-default .ncdPhotoZoom:before,.ncdPhotoZoom:after,
.style-default .ncdPhotoClose:before,.ncdPhotoClose:after,
.style-default .ncdPhotoNext:hover:before,.ncdPhotoNext:hover:after,
.style-default .ncdPhotoPrev:hover:before,.ncdPhotoPrev:hover:after,
.style-default .ncdPhotoClose:hover:before,.ncdPhotoClose:hover:after {background: #FFF}
.style-default #ncdPhotoCounter{color: #FFF}

.style-default .ncdPhotoZoom:active,
.style-default .ncdPhotoClose:active,
.style-default .ncdPhotoNext:active,
.style-default .ncdPhotoPrev:active{
	box-shadow: 0 0 0 5px rgba(255,255,255,0.6);
	border: 2px solid #FFF;}

.style-default .ncdPhotoZoom.zoom{border: 2px solid #FFF;}

@media screen and (min-width: 800px) {
	.style-default .ncdPhotoZoom:hover,
	.style-default .ncdPhotoClose:hover,
	.style-default .ncdPhotoNext:hover,
	.style-default .ncdPhotoPrev:hover{border: 2px solid #FFF;}
}

/* LB Theme - Contrast Light */

.style-contrast #ncdPhotoOverlay p b{color: #333}
.style-contrast #ncdPhotoCaption p b{color: #FFF}

.style-contrast #ncdPhotoOverlay p em,
.style-contrast .ncdPhotoCounter{color: #555}
.style-contrast #ncdPhotoCaption p em{color: #EEE}

.style-contrast img{box-shadow: 0 2px 10px rgba(0,0,0,0.15);}
.style-contrast{background: rgba(255,255,255,0.85) !important}

.style-contrast #ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{
	border-left: 3px solid rgba(100,100,100, .15);
	border-right: 3px solid rgba(100,100,100, .15);
	border-bottom: 3px solid rgba(100,100,100, .15);
	border-top: 3px solid rgba(100,100,100, .8);
}

.style-contrast #ncdPhotoCaption{background: #000}
.style-contrast #ncdPhotoCounter{color: #222}
.style-contrast .ncdPhotoNext:before,.style-contrast .ncdPhotoNext:after,
.style-contrast .ncdPhotoPrev:before,.style-contrast .ncdPhotoPrev:after,
.style-contrast .ncdPhotoZoom:before,.style-contrast .ncdPhotoZoom:after,
.style-contrast .ncdPhotoClose:before,.style-contrast .ncdPhotoClose:after,
.style-contrast .ncdPhotoNext:hover:before,.style-contrast .ncdPhotoNext:hover:after,
.style-contrast .ncdPhotoPrev:hover:before,.style-contrast .ncdPhotoPrev:hover:after,
.style-contrast .ncdPhotoClose:hover:before,.style-contrast .ncdPhotoClose:hover:after {background: #222}

.style-contrast .ncdPhotoZoom.zoom,
.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose{
	background: rgba(0,0,0,0.3);
}

.style-contrast .ncdPhotoZoom,
.style-contrast .ncdPhotoClose,
.style-contrast .ncdPhotoZoom:before,
.style-contrast .ncdPhotoZoom:after,
.style-contrast .ncdPhotoClose:before,
.style-contrast .ncdPhotoClose:after{transition: transform 300ms, border 300ms, box-shadow 300ms, background 300ms;}

.style-contrast .ncdPhotoZoom.zoom:before,
.style-contrast .ncdPhotoZoom.zoom:after,
.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose:before,
.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose:after{background: #FFF;}

.style-contrast .ncdPhotoZoom:active,
.style-contrast .ncdPhotoClose:active,
.style-contrast .ncdPhotoNext:active,
.style-contrast .ncdPhotoPrev:active{
	box-shadow: 0 0 0 5px rgba(0,0,0,0.15);
	border: 2px solid #222;}

.ncdPhotoZoom.zoom{border: 2px solid rgba(0,0,0,0.6);}
 
 @media screen and (min-width: 800px) {
	.style-contrast .ncdPhotoZoom,
	.style-contrast .ncdPhotoClose,
	.style-contrast .ncdPhotoNext,
	.style-contrast .ncdPhotoPrev {
		background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(rgba(255,255,255, 0.00)), to(rgba(255,255,255, 0.4)));
		background-image: -webkit-radial-gradient(50% 50%, rgba(255,255,255, 0.4), rgba(255,255,255, 0.00));
		background-image: radial-gradient(50% 50%, rgba(255,255,255, 0.4), rgba(255,255,255, 0.00));
	}
	
	.style-contrast .ncdPhotoZoom:hover,
	.style-contrast .ncdPhotoClose:hover,
	.style-contrast .ncdPhotoNext:hover,
	.style-contrast .ncdPhotoPrev:hover{border: 2px solid #222;}
}

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

	.style-contrast #ncdPhotoCounter{color: #fff}
	.style-contrast .ncdPhotoNext:before,.style-contrast .ncdPhotoNext:after,
	.style-contrast .ncdPhotoPrev:before,.style-contrast .ncdPhotoPrev:after,
	.style-contrast .ncdPhotoZoom:before,.style-contrast .ncdPhotoZoom:after,
	.style-contrast .ncdPhotoClose:before,.style-contrast .ncdPhotoClose:after,
	.style-contrast .ncdPhotoNext:hover:before,.style-contrast .ncdPhotoNext:hover:after,
	.style-contrast .ncdPhotoPrev:hover:before,.style-contrast .ncdPhotoPrev:hover:after,
	.style-contrast .ncdPhotoClose:hover:before,.style-contrast .ncdPhotoClose:hover:after {background: #fff}

	.style-contrast #ncdPhotoControls{
		background-color: rgba(0,0,0,0.3);
		background-image: none;}

	.style-contrast .ncdPhotoZoom.zoom,
	.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose{
		background: transparent;
	}

	.style-contrast .ncdPhotoZoom:active,
	.style-contrast .ncdPhotoZoom.zoom,
	.style-contrast .ncdPhotoClose:active,
	.style-contrast .ncdPhotoNext:active,
	.style-contrast .ncdPhotoPrev:active{
		box-shadow: 0 0 0 5px transparent;
		border: 2px solid transparent;}

	.style-contrast .ncdPhotoZoom.zoom{transform: translateY(0px);}

	#ncdPhotoBase.style-contrast .ncdPhotoNext.hide, 
	#ncdPhotoBase.style-contrast .ncdPhotoPrev.hide{opacity: 1;}
}

.processing img{
	box-shadow: none !important;
}



/* Edit Mode */


#stacks_in_2{
	max-width: px;margin: 0 auto;
}
#stacks_in_2{
	padding: px px px px;
}
@media screen and (min-width: px){
	#stacks_in_2{
		padding: px px px px;
	}
}/* Start dooHeader X stack CSS code */.stacks_in_6x{	display: block !important;		text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_6x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_6x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_6 {
	padding: 45px 0px 0px 0px;
}

#stacks_in_7 {
	font-size: 149%;
}
#stacks_in_8 *,
#stacks_in_8 *:before,
#stacks_in_8 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_10 {
  overflow: visible;
}
#pureText_stacks_in_10 .insideText {
  
    font-size: 12px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_10 a {
  color: #D1FF10 !important;
  text-decoration: none;
}
#pureText_stacks_in_10 a:hover {
  color: #FFFFFF !important;
}
/*
#pureText_stacks_in_10 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_10 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_10.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_10.fontSizeInheritOff, #pureText_stacks_in_10.fontSizeInheritOff span {
  font-size: 12px !important;
  line-height: 12px;
}
#pureText_stacks_in_10.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_10.lineHeightOn, #pureText_stacks_in_10.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_10.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_10.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_10 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_10 p.insideText,
#pureText_stacks_in_10 .insideText p,
#pureText_stacks_in_10 h1.insideText,
#pureText_stacks_in_10 h2.insideText,
#pureText_stacks_in_10 h3.insideText,
#pureText_stacks_in_10 h4.insideText,
#pureText_stacks_in_10 h5.insideText,
#pureText_stacks_in_10 h6.insideText {
  margin: 0;
  padding: 0;
}



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

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


#stacks_in_2372.aspen_split .max_width_wrap_content{
	max-width: 4000px;
	margin: 0 auto;
}

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

 
#stacks_in_2372.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_2372.aspen_split h1, 
#stacks_in_2372.aspen_split h2,
#stacks_in_2372.aspen_split h3, 
#stacks_in_2372.aspen_split h4, 
#stacks_in_2372.aspen_split h5, 
#stacks_in_2372.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_2372.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_2372.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}#stacks_in_2374 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_2374 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_2374 .fluid-image.unlimited img{width:100% !important}#stacks_in_2374 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_2374 .fluid-image.align-left img{float:left}#stacks_in_2374 .fluid-image.align-right img{float:right}

#stacks_in_2374 {
	background-color: rgba(0, 0, 0, 1.00);
}
#stacks_in_3083.vast_video_wrapper,
#stacks_in_3083.vast_video_wrapper strong,
#stacks_in_3083.vast_video_wrapper b,
#stacks_in_3083.vast_video_wrapper h1,
#stacks_in_3083.vast_video_wrapper h2,
#stacks_in_3083.vast_video_wrapper h3,
#stacks_in_3083.vast_video_wrapper h4,
#stacks_in_3083.vast_video_wrapper h5,
#stacks_in_3083.vast_video_wrapper h6{
	color: rgba(255, 255, 255, 1.00);
}
#stacks_in_3083 .vast_video_player,
#stacks_in_3083.vast_video_wrapper .vast_video_background {
	filter: blur(0px);
}
#stacks_in_3083 .vast_video_tint,
#stacks_in_3083 .vast_video_player,
#stacks_in_3083.vast_video_wrapper,
#stacks_in_3083.vast_video_wrapper:before{
  border-radius: 0px;
}
#stacks_in_3083.vast_video_wrapper a{
	color: rgba(52, 188, 255, 1.00);
}
#stacks_in_3083.vast_video_wrapper a:hover{
	color: rgba(95, 211, 255, 1.00);
}

#stacks_in_3083 .vast_video_slice{
  
	max-width: 2000px;
}
#stacks_in_3083 .vast_video_player{
	opacity: 1;
	width: 100% !important;
  
  height: auto !important;
  float: left;
  
}

/* Align Top */



/* Align Middle */


	#stacks_in_3083 .vast_video_slice{ flex-direction: column; }


/* Align Bottom */

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

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


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

 
#stacks_in_2594.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_2594.aspen_split h1, 
#stacks_in_2594.aspen_split h2,
#stacks_in_2594.aspen_split h3, 
#stacks_in_2594.aspen_split h4, 
#stacks_in_2594.aspen_split h5, 
#stacks_in_2594.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_2594.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_2594.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_2596 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_2596.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_2596.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_2596.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_2596.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_2596.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_2596.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_2596.RC3_M.RC3_Goff {
  margin: 0 0% 0px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_2596.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_2596.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_2596.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_2596.RC4_LF.RC4_Goff, .stacks_in_2596.RC4_LL.RC4_Goff, .stacks_in_2596.RC4_LF2.RC4_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_2596.RC4_LF.RC4_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_2596.RC4_LL2.RC4_Goff {
  margin: 0 0 0px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_2596.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_2596.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_2596.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_2596.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_2596.RC5_M.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_2596.RC5_LF.RC5_Goff, .stacks_in_2596.RC5_LL.RC5_Goff, .stacks_in_2596.RC5_RF.RC5_Goff, .stacks_in_2596.RC5_RL.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_2596.RespColone5_First.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_2596.RespColone5_Last.RC5_Goff {
  margin: 0 0 0px 0;
}

/****************  6 Non ******************/

.stacks_in_2596.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_2596.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_2596.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_2596.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_2596.RC6_M.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_2596.RC6_LF.RC6_Goff,
.stacks_in_2596.RC6_LL.RC6_Goff,
.stacks_in_2596.RC6_RF.RC6_Goff,
.stacks_in_2596.RC6_RL.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_2596.RC6_L1.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_2596.RC6_R1.RC6_Goff {
  margin: 0 0 0px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_2596.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_2596.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_2596.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 0px 0;
}

.stacks_in_2596.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_2596.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_2596.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 950px) {

}
@media (max-width: 600px) {
  .stacks_in_2596.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2596.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 0px 0;
}
.stacks_in_2596.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 0px 0;
}
@media (max-width: 950px) {

}
@media (max-width: 600px) {
  .stacks_in_2596.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 0px 0;
  }
  .stacks_in_2596.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2596.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 0px 0;

}
.stacks_in_2596.RC3_M {
  float: left;
  margin: 0 2% 0px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_2596.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 0px 0;
}

@media (max-width: 950px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_2596.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 0px 0;
  }
  .stacks_in_2596.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 0px 1%;
  }
  .stacks_in_2596.RC3_R.RespCol1,
  .stacks_in_2596.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2596.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 0px 0;
  }
  .stacks_in_2596.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 0px 1%;
  }
  .stacks_in_2596.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 0px 1%;
  }
  .stacks_in_2596.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_2596.RC3_L,
  .stacks_in_2596.RC3_R.RespCol2,
  .stacks_in_2596.RC3_R,
  .stacks_in_2596.RC3_R.RespCol1,
  .stacks_in_2596.RC3_RS.RespCol2,
  .stacks_in_2596.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 0px 0!important;
  }
  .stacks_in_2596.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 0px 0!important;
  }
  .stacks_in_2596.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 0px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2596.RC4_L {
  float: left;
}
.stacks_in_2596.RC4_R {
  float: left;
}
.stacks_in_2596.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_2596.RC4_S {
  width: 23.6%;
}
.stacks_in_2596.RC4_LF,
.stacks_in_2596.RC4_LL,
.stacks_in_2596.RC4_LF2 {
  margin: 0 1% 0px 1%;
}
.stacks_in_2596.RC4_LF {
  margin: 0 1% 0px 0;
}
.stacks_in_2596.RC4_LL2 {
  margin: 0 0 0px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_2596.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 950px) {
  .stacks_in_2596.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2596.RC4_S {
    width: 49%;
  }
  .stacks_in_2596.RC4_LF {
    float: left;
    margin: 0 1% 0px 0 ;
  }
  .stacks_in_2596.RC4_LL {
    float: left;
    margin: 0 0 0px 1% ;
  }
  .stacks_in_2596.RC4_LF2 {
    float: left;
    margin: 0 1% 0px 0 ;
  }
  .stacks_in_2596.RC4_LL2 {
    float: left;
    margin: 0 0 0px 1% ;
  }
  .stacks_in_2596.RC4_R {
    float:left;
  }
  .stacks_in_2596.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2596.RC4_S.RC4_Goff,
  .stacks_in_2596.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2596.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_2596.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_2596.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_2596.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_2596.RC4 {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC4_S {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC4_S.RC4_Goff,
  .stacks_in_2596.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2596.RC5_L {
  float: left;
}
.stacks_in_2596.RC5_R {
  float: left;
}
.stacks_in_2596.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_2596.RC5_S {
  width: 18.4%;
}
.stacks_in_2596.RC5_M {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_2596.RC5_LF,
.stacks_in_2596.RC5_LL,
.stacks_in_2596.RC5_RF,
.stacks_in_2596.RC5_RL {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_2596.RespColone5_First {
  margin: 0 1% 0px 0;
}
.stacks_in_2596.RespColone5_Last {
  float:left;
  margin: 0 0 0px 1%;
}
@media (max-width: 950px) {
  .stacks_in_2596.RC5, .stacks_in_2596.RC5_S {
    width: 49%;
  }
  .stacks_in_2596.RC5_LF {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_2596.RC5_LL {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_2596.RC5.RespColone5_Last,
  .stacks_in_2596.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 0px auto;
  }
  .stacks_in_2596.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2596.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2596.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RespColone5_Last.RC5_Goff,
  .stacks_in_2596.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 0px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2596.RC5.RespCol2,
  .stacks_in_2596.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_2596.RC5_LF.RespCol2,
  .stacks_in_2596.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_2596.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_2596.RC5.RespColone5_First.RespCol2,
  .stacks_in_2596.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 0px auto;
  }
  .stacks_in_2596.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2596.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_2596.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2596.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_2596.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;

  }
  .stacks_in_2596.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_2596.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 0px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_2596.RC5.RC5_LL.RespCol2,
  .stacks_in_2596.RC5.RC5_LF.RespCol2,
  .stacks_in_2596.RC5.RC5_LL.RespCol1,
  .stacks_in_2596.RC5.RC5_LF.RespCol1,
  .stacks_in_2596.RC5_S.RC5_LL.RespCol2,
  .stacks_in_2596.RC5_S.RC5_LF.RespCol2,
  .stacks_in_2596.RC5_S.RC5_LL.RespCol1,
  .stacks_in_2596.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC5.RC5_Goff,
  .stacks_in_2596.RC5_S.RC5_Goff,
  .stacks_in_2596.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 0px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2596.RC6_L,
.stacks_in_2596.RC6_L1 {
  float: left;
}
.stacks_in_2596.RC6_R,
.stacks_in_2596.RC6_R1 {
  float: left;
}
.stacks_in_2596.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_2596.RC6_S {
  width: 15.2%;
}
.stacks_in_2596.RC6_M {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_2596.RC6_LF,
.stacks_in_2596.RC6_LL,
.stacks_in_2596.RC6_RF,
.stacks_in_2596.RC6_RL {
  margin: 0 1% 0px 1%;
}
.stacks_in_2596.RC6_L1 {
  margin: 0 1% 0px 0;
}
.stacks_in_2596.RC6_R1 {
  margin: 0 0 0px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_2596.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 950px) {
  .stacks_in_2596.RC6,
  .stacks_in_2596.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2596.RC6_LF {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_2596.RC6_LL {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_2596.RC6.RC6_Goff,
  .stacks_in_2596.RC6_S.RC6_Goff,
  .stacks_in_2596.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_2596.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_2596.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_2596.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_2596.RC6,
  .stacks_in_2596.RC6_S {
    width: 100% !important;
    margin: 0 0 0px 0 !important;
  }
}

#stacks_in_2596 {
	padding: 20px 0px 40px 0px;
}
#stacks_in_2598 *,
#stacks_in_2598 *:before,
#stacks_in_2598 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_2598 {
	padding: 0px 0px 20px 0px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2600 {
  overflow: visible;
}
#pureText_stacks_in_2600 .insideText {
  
    font-size: 18px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2600 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2600 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2600 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2600 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2600.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2600.fontSizeInheritOff, #pureText_stacks_in_2600.fontSizeInheritOff span {
  font-size: 18px !important;
  line-height: 18px;
}
#pureText_stacks_in_2600.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2600.lineHeightOn, #pureText_stacks_in_2600.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2600.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2600.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2600 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2600 p.insideText,
#pureText_stacks_in_2600 .insideText p,
#pureText_stacks_in_2600 h1.insideText,
#pureText_stacks_in_2600 h2.insideText,
#pureText_stacks_in_2600 h3.insideText,
#pureText_stacks_in_2600 h4.insideText,
#pureText_stacks_in_2600 h5.insideText,
#pureText_stacks_in_2600 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2600 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2601 {
	font-size: 120%;
}
#stacks_in_2602 *,
#stacks_in_2602 *:before,
#stacks_in_2602 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2604 {
  overflow: visible;
}
#pureText_stacks_in_2604 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2604 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2604 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2604 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2604 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2604.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2604.fontSizeInheritOff, #pureText_stacks_in_2604.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2604.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2604.lineHeightOn, #pureText_stacks_in_2604.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2604.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2604.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2604 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2604 p.insideText,
#pureText_stacks_in_2604 .insideText p,
#pureText_stacks_in_2604 h1.insideText,
#pureText_stacks_in_2604 h2.insideText,
#pureText_stacks_in_2604 h3.insideText,
#pureText_stacks_in_2604 h4.insideText,
#pureText_stacks_in_2604 h5.insideText,
#pureText_stacks_in_2604 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2604 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2605 {
	word-spacing: -1px;
}
#stacks_in_2606 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_2606 .jwresp_col{float:none} #stacks_in_2606 #jwresp_col2_stacks_in_2606{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_2606 #jwresp_col1_stacks_in_2606,#stacks_in_2606 #jwresp_col3_stacks_in_2606{width:32%}#stacks_in_2606 #jwresp_col1_stacks_in_2606{float:left}#stacks_in_2606 #jwresp_col3_stacks_in_2606{float:right} @media screen and (max-width:770px){#stacks_in_2606 #jwresp_col1_stacks_in_2606,#stacks_in_2606 #jwresp_col3_stacks_in_2606{margin-bottom:20px}#stacks_in_2606 #jwresp_col1_stacks_in_2606{width:49%}#stacks_in_2606 #jwresp_col3_stacks_in_2606{width:49%}#stacks_in_2606 #jwresp_col2_stacks_in_2606{clear:both;width:100%;display:block}}  @media screen and (max-width:1200px){#stacks_in_2606 #jwresp_col1_stacks_in_2606,#stacks_in_2606 #jwresp_col3_stacks_in_2606,#stacks_in_2606 #jwresp_col2_stacks_in_2606{float:none;width:100%;display:block}#stacks_in_2606 #jwresp_col1_stacks_in_2606,#stacks_in_2606 #jwresp_col3_stacks_in_2606{margin-bottom:20px}} 

#stacks_in_2606 {
	padding: 10px 0px 0px 0px;
}
#stacks_in_2608 *,
#stacks_in_2608 *:before,
#stacks_in_2608 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2610 {
  overflow: visible;
}
#pureText_stacks_in_2610 .insideText {
  
    font-size: 15px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2610 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2610 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2610 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2610 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2610.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2610.fontSizeInheritOff, #pureText_stacks_in_2610.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2610.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2610.lineHeightOn, #pureText_stacks_in_2610.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2610.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2610.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2610 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2610 p.insideText,
#pureText_stacks_in_2610 .insideText p,
#pureText_stacks_in_2610 h1.insideText,
#pureText_stacks_in_2610 h2.insideText,
#pureText_stacks_in_2610 h3.insideText,
#pureText_stacks_in_2610 h4.insideText,
#pureText_stacks_in_2610 h5.insideText,
#pureText_stacks_in_2610 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2610 {
	padding: 10px 15px 0px 28px;
}

#stacks_in_2611 {
	font-size: 120%;
}
#stacks_in_2612 *,
#stacks_in_2612 *:before,
#stacks_in_2612 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2614 {
  overflow: visible;
}
#pureText_stacks_in_2614 .insideText {
  
  
  
  
}













#pureText_stacks_in_2614 a {
  color: #808004 !important;
  text-decoration: none;
}
#pureText_stacks_in_2614 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2614 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2614 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2614.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2614.fontSizeInheritOff, #pureText_stacks_in_2614.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2614.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2614.lineHeightOn, #pureText_stacks_in_2614.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2614.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2614.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2614 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2614 p.insideText,
#pureText_stacks_in_2614 .insideText p,
#pureText_stacks_in_2614 h1.insideText,
#pureText_stacks_in_2614 h2.insideText,
#pureText_stacks_in_2614 h3.insideText,
#pureText_stacks_in_2614 h4.insideText,
#pureText_stacks_in_2614 h5.insideText,
#pureText_stacks_in_2614 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2614 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2615 {
	word-spacing: -1px;
}
#stacks_in_2617 *,
#stacks_in_2617 *:before,
#stacks_in_2617 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2619 {
  overflow: visible;
}
#pureText_stacks_in_2619 .insideText {
  
    font-size: 15px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2619 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2619 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2619 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2619 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2619.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2619.fontSizeInheritOff, #pureText_stacks_in_2619.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2619.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2619.lineHeightOn, #pureText_stacks_in_2619.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2619.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2619.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2619 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2619 p.insideText,
#pureText_stacks_in_2619 .insideText p,
#pureText_stacks_in_2619 h1.insideText,
#pureText_stacks_in_2619 h2.insideText,
#pureText_stacks_in_2619 h3.insideText,
#pureText_stacks_in_2619 h4.insideText,
#pureText_stacks_in_2619 h5.insideText,
#pureText_stacks_in_2619 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2619 {
	padding: 10px 15px 0px 28px;
}

#stacks_in_2620 {
	font-size: 120%;
}
#stacks_in_2621 *,
#stacks_in_2621 *:before,
#stacks_in_2621 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2623 {
  overflow: visible;
}
#pureText_stacks_in_2623 .insideText {
  
  
  
  
}













#pureText_stacks_in_2623 a {
  color: #808004 !important;
  text-decoration: none;
}
#pureText_stacks_in_2623 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2623 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2623 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2623.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2623.fontSizeInheritOff, #pureText_stacks_in_2623.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2623.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2623.lineHeightOn, #pureText_stacks_in_2623.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2623.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2623.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2623 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2623 p.insideText,
#pureText_stacks_in_2623 .insideText p,
#pureText_stacks_in_2623 h1.insideText,
#pureText_stacks_in_2623 h2.insideText,
#pureText_stacks_in_2623 h3.insideText,
#pureText_stacks_in_2623 h4.insideText,
#pureText_stacks_in_2623 h5.insideText,
#pureText_stacks_in_2623 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2623 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2624 {
	word-spacing: -1px;
}
#stacks_in_2626 *,
#stacks_in_2626 *:before,
#stacks_in_2626 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2628 {
  overflow: visible;
}
#pureText_stacks_in_2628 .insideText {
  
    font-size: 15px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2628 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2628 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2628 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2628 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2628.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2628.fontSizeInheritOff, #pureText_stacks_in_2628.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2628.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2628.lineHeightOn, #pureText_stacks_in_2628.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2628.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2628.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2628 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2628 p.insideText,
#pureText_stacks_in_2628 .insideText p,
#pureText_stacks_in_2628 h1.insideText,
#pureText_stacks_in_2628 h2.insideText,
#pureText_stacks_in_2628 h3.insideText,
#pureText_stacks_in_2628 h4.insideText,
#pureText_stacks_in_2628 h5.insideText,
#pureText_stacks_in_2628 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2628 {
	padding: 10px 15px 0px 28px;
}

#stacks_in_2629 {
	font-size: 120%;
}
#stacks_in_2630 *,
#stacks_in_2630 *:before,
#stacks_in_2630 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2632 {
  overflow: visible;
}
#pureText_stacks_in_2632 .insideText {
  
  
  
  
}













#pureText_stacks_in_2632 a {
  color: #808004 !important;
  text-decoration: none;
}
#pureText_stacks_in_2632 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2632 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2632 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2632.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2632.fontSizeInheritOff, #pureText_stacks_in_2632.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2632.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2632.lineHeightOn, #pureText_stacks_in_2632.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2632.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2632.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2632 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2632 p.insideText,
#pureText_stacks_in_2632 .insideText p,
#pureText_stacks_in_2632 h1.insideText,
#pureText_stacks_in_2632 h2.insideText,
#pureText_stacks_in_2632 h3.insideText,
#pureText_stacks_in_2632 h4.insideText,
#pureText_stacks_in_2632 h5.insideText,
#pureText_stacks_in_2632 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2632 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_2633 {
	word-spacing: -1px;
}
#stacks_in_2634 *,
#stacks_in_2634 *:before,
#stacks_in_2634 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_2634 {
	padding: 0px 0px 0px 10px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2635 {
  overflow: visible;
}
#pureText_stacks_in_2635 .insideText {
  
    font-size: 14px;
  
  
  
  letter-spacing: 1px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2635 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2635 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2635 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2635 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2635.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2635.fontSizeInheritOff, #pureText_stacks_in_2635.fontSizeInheritOff span {
  font-size: 14px !important;
  line-height: 14px;
}
#pureText_stacks_in_2635.letterSpacingOn {
  letter-spacing: 1px;
}
#pureText_stacks_in_2635.lineHeightOn, #pureText_stacks_in_2635.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2635.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2635.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2635 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2635 p.insideText,
#pureText_stacks_in_2635 .insideText p,
#pureText_stacks_in_2635 h1.insideText,
#pureText_stacks_in_2635 h2.insideText,
#pureText_stacks_in_2635 h3.insideText,
#pureText_stacks_in_2635 h4.insideText,
#pureText_stacks_in_2635 h5.insideText,
#pureText_stacks_in_2635 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2635 {
	padding: 10px 15px 0px 25px;
}

#stacks_in_2636 {
	font-size: 120%;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2637 {
  overflow: visible;
}
#pureText_stacks_in_2637 .insideText {
  
    font-size: 14px;
  
  
  
  letter-spacing: -1px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2637 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2637 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2637 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2637 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2637.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2637.fontSizeInheritOff, #pureText_stacks_in_2637.fontSizeInheritOff span {
  font-size: 14px !important;
  line-height: 14px;
}
#pureText_stacks_in_2637.letterSpacingOn {
  letter-spacing: -1px;
}
#pureText_stacks_in_2637.lineHeightOn, #pureText_stacks_in_2637.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2637.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2637.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2637 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2637 p.insideText,
#pureText_stacks_in_2637 .insideText p,
#pureText_stacks_in_2637 h1.insideText,
#pureText_stacks_in_2637 h2.insideText,
#pureText_stacks_in_2637 h3.insideText,
#pureText_stacks_in_2637 h4.insideText,
#pureText_stacks_in_2637 h5.insideText,
#pureText_stacks_in_2637 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2637 {
	padding: 0px 15px 0px 25px;
}

#stacks_in_2638 {
	font-size: 120%;
}
#stacks_in_2639 *,
#stacks_in_2639 *:before,
#stacks_in_2639 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_2639 {
	padding: 20px 0px 0px 32px;
}
#stacks_in_2640 .flat_button_2_alignment {
  font-size: 15px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: left;
}


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

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

  

}


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


#stacks_in_2640 a i,
#stacks_in_2640 a:visited i {
  font-size: 15px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 0, 0, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_2640 a,
  #stacks_in_2640 a:visited {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_2640 a:hover,
  #stacks_in_2640 a:active {
    background-color: rgba(76, 76, 76, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_2640 a i,
  #stacks_in_2640 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_2640 a:hover i,
  #stacks_in_2640 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }








  /* Fixed Width Mode */
  #stacks_in_2640 a,
  #stacks_in_2640 a:visited {
    width: 200px;
  }

  








#stacks_in_2641 .flat_button_2_alignment {
  font-size: 15px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: left;
}


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

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

  

}


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


#stacks_in_2641 a i,
#stacks_in_2641 a:visited i {
  font-size: 15px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 0, 0, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_2641 a,
  #stacks_in_2641 a:visited {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_2641 a:hover,
  #stacks_in_2641 a:active {
    background-color: rgba(76, 76, 76, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_2641 a i,
  #stacks_in_2641 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_2641 a:hover i,
  #stacks_in_2641 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }








  /* Fixed Width Mode */
  #stacks_in_2641 a,
  #stacks_in_2641 a:visited {
    width: 200px;
  }

  









#stacks_in_2641 {
	padding: 20px 0px 0px 0px;
}
#stacks_in_2642 *,
#stacks_in_2642 *:before,
#stacks_in_2642 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_2642 {
	padding: 50px 0px 0px 32px;
}
#stacks_in_2643 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_2643 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_2643 .fluid-image.unlimited img{width:100% !important}#stacks_in_2643 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_2643 .fluid-image.align-left img{float:left}#stacks_in_2643 .fluid-image.align-right img{float:right}

#stacks_in_2643 {
	padding: 0px 20px 0px 0px;
}
#stacks_in_2644 *,
#stacks_in_2644 *:before,
#stacks_in_2644 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2645 {
  overflow: visible;
}
#pureText_stacks_in_2645 .insideText {
  
    font-size: 15px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_2645 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2645 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2645 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2645 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2645.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2645.fontSizeInheritOff, #pureText_stacks_in_2645.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2645.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2645.lineHeightOn, #pureText_stacks_in_2645.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2645.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2645.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2645 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_2645 p.insideText,
#pureText_stacks_in_2645 .insideText p,
#pureText_stacks_in_2645 h1.insideText,
#pureText_stacks_in_2645 h2.insideText,
#pureText_stacks_in_2645 h3.insideText,
#pureText_stacks_in_2645 h4.insideText,
#pureText_stacks_in_2645 h5.insideText,
#pureText_stacks_in_2645 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2645 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_2646 {
	font-size: 120%;
}
#stacks_in_2647 *,
#stacks_in_2647 *:before,
#stacks_in_2647 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2648 {
  overflow: visible;
}
#pureText_stacks_in_2648 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_2648 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_2648 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_2648 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2648 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2648.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2648.fontSizeInheritOff, #pureText_stacks_in_2648.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_2648.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2648.lineHeightOn, #pureText_stacks_in_2648.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2648.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2648.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2648 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_2648 p.insideText,
#pureText_stacks_in_2648 .insideText p,
#pureText_stacks_in_2648 h1.insideText,
#pureText_stacks_in_2648 h2.insideText,
#pureText_stacks_in_2648 h3.insideText,
#pureText_stacks_in_2648 h4.insideText,
#pureText_stacks_in_2648 h5.insideText,
#pureText_stacks_in_2648 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2648 {
	padding: 10px 25px 0px 30px;
}

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

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


#stacks_in_23.aspen_split .max_width_wrap_content{
	max-width: 2000px;
	margin: 0 auto;
}

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

 
#stacks_in_23.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_23.aspen_split h1, 
#stacks_in_23.aspen_split h2,
#stacks_in_23.aspen_split h3, 
#stacks_in_23.aspen_split h4, 
#stacks_in_23.aspen_split h5, 
#stacks_in_23.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_23.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_23.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_12 {
	background-color: rgba(0, 0, 0, 1.00);
    background-image: url("3713B552-E972-4FBA-BB50-6D4A123FEC01.png");
	background-repeat: repeat;
	background-size: contain;
	background-position: center;
	padding: 5px 5px 5px 5px;
}
#stacks_in_52.vast_video_wrapper,
#stacks_in_52.vast_video_wrapper strong,
#stacks_in_52.vast_video_wrapper b,
#stacks_in_52.vast_video_wrapper h1,
#stacks_in_52.vast_video_wrapper h2,
#stacks_in_52.vast_video_wrapper h3,
#stacks_in_52.vast_video_wrapper h4,
#stacks_in_52.vast_video_wrapper h5,
#stacks_in_52.vast_video_wrapper h6{
	color: rgba(255, 255, 255, 1.00);
}
#stacks_in_52 .vast_video_player,
#stacks_in_52.vast_video_wrapper .vast_video_background {
	filter: blur(0px);
}
#stacks_in_52 .vast_video_tint,
#stacks_in_52 .vast_video_player,
#stacks_in_52.vast_video_wrapper,
#stacks_in_52.vast_video_wrapper:before{
  border-radius: 0px;
}
#stacks_in_52.vast_video_wrapper a{
	color: rgba(52, 188, 255, 1.00);
}
#stacks_in_52.vast_video_wrapper a:hover{
	color: rgba(95, 211, 255, 1.00);
}

#stacks_in_52 .vast_video_slice{
  
	max-width: 2000px;
}
#stacks_in_52 .vast_video_player{
	opacity: 1;
	width: 100% !important;
  
  height: auto !important;
  float: left;
  
}

/* Align Top */



/* Align Middle */


	#stacks_in_52 .vast_video_slice{ flex-direction: column; }


/* Align Bottom */

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

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


#stacks_in_2376.aspen_split .max_width_wrap_content{
	max-width: 2800px;
	margin: 0 auto;
}

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

 
#stacks_in_2376.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_2376.aspen_split h1, 
#stacks_in_2376.aspen_split h2,
#stacks_in_2376.aspen_split h3, 
#stacks_in_2376.aspen_split h4, 
#stacks_in_2376.aspen_split h5, 
#stacks_in_2376.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_2376.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_2376.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_2378 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_2378.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_2378.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_2378.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_2378.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_2378.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_2378.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_2378.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_2378.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_2378.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_2378.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_2378.RC4_LF.RC4_Goff, .stacks_in_2378.RC4_LL.RC4_Goff, .stacks_in_2378.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2378.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2378.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_2378.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_2378.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_2378.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_2378.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_2378.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2378.RC5_LF.RC5_Goff, .stacks_in_2378.RC5_LL.RC5_Goff, .stacks_in_2378.RC5_RF.RC5_Goff, .stacks_in_2378.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2378.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2378.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2378.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_2378.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_2378.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_2378.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_2378.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2378.RC6_LF.RC6_Goff,
.stacks_in_2378.RC6_LL.RC6_Goff,
.stacks_in_2378.RC6_RF.RC6_Goff,
.stacks_in_2378.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2378.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2378.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_2378.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_2378.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_2378.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_2378.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_2378.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_2378.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2378.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2378.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_2378.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2378.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_2378.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2378.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_2378.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_2378.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_2378.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2378.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2378.RC3_R.RespCol1,
  .stacks_in_2378.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2378.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2378.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2378.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2378.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_2378.RC3_L,
  .stacks_in_2378.RC3_R.RespCol2,
  .stacks_in_2378.RC3_R,
  .stacks_in_2378.RC3_R.RespCol1,
  .stacks_in_2378.RC3_RS.RespCol2,
  .stacks_in_2378.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_2378.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_2378.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2378.RC4_L {
  float: left;
}
.stacks_in_2378.RC4_R {
  float: left;
}
.stacks_in_2378.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_2378.RC4_S {
  width: 23.6%;
}
.stacks_in_2378.RC4_LF,
.stacks_in_2378.RC4_LL,
.stacks_in_2378.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_2378.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_2378.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_2378.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2378.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2378.RC4_S {
    width: 49%;
  }
  .stacks_in_2378.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2378.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2378.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2378.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2378.RC4_R {
    float:left;
  }
  .stacks_in_2378.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2378.RC4_S.RC4_Goff,
  .stacks_in_2378.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2378.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2378.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2378.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2378.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_2378.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC4_S.RC4_Goff,
  .stacks_in_2378.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2378.RC5_L {
  float: left;
}
.stacks_in_2378.RC5_R {
  float: left;
}
.stacks_in_2378.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_2378.RC5_S {
  width: 18.4%;
}
.stacks_in_2378.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2378.RC5_LF,
.stacks_in_2378.RC5_LL,
.stacks_in_2378.RC5_RF,
.stacks_in_2378.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2378.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_2378.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_2378.RC5, .stacks_in_2378.RC5_S {
    width: 49%;
  }
  .stacks_in_2378.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2378.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2378.RC5.RespColone5_Last,
  .stacks_in_2378.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2378.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2378.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2378.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RespColone5_Last.RC5_Goff,
  .stacks_in_2378.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2378.RC5.RespCol2,
  .stacks_in_2378.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_2378.RC5_LF.RespCol2,
  .stacks_in_2378.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2378.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2378.RC5.RespColone5_First.RespCol2,
  .stacks_in_2378.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2378.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2378.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_2378.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2378.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_2378.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_2378.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_2378.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_2378.RC5.RC5_LL.RespCol2,
  .stacks_in_2378.RC5.RC5_LF.RespCol2,
  .stacks_in_2378.RC5.RC5_LL.RespCol1,
  .stacks_in_2378.RC5.RC5_LF.RespCol1,
  .stacks_in_2378.RC5_S.RC5_LL.RespCol2,
  .stacks_in_2378.RC5_S.RC5_LF.RespCol2,
  .stacks_in_2378.RC5_S.RC5_LL.RespCol1,
  .stacks_in_2378.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC5.RC5_Goff,
  .stacks_in_2378.RC5_S.RC5_Goff,
  .stacks_in_2378.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2378.RC6_L,
.stacks_in_2378.RC6_L1 {
  float: left;
}
.stacks_in_2378.RC6_R,
.stacks_in_2378.RC6_R1 {
  float: left;
}
.stacks_in_2378.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_2378.RC6_S {
  width: 15.2%;
}
.stacks_in_2378.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2378.RC6_LF,
.stacks_in_2378.RC6_LL,
.stacks_in_2378.RC6_RF,
.stacks_in_2378.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_2378.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_2378.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_2378.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2378.RC6,
  .stacks_in_2378.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2378.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2378.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2378.RC6.RC6_Goff,
  .stacks_in_2378.RC6_S.RC6_Goff,
  .stacks_in_2378.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_2378.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_2378.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2378.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_2378.RC6,
  .stacks_in_2378.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_2378 {
	background-color: rgba(107, 110, 2, 1.00);
	padding: 50px 0px 50px 0px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2380 {
  overflow: visible;
}
#pureText_stacks_in_2380 .insideText {
  
    font-size: 18px;
  
  
  
  
}













#pureText_stacks_in_2380 a {
  color: #0078E7 !important;
  text-decoration: none;
}
#pureText_stacks_in_2380 a:hover {
  color: #44BBFB !important;
}
/*
#pureText_stacks_in_2380 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2380 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2380.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2380.fontSizeInheritOff, #pureText_stacks_in_2380.fontSizeInheritOff span {
  font-size: 18px !important;
  line-height: 18px;
}
#pureText_stacks_in_2380.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2380.lineHeightOn, #pureText_stacks_in_2380.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2380.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2380.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2380 .insideText {
  font-weight: normal;
}

*/

#pureText_stacks_in_2380 p.insideText,
#pureText_stacks_in_2380 .insideText p,
#pureText_stacks_in_2380 h1.insideText,
#pureText_stacks_in_2380 h2.insideText,
#pureText_stacks_in_2380 h3.insideText,
#pureText_stacks_in_2380 h4.insideText,
#pureText_stacks_in_2380 h5.insideText,
#pureText_stacks_in_2380 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2380 {
	padding: 0px 0px 20px 0px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2382 {
  overflow: visible;
}
#pureText_stacks_in_2382 .insideText {
  
  
  
  
}













#pureText_stacks_in_2382 a {
  color: #0078E7 !important;
  text-decoration: none;
}
#pureText_stacks_in_2382 a:hover {
  color: #44BBFB !important;
}
/*
#pureText_stacks_in_2382 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2382 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2382.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2382.fontSizeInheritOff, #pureText_stacks_in_2382.fontSizeInheritOff span {
  font-size: 16px !important;
  line-height: 16px;
}
#pureText_stacks_in_2382.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2382.lineHeightOn, #pureText_stacks_in_2382.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2382.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2382.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2382 .insideText {
  font-weight: normal;
}

*/

#pureText_stacks_in_2382 p.insideText,
#pureText_stacks_in_2382 .insideText p,
#pureText_stacks_in_2382 h1.insideText,
#pureText_stacks_in_2382 h2.insideText,
#pureText_stacks_in_2382 h3.insideText,
#pureText_stacks_in_2382 h4.insideText,
#pureText_stacks_in_2382 h5.insideText,
#pureText_stacks_in_2382 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2382 {
	padding: 0px 0px 10px 0px;
}
#stacks_in_2593 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


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

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

  

}


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


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

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_2593 a,
  #stacks_in_2593 a:visited {
    background-color: rgba(48, 117, 214, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_2593 a:hover,
  #stacks_in_2593 a:active {
    background-color: rgba(38, 94, 204, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_2593 a i,
  #stacks_in_2593 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_2593 a:hover i,
  #stacks_in_2593 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












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

  





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

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


#stacks_in_1533.aspen_split .max_width_wrap_content{
	max-width: 2000px;
	margin: 0 auto;
}

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

 
#stacks_in_1533.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1533.aspen_split h1, 
#stacks_in_1533.aspen_split h2,
#stacks_in_1533.aspen_split h3, 
#stacks_in_1533.aspen_split h4, 
#stacks_in_1533.aspen_split h5, 
#stacks_in_1533.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_1533.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1533.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}
#stacks_in_1603 {
	background-color: rgba(0, 0, 0, 1.00);
    background-image: url("3713B552-E972-4FBA-BB50-6D4A123FEC01.png");
	background-repeat: repeat;
	background-size: contain;
	background-position: center;
	padding: 5px 5px 5px 5px;
}
#stacks_in_1562.aspen_split{
	position: relative;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1562.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_1562.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1562.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_1562.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.3;
	
	
}

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


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

 
#stacks_in_1562.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1562.aspen_split h1, 
#stacks_in_1562.aspen_split h2,
#stacks_in_1562.aspen_split h3, 
#stacks_in_1562.aspen_split h4, 
#stacks_in_1562.aspen_split h5, 
#stacks_in_1562.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_1562.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1562.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_1564 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_1564.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_1564.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_1564.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_1564.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_1564.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_1564.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_1564.RC3_M.RC3_Goff {
  margin: 0 0% 0px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_1564.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_1564.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_1564.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_1564.RC4_LF.RC4_Goff, .stacks_in_1564.RC4_LL.RC4_Goff, .stacks_in_1564.RC4_LF2.RC4_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_1564.RC4_LF.RC4_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_1564.RC4_LL2.RC4_Goff {
  margin: 0 0 0px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_1564.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_1564.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_1564.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_1564.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_1564.RC5_M.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_1564.RC5_LF.RC5_Goff, .stacks_in_1564.RC5_LL.RC5_Goff, .stacks_in_1564.RC5_RF.RC5_Goff, .stacks_in_1564.RC5_RL.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_1564.RespColone5_First.RC5_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_1564.RespColone5_Last.RC5_Goff {
  margin: 0 0 0px 0;
}

/****************  6 Non ******************/

.stacks_in_1564.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_1564.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_1564.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_1564.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_1564.RC6_M.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_1564.RC6_LF.RC6_Goff,
.stacks_in_1564.RC6_LL.RC6_Goff,
.stacks_in_1564.RC6_RF.RC6_Goff,
.stacks_in_1564.RC6_RL.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_1564.RC6_L1.RC6_Goff {
  margin: 0 0 0px 0;
}
.stacks_in_1564.RC6_R1.RC6_Goff {
  margin: 0 0 0px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_1564.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_1564.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_1564.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 0px 0;
}

.stacks_in_1564.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_1564.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_1564.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 950px) {

}
@media (max-width: 600px) {
  .stacks_in_1564.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_1564.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 0px 0;
}
.stacks_in_1564.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 0px 0;
}
@media (max-width: 950px) {

}
@media (max-width: 600px) {
  .stacks_in_1564.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 0px 0;
  }
  .stacks_in_1564.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_1564.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 0px 0;

}
.stacks_in_1564.RC3_M {
  float: left;
  margin: 0 2% 0px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_1564.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 0px 0;
}

@media (max-width: 950px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_1564.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 0px 0;
  }
  .stacks_in_1564.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 0px 1%;
  }
  .stacks_in_1564.RC3_R.RespCol1,
  .stacks_in_1564.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1564.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 0px 0;
  }
  .stacks_in_1564.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 0px 1%;
  }
  .stacks_in_1564.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 0px 1%;
  }
  .stacks_in_1564.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_1564.RC3_L,
  .stacks_in_1564.RC3_R.RespCol2,
  .stacks_in_1564.RC3_R,
  .stacks_in_1564.RC3_R.RespCol1,
  .stacks_in_1564.RC3_RS.RespCol2,
  .stacks_in_1564.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 0px 0!important;
  }
  .stacks_in_1564.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 0px 0!important;
  }
  .stacks_in_1564.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 0px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_1564.RC4_L {
  float: left;
}
.stacks_in_1564.RC4_R {
  float: left;
}
.stacks_in_1564.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_1564.RC4_S {
  width: 23.6%;
}
.stacks_in_1564.RC4_LF,
.stacks_in_1564.RC4_LL,
.stacks_in_1564.RC4_LF2 {
  margin: 0 1% 0px 1%;
}
.stacks_in_1564.RC4_LF {
  margin: 0 1% 0px 0;
}
.stacks_in_1564.RC4_LL2 {
  margin: 0 0 0px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_1564.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 950px) {
  .stacks_in_1564.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1564.RC4_S {
    width: 49%;
  }
  .stacks_in_1564.RC4_LF {
    float: left;
    margin: 0 1% 0px 0 ;
  }
  .stacks_in_1564.RC4_LL {
    float: left;
    margin: 0 0 0px 1% ;
  }
  .stacks_in_1564.RC4_LF2 {
    float: left;
    margin: 0 1% 0px 0 ;
  }
  .stacks_in_1564.RC4_LL2 {
    float: left;
    margin: 0 0 0px 1% ;
  }
  .stacks_in_1564.RC4_R {
    float:left;
  }
  .stacks_in_1564.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1564.RC4_S.RC4_Goff,
  .stacks_in_1564.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1564.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_1564.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_1564.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_1564.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_1564.RC4 {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC4_S {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC4_S.RC4_Goff,
  .stacks_in_1564.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 0px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_1564.RC5_L {
  float: left;
}
.stacks_in_1564.RC5_R {
  float: left;
}
.stacks_in_1564.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_1564.RC5_S {
  width: 18.4%;
}
.stacks_in_1564.RC5_M {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_1564.RC5_LF,
.stacks_in_1564.RC5_LL,
.stacks_in_1564.RC5_RF,
.stacks_in_1564.RC5_RL {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_1564.RespColone5_First {
  margin: 0 1% 0px 0;
}
.stacks_in_1564.RespColone5_Last {
  float:left;
  margin: 0 0 0px 1%;
}
@media (max-width: 950px) {
  .stacks_in_1564.RC5, .stacks_in_1564.RC5_S {
    width: 49%;
  }
  .stacks_in_1564.RC5_LF {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_1564.RC5_LL {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_1564.RC5.RespColone5_Last,
  .stacks_in_1564.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 0px auto;
  }
  .stacks_in_1564.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1564.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1564.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RespColone5_Last.RC5_Goff,
  .stacks_in_1564.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 0px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1564.RC5.RespCol2,
  .stacks_in_1564.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_1564.RC5_LF.RespCol2,
  .stacks_in_1564.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_1564.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_1564.RC5.RespColone5_First.RespCol2,
  .stacks_in_1564.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 0px auto;
  }
  .stacks_in_1564.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1564.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_1564.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1564.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_1564.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;

  }
  .stacks_in_1564.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_1564.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 0px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_1564.RC5.RC5_LL.RespCol2,
  .stacks_in_1564.RC5.RC5_LF.RespCol2,
  .stacks_in_1564.RC5.RC5_LL.RespCol1,
  .stacks_in_1564.RC5.RC5_LF.RespCol1,
  .stacks_in_1564.RC5_S.RC5_LL.RespCol2,
  .stacks_in_1564.RC5_S.RC5_LF.RespCol2,
  .stacks_in_1564.RC5_S.RC5_LL.RespCol1,
  .stacks_in_1564.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC5.RC5_Goff,
  .stacks_in_1564.RC5_S.RC5_Goff,
  .stacks_in_1564.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 0px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_1564.RC6_L,
.stacks_in_1564.RC6_L1 {
  float: left;
}
.stacks_in_1564.RC6_R,
.stacks_in_1564.RC6_R1 {
  float: left;
}
.stacks_in_1564.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_1564.RC6_S {
  width: 15.2%;
}
.stacks_in_1564.RC6_M {
  float: left;
  margin: 0 1% 0px 1%;
}
.stacks_in_1564.RC6_LF,
.stacks_in_1564.RC6_LL,
.stacks_in_1564.RC6_RF,
.stacks_in_1564.RC6_RL {
  margin: 0 1% 0px 1%;
}
.stacks_in_1564.RC6_L1 {
  margin: 0 1% 0px 0;
}
.stacks_in_1564.RC6_R1 {
  margin: 0 0 0px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_1564.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 950px) {
  .stacks_in_1564.RC6,
  .stacks_in_1564.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1564.RC6_LF {
    float: left;
    margin: 0 1% 0px 0;
  }
  .stacks_in_1564.RC6_LL {
    float: left;
    margin: 0 0 0px 1%;
  }
  .stacks_in_1564.RC6.RC6_Goff,
  .stacks_in_1564.RC6_S.RC6_Goff,
  .stacks_in_1564.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_1564.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_1564.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
  .stacks_in_1564.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 0px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_1564.RC6,
  .stacks_in_1564.RC6_S {
    width: 100% !important;
    margin: 0 0 0px 0 !important;
  }
}

#stacks_in_1564 {
	padding: 50px 0px 0px 0px;
}
#stacks_in_1566 *,
#stacks_in_1566 *:before,
#stacks_in_1566 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1566 {
	padding: 0px 0px 0px 10px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1568 {
  overflow: visible;
}
#pureText_stacks_in_1568 .insideText {
  
    font-size: 14px;
  
  
  
  letter-spacing: 1px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1568 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_1568 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_1568 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1568 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1568.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1568.fontSizeInheritOff, #pureText_stacks_in_1568.fontSizeInheritOff span {
  font-size: 14px !important;
  line-height: 14px;
}
#pureText_stacks_in_1568.letterSpacingOn {
  letter-spacing: 1px;
}
#pureText_stacks_in_1568.lineHeightOn, #pureText_stacks_in_1568.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1568.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1568.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1568 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1568 p.insideText,
#pureText_stacks_in_1568 .insideText p,
#pureText_stacks_in_1568 h1.insideText,
#pureText_stacks_in_1568 h2.insideText,
#pureText_stacks_in_1568 h3.insideText,
#pureText_stacks_in_1568 h4.insideText,
#pureText_stacks_in_1568 h5.insideText,
#pureText_stacks_in_1568 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1568 {
	padding: 10px 15px 0px 25px;
}

#stacks_in_1569 {
	font-size: 120%;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1570 {
  overflow: visible;
}
#pureText_stacks_in_1570 .insideText {
  
    font-size: 14px;
  
  
  
  letter-spacing: -1px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1570 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_1570 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_1570 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1570 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1570.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1570.fontSizeInheritOff, #pureText_stacks_in_1570.fontSizeInheritOff span {
  font-size: 14px !important;
  line-height: 14px;
}
#pureText_stacks_in_1570.letterSpacingOn {
  letter-spacing: -1px;
}
#pureText_stacks_in_1570.lineHeightOn, #pureText_stacks_in_1570.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1570.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1570.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1570 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1570 p.insideText,
#pureText_stacks_in_1570 .insideText p,
#pureText_stacks_in_1570 h1.insideText,
#pureText_stacks_in_1570 h2.insideText,
#pureText_stacks_in_1570 h3.insideText,
#pureText_stacks_in_1570 h4.insideText,
#pureText_stacks_in_1570 h5.insideText,
#pureText_stacks_in_1570 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1570 {
	padding: 0px 15px 0px 25px;
}

#stacks_in_1571 {
	font-size: 120%;
}
#stacks_in_1572 *,
#stacks_in_1572 *:before,
#stacks_in_1572 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1572 {
	padding: 20px 0px 0px 32px;
}
#stacks_in_1574 .flat_button_2_alignment {
  font-size: 15px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: left;
}


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

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

  

}


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


#stacks_in_1574 a i,
#stacks_in_1574 a:visited i {
  font-size: 15px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 0, 0, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_1574 a,
  #stacks_in_1574 a:visited {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1574 a:hover,
  #stacks_in_1574 a:active {
    background-color: rgba(76, 76, 76, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1574 a i,
  #stacks_in_1574 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_1574 a:hover i,
  #stacks_in_1574 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }








  /* Fixed Width Mode */
  #stacks_in_1574 a,
  #stacks_in_1574 a:visited {
    width: 200px;
  }

  








#stacks_in_1575 .flat_button_2_alignment {
  font-size: 15px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: left;
}


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

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

  

}


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


#stacks_in_1575 a i,
#stacks_in_1575 a:visited i {
  font-size: 15px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 0, 0, 1.00);
      
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_1575 a,
  #stacks_in_1575 a:visited {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1575 a:hover,
  #stacks_in_1575 a:active {
    background-color: rgba(76, 76, 76, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_1575 a i,
  #stacks_in_1575 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_1575 a:hover i,
  #stacks_in_1575 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }








  /* Fixed Width Mode */
  #stacks_in_1575 a,
  #stacks_in_1575 a:visited {
    width: 200px;
  }

  









#stacks_in_1575 {
	padding: 20px 0px 0px 0px;
}
#stacks_in_1576 *,
#stacks_in_1576 *:before,
#stacks_in_1576 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1576 {
	padding: 50px 0px 0px 32px;
}
#stacks_in_1578 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1578 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1578 .fluid-image.unlimited img{width:100% !important}#stacks_in_1578 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1578 .fluid-image.align-left img{float:left}#stacks_in_1578 .fluid-image.align-right img{float:right}

#stacks_in_1578 {
	padding: 0px 20px 0px 0px;
}
#stacks_in_1581 *,
#stacks_in_1581 *:before,
#stacks_in_1581 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1583 {
  overflow: visible;
}
#pureText_stacks_in_1583 .insideText {
  
    font-size: 15px;
  
  
  
  letter-spacing: 0px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1583 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_1583 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_1583 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1583 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1583.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1583.fontSizeInheritOff, #pureText_stacks_in_1583.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_1583.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_1583.lineHeightOn, #pureText_stacks_in_1583.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1583.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1583.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1583 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1583 p.insideText,
#pureText_stacks_in_1583 .insideText p,
#pureText_stacks_in_1583 h1.insideText,
#pureText_stacks_in_1583 h2.insideText,
#pureText_stacks_in_1583 h3.insideText,
#pureText_stacks_in_1583 h4.insideText,
#pureText_stacks_in_1583 h5.insideText,
#pureText_stacks_in_1583 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1583 {
	padding: 20px 15px 0px 28px;
}

#stacks_in_1584 {
	font-size: 120%;
}
#stacks_in_1585 *,
#stacks_in_1585 *:before,
#stacks_in_1585 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1587 {
  overflow: visible;
}
#pureText_stacks_in_1587 .insideText {
  
    font-size: 15px;
  
  
  
  
  font-weight: 300;
  
}













#pureText_stacks_in_1587 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_1587 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_1587 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1587 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1587.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1587.fontSizeInheritOff, #pureText_stacks_in_1587.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_1587.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_1587.lineHeightOn, #pureText_stacks_in_1587.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1587.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1587.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1587 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_1587 p.insideText,
#pureText_stacks_in_1587 .insideText p,
#pureText_stacks_in_1587 h1.insideText,
#pureText_stacks_in_1587 h2.insideText,
#pureText_stacks_in_1587 h3.insideText,
#pureText_stacks_in_1587 h4.insideText,
#pureText_stacks_in_1587 h5.insideText,
#pureText_stacks_in_1587 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1587 {
	padding: 10px 25px 0px 30px;
}

#stacks_in_1588 {
	word-spacing: -1px;
}
#stacks_in_1589 *,
#stacks_in_1589 *:before,
#stacks_in_1589 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1591 {
  overflow: visible;
}
#pureText_stacks_in_1591 .insideText {
  
  
  
  
}













#pureText_stacks_in_1591 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_1591 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_1591 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1591 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1591.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1591.fontSizeInheritOff, #pureText_stacks_in_1591.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_1591.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_1591.lineHeightOn, #pureText_stacks_in_1591.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1591.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1591.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1591 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_1591 p.insideText,
#pureText_stacks_in_1591 .insideText p,
#pureText_stacks_in_1591 h1.insideText,
#pureText_stacks_in_1591 h2.insideText,
#pureText_stacks_in_1591 h3.insideText,
#pureText_stacks_in_1591 h4.insideText,
#pureText_stacks_in_1591 h5.insideText,
#pureText_stacks_in_1591 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1591 {
	padding: 10px 25px 0px 35px;
}

#stacks_in_1592 {
	word-spacing: -1px;
}
#stacks_in_1593 *,
#stacks_in_1593 *:before,
#stacks_in_1593 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1595 {
  overflow: visible;
}
#pureText_stacks_in_1595 .insideText {
  
  
  
  
}













#pureText_stacks_in_1595 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_1595 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_1595 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1595 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1595.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1595.fontSizeInheritOff, #pureText_stacks_in_1595.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_1595.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_1595.lineHeightOn, #pureText_stacks_in_1595.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1595.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1595.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1595 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_1595 p.insideText,
#pureText_stacks_in_1595 .insideText p,
#pureText_stacks_in_1595 h1.insideText,
#pureText_stacks_in_1595 h2.insideText,
#pureText_stacks_in_1595 h3.insideText,
#pureText_stacks_in_1595 h4.insideText,
#pureText_stacks_in_1595 h5.insideText,
#pureText_stacks_in_1595 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1595 {
	padding: 10px 25px 0px 35px;
}

#stacks_in_1596 {
	word-spacing: -1px;
}
#stacks_in_1597 *,
#stacks_in_1597 *:before,
#stacks_in_1597 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1597 {
	padding: 0px 0px 40px 0px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1599 {
  overflow: visible;
}
#pureText_stacks_in_1599 .insideText {
  
  
  
  
}













#pureText_stacks_in_1599 a {
  color: #000000 !important;
  text-decoration: none;
}
#pureText_stacks_in_1599 a:hover {
  color: #666666 !important;
}
/*
#pureText_stacks_in_1599 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1599 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1599.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1599.fontSizeInheritOff, #pureText_stacks_in_1599.fontSizeInheritOff span {
  font-size: 15px !important;
  line-height: 15px;
}
#pureText_stacks_in_1599.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_1599.lineHeightOn, #pureText_stacks_in_1599.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1599.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1599.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1599 .insideText {
  font-weight: 300;
}

*/

#pureText_stacks_in_1599 p.insideText,
#pureText_stacks_in_1599 .insideText p,
#pureText_stacks_in_1599 h1.insideText,
#pureText_stacks_in_1599 h2.insideText,
#pureText_stacks_in_1599 h3.insideText,
#pureText_stacks_in_1599 h4.insideText,
#pureText_stacks_in_1599 h5.insideText,
#pureText_stacks_in_1599 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1599 {
	padding: 10px 25px 0px 35px;
}

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

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


#stacks_in_2865.aspen_split .max_width_wrap_content{
	max-width: 2800px;
	margin: 0 auto;
}

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

 
#stacks_in_2865.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_2865.aspen_split h1, 
#stacks_in_2865.aspen_split h2,
#stacks_in_2865.aspen_split h3, 
#stacks_in_2865.aspen_split h4, 
#stacks_in_2865.aspen_split h5, 
#stacks_in_2865.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_2865.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_2865.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_2867 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_2867.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_2867.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_2867.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_2867.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_2867.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_2867.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_2867.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_2867.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_2867.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_2867.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_2867.RC4_LF.RC4_Goff, .stacks_in_2867.RC4_LL.RC4_Goff, .stacks_in_2867.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2867.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2867.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_2867.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_2867.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_2867.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_2867.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_2867.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2867.RC5_LF.RC5_Goff, .stacks_in_2867.RC5_LL.RC5_Goff, .stacks_in_2867.RC5_RF.RC5_Goff, .stacks_in_2867.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2867.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2867.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2867.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_2867.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_2867.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_2867.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_2867.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2867.RC6_LF.RC6_Goff,
.stacks_in_2867.RC6_LL.RC6_Goff,
.stacks_in_2867.RC6_RF.RC6_Goff,
.stacks_in_2867.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2867.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2867.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_2867.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_2867.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_2867.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_2867.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_2867.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_2867.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2867.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2867.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_2867.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2867.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_2867.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2867.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_2867.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_2867.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_2867.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2867.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2867.RC3_R.RespCol1,
  .stacks_in_2867.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2867.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2867.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2867.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2867.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_2867.RC3_L,
  .stacks_in_2867.RC3_R.RespCol2,
  .stacks_in_2867.RC3_R,
  .stacks_in_2867.RC3_R.RespCol1,
  .stacks_in_2867.RC3_RS.RespCol2,
  .stacks_in_2867.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_2867.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_2867.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2867.RC4_L {
  float: left;
}
.stacks_in_2867.RC4_R {
  float: left;
}
.stacks_in_2867.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_2867.RC4_S {
  width: 23.6%;
}
.stacks_in_2867.RC4_LF,
.stacks_in_2867.RC4_LL,
.stacks_in_2867.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_2867.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_2867.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_2867.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2867.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2867.RC4_S {
    width: 49%;
  }
  .stacks_in_2867.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2867.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2867.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2867.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2867.RC4_R {
    float:left;
  }
  .stacks_in_2867.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2867.RC4_S.RC4_Goff,
  .stacks_in_2867.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2867.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2867.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2867.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2867.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_2867.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC4_S.RC4_Goff,
  .stacks_in_2867.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2867.RC5_L {
  float: left;
}
.stacks_in_2867.RC5_R {
  float: left;
}
.stacks_in_2867.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_2867.RC5_S {
  width: 18.4%;
}
.stacks_in_2867.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2867.RC5_LF,
.stacks_in_2867.RC5_LL,
.stacks_in_2867.RC5_RF,
.stacks_in_2867.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2867.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_2867.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_2867.RC5, .stacks_in_2867.RC5_S {
    width: 49%;
  }
  .stacks_in_2867.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2867.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2867.RC5.RespColone5_Last,
  .stacks_in_2867.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2867.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2867.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2867.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RespColone5_Last.RC5_Goff,
  .stacks_in_2867.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2867.RC5.RespCol2,
  .stacks_in_2867.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_2867.RC5_LF.RespCol2,
  .stacks_in_2867.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2867.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2867.RC5.RespColone5_First.RespCol2,
  .stacks_in_2867.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2867.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2867.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_2867.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2867.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_2867.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_2867.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_2867.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_2867.RC5.RC5_LL.RespCol2,
  .stacks_in_2867.RC5.RC5_LF.RespCol2,
  .stacks_in_2867.RC5.RC5_LL.RespCol1,
  .stacks_in_2867.RC5.RC5_LF.RespCol1,
  .stacks_in_2867.RC5_S.RC5_LL.RespCol2,
  .stacks_in_2867.RC5_S.RC5_LF.RespCol2,
  .stacks_in_2867.RC5_S.RC5_LL.RespCol1,
  .stacks_in_2867.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC5.RC5_Goff,
  .stacks_in_2867.RC5_S.RC5_Goff,
  .stacks_in_2867.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2867.RC6_L,
.stacks_in_2867.RC6_L1 {
  float: left;
}
.stacks_in_2867.RC6_R,
.stacks_in_2867.RC6_R1 {
  float: left;
}
.stacks_in_2867.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_2867.RC6_S {
  width: 15.2%;
}
.stacks_in_2867.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2867.RC6_LF,
.stacks_in_2867.RC6_LL,
.stacks_in_2867.RC6_RF,
.stacks_in_2867.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_2867.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_2867.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_2867.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2867.RC6,
  .stacks_in_2867.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2867.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2867.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2867.RC6.RC6_Goff,
  .stacks_in_2867.RC6_S.RC6_Goff,
  .stacks_in_2867.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_2867.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_2867.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2867.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_2867.RC6,
  .stacks_in_2867.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_2867 {
	background-color: rgba(107, 110, 2, 1.00);
	padding: 50px 0px 50px 0px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2869 {
  overflow: visible;
}
#pureText_stacks_in_2869 .insideText {
  
    font-size: 18px;
  
  
  
  
}













#pureText_stacks_in_2869 a {
  color: #0078E7 !important;
  text-decoration: none;
}
#pureText_stacks_in_2869 a:hover {
  color: #44BBFB !important;
}
/*
#pureText_stacks_in_2869 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2869 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2869.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2869.fontSizeInheritOff, #pureText_stacks_in_2869.fontSizeInheritOff span {
  font-size: 18px !important;
  line-height: 18px;
}
#pureText_stacks_in_2869.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2869.lineHeightOn, #pureText_stacks_in_2869.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2869.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2869.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2869 .insideText {
  font-weight: normal;
}

*/

#pureText_stacks_in_2869 p.insideText,
#pureText_stacks_in_2869 .insideText p,
#pureText_stacks_in_2869 h1.insideText,
#pureText_stacks_in_2869 h2.insideText,
#pureText_stacks_in_2869 h3.insideText,
#pureText_stacks_in_2869 h4.insideText,
#pureText_stacks_in_2869 h5.insideText,
#pureText_stacks_in_2869 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2869 {
	padding: 0px 0px 20px 0px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_2871 {
  overflow: visible;
}
#pureText_stacks_in_2871 .insideText {
  
  
  
  
}













#pureText_stacks_in_2871 a {
  color: #0078E7 !important;
  text-decoration: none;
}
#pureText_stacks_in_2871 a:hover {
  color: #44BBFB !important;
}
/*
#pureText_stacks_in_2871 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_2871 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_2871.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_2871.fontSizeInheritOff, #pureText_stacks_in_2871.fontSizeInheritOff span {
  font-size: 16px !important;
  line-height: 16px;
}
#pureText_stacks_in_2871.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_2871.lineHeightOn, #pureText_stacks_in_2871.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_2871.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_2871.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_2871 .insideText {
  font-weight: normal;
}

*/

#pureText_stacks_in_2871 p.insideText,
#pureText_stacks_in_2871 .insideText p,
#pureText_stacks_in_2871 h1.insideText,
#pureText_stacks_in_2871 h2.insideText,
#pureText_stacks_in_2871 h3.insideText,
#pureText_stacks_in_2871 h4.insideText,
#pureText_stacks_in_2871 h5.insideText,
#pureText_stacks_in_2871 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_2871 {
	padding: 0px 0px 10px 0px;
}
#stacks_in_2873 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


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

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

  

}


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


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

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_2873 a,
  #stacks_in_2873 a:visited {
    background-color: rgba(48, 117, 214, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_2873 a:hover,
  #stacks_in_2873 a:active {
    background-color: rgba(38, 94, 204, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_2873 a i,
  #stacks_in_2873 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_2873 a:hover i,
  #stacks_in_2873 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












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

  





#stacks_in_2873 {
	padding: 20px 0px 0px 0px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_1601shim{	padding-top: 5%;}/* End Responsive Shim stack CSS code */#stacks_in_1021_1.aspen_split{
	position: relative;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1021_1.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_1021_1.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1021_1.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_1021_1.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.0;
	
	
}


#stacks_in_1021_1.aspen_split .max_width_wrap_content{
	max-width: 3300px;
	margin: 0 auto;
}

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

 
#stacks_in_1021_1.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1021_1.aspen_split h1, 
#stacks_in_1021_1.aspen_split h2,
#stacks_in_1021_1.aspen_split h3, 
#stacks_in_1021_1.aspen_split h4, 
#stacks_in_1021_1.aspen_split h5, 
#stacks_in_1021_1.aspen_split h6{color: rgba(51, 51, 51, 1.00);} 
#stacks_in_1021_1.aspen_split a{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1021_1.aspen_split a:hover{color: rgba(0, 0, 0, 1.00);}/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_1021_298 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_1021_298.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_1021_298.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_1021_298.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_1021_298.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_1021_298.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_1021_298.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_1021_298.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_1021_298.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_1021_298.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_1021_298.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_1021_298.RC4_LF.RC4_Goff, .stacks_in_1021_298.RC4_LL.RC4_Goff, .stacks_in_1021_298.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_1021_298.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_1021_298.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_1021_298.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_1021_298.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_1021_298.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC5_LF.RC5_Goff, .stacks_in_1021_298.RC5_LL.RC5_Goff, .stacks_in_1021_298.RC5_RF.RC5_Goff, .stacks_in_1021_298.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_1021_298.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_1021_298.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_1021_298.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_1021_298.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_1021_298.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC6_LF.RC6_Goff,
.stacks_in_1021_298.RC6_LL.RC6_Goff,
.stacks_in_1021_298.RC6_RF.RC6_Goff,
.stacks_in_1021_298.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_1021_298.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_1021_298.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_1021_298.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_1021_298.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_1021_298.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_1021_298.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_1021_298.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_1021_298.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_1021_298.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_1021_298.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_1021_298.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_1021_298.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_1021_298.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_1021_298.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_1021_298.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC3_R.RespCol1,
  .stacks_in_1021_298.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1021_298.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_1021_298.RC3_L,
  .stacks_in_1021_298.RC3_R.RespCol2,
  .stacks_in_1021_298.RC3_R,
  .stacks_in_1021_298.RC3_R.RespCol1,
  .stacks_in_1021_298.RC3_RS.RespCol2,
  .stacks_in_1021_298.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_1021_298.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_1021_298.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_1021_298.RC4_L {
  float: left;
}
.stacks_in_1021_298.RC4_R {
  float: left;
}
.stacks_in_1021_298.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_1021_298.RC4_S {
  width: 23.6%;
}
.stacks_in_1021_298.RC4_LF,
.stacks_in_1021_298.RC4_LL,
.stacks_in_1021_298.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_1021_298.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_1021_298.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_1021_298.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1021_298.RC4_S {
    width: 49%;
  }
  .stacks_in_1021_298.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_1021_298.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_1021_298.RC4_R {
    float:left;
  }
  .stacks_in_1021_298.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC4_S.RC4_Goff,
  .stacks_in_1021_298.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1021_298.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_1021_298.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC4_S.RC4_Goff,
  .stacks_in_1021_298.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_1021_298.RC5_L {
  float: left;
}
.stacks_in_1021_298.RC5_R {
  float: left;
}
.stacks_in_1021_298.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_1021_298.RC5_S {
  width: 18.4%;
}
.stacks_in_1021_298.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RC5_LF,
.stacks_in_1021_298.RC5_LL,
.stacks_in_1021_298.RC5_RF,
.stacks_in_1021_298.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_1021_298.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_1021_298.RC5, .stacks_in_1021_298.RC5_S {
    width: 49%;
  }
  .stacks_in_1021_298.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC5.RespColone5_Last,
  .stacks_in_1021_298.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_1021_298.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RespColone5_Last.RC5_Goff,
  .stacks_in_1021_298.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1021_298.RC5.RespCol2,
  .stacks_in_1021_298.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_1021_298.RC5_LF.RespCol2,
  .stacks_in_1021_298.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC5.RespColone5_First.RespCol2,
  .stacks_in_1021_298.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_1021_298.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_1021_298.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1021_298.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_1021_298.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_1021_298.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_1021_298.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_1021_298.RC5.RC5_LL.RespCol2,
  .stacks_in_1021_298.RC5.RC5_LF.RespCol2,
  .stacks_in_1021_298.RC5.RC5_LL.RespCol1,
  .stacks_in_1021_298.RC5.RC5_LF.RespCol1,
  .stacks_in_1021_298.RC5_S.RC5_LL.RespCol2,
  .stacks_in_1021_298.RC5_S.RC5_LF.RespCol2,
  .stacks_in_1021_298.RC5_S.RC5_LL.RespCol1,
  .stacks_in_1021_298.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC5.RC5_Goff,
  .stacks_in_1021_298.RC5_S.RC5_Goff,
  .stacks_in_1021_298.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_1021_298.RC6_L,
.stacks_in_1021_298.RC6_L1 {
  float: left;
}
.stacks_in_1021_298.RC6_R,
.stacks_in_1021_298.RC6_R1 {
  float: left;
}
.stacks_in_1021_298.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_1021_298.RC6_S {
  width: 15.2%;
}
.stacks_in_1021_298.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RC6_LF,
.stacks_in_1021_298.RC6_LL,
.stacks_in_1021_298.RC6_RF,
.stacks_in_1021_298.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_1021_298.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_1021_298.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_1021_298.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_1021_298.RC6,
  .stacks_in_1021_298.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1021_298.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1021_298.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1021_298.RC6.RC6_Goff,
  .stacks_in_1021_298.RC6_S.RC6_Goff,
  .stacks_in_1021_298.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_1021_298.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_1021_298.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1021_298.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_1021_298.RC6,
  .stacks_in_1021_298.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_1021_790 {
	padding: 0px 10px 0px 10px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_6 {
  overflow: visible;
}
#pureText_stacks_in_1021_6 .insideText {
  
    font-size: 14px;
  
  
    line-height: 26px;
  
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_6 a {
  color: #999999 !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_6 a:hover {
  color: #BEFF12 !important;
}
/*
#pureText_stacks_in_1021_6 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_6 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_6.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_6.fontSizeInheritOff, #pureText_stacks_in_1021_6.fontSizeInheritOff span {
  font-size: 14px !important;
  line-height: 14px;
}
#pureText_stacks_in_1021_6.letterSpacingOn {
  letter-spacing: 0px;
}
#pureText_stacks_in_1021_6.lineHeightOn, #pureText_stacks_in_1021_6.lineHeightOn span {
  line-height: 26px !important;
}
*/
#pureText_stacks_in_1021_6.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_6.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_6 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_6 p.insideText,
#pureText_stacks_in_1021_6 .insideText p,
#pureText_stacks_in_1021_6 h1.insideText,
#pureText_stacks_in_1021_6 h2.insideText,
#pureText_stacks_in_1021_6 h3.insideText,
#pureText_stacks_in_1021_6 h4.insideText,
#pureText_stacks_in_1021_6 h5.insideText,
#pureText_stacks_in_1021_6 h6.insideText {
  margin: 0;
  padding: 0;
}



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

#stacks_in_1021_7 {
	word-spacing: -1px;
}

#stacks_in_1021_3 {
	padding: 0px 20px 0px 0px;
}
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_223.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_223.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_223.gsheet--box h1, #gsheet_box_stacks_in_1021_223.gsheet--box h2, #gsheet_box_stacks_in_1021_223.gsheet--box h3, #gsheet_box_stacks_in_1021_223.gsheet--box h4, #gsheet_box_stacks_in_1021_223.gsheet--box h5, #gsheet_box_stacks_in_1021_223.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_223.gsheet--box a, #gsheet_box_stacks_in_1021_223.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_223.gsheet--box, #gsheet_box_stacks_in_1021_223.gsheet--box p, #gsheet_box_stacks_in_1021_223.gsheet--box span, #gsheet_box_stacks_in_1021_223.gsheet--box blockquote, #gsheet_box_stacks_in_1021_223.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_223.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_223.gsheet--box .gsheet_box_ag_stacks_in_1021_223 {
    display: none; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_223.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_223.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_225.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 1300px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_225.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_225.gsheet--box h1, #gsheet_box_stacks_in_1021_225.gsheet--box h2, #gsheet_box_stacks_in_1021_225.gsheet--box h3, #gsheet_box_stacks_in_1021_225.gsheet--box h4, #gsheet_box_stacks_in_1021_225.gsheet--box h5, #gsheet_box_stacks_in_1021_225.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_225.gsheet--box a, #gsheet_box_stacks_in_1021_225.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_225.gsheet--box, #gsheet_box_stacks_in_1021_225.gsheet--box p, #gsheet_box_stacks_in_1021_225.gsheet--box span, #gsheet_box_stacks_in_1021_225.gsheet--box blockquote, #gsheet_box_stacks_in_1021_225.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_225.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_225.gsheet--box .gsheet_box_ag_stacks_in_1021_225 {
    display: none; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_225.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_225.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_232.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_232.gsheet--box.padding-False {
    padding: 20px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.radius-False {
    border-radius: 20px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_232.gsheet--box h1, #gsheet_box_stacks_in_1021_232.gsheet--box h2, #gsheet_box_stacks_in_1021_232.gsheet--box h3, #gsheet_box_stacks_in_1021_232.gsheet--box h4, #gsheet_box_stacks_in_1021_232.gsheet--box h5, #gsheet_box_stacks_in_1021_232.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_232.gsheet--box a, #gsheet_box_stacks_in_1021_232.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_232.gsheet--box, #gsheet_box_stacks_in_1021_232.gsheet--box p, #gsheet_box_stacks_in_1021_232.gsheet--box span, #gsheet_box_stacks_in_1021_232.gsheet--box blockquote, #gsheet_box_stacks_in_1021_232.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_232.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_232.gsheet--box .gsheet_box_ag_stacks_in_1021_232 {
    display: none; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_232.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 800px) {
  #gsheet_box_stacks_in_1021_232.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_stacks_in_1021_234 {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex: 1 0 auto;
  overflow: visible;
  box-sizing: border-box;
  flex-direction: column;
  max-width: 5000px; }
  #gsheet_stacks_in_1021_234 .gsheet--tutorial {
    display: none; }
  #gsheet_stacks_in_1021_234 .gsheet--data-notice {
    display: none; }
  #gsheet_stacks_in_1021_234.repeated-rows .gsheet--individual {
    display: none; }
  #gsheet_stacks_in_1021_234.cell-by-cell .gsheet--repeat {
    display: none; }
  #gsheet_stacks_in_1021_234.show-search .gsheet--search {
    display: block; }

#gsheet_search_stacks_in_1021_234.gsheet--search {
  display: none; }
  #gsheet_search_stacks_in_1021_234.gsheet--search input {
    width: 100%;
    height: auto;
    line-height: 1;
    box-shadow: none;
    border-style: solid;
    outline: none !important;
    margin-bottom: px;
    color: ;
    background: ;
    font-size: px;
    border-radius: px;
    border-color: ;
    padding: px px;
    border-width: px px px px; }

#gsheet_repeat_stacks_in_1021_234 {
  width: 100%;
  flex: 0 1 auto;
  overflow: visible;
  box-sizing: border-box; }
  #gsheet_repeat_stacks_in_1021_234 .gsheet--grid {
    width: calc(100% + 15px);
    margin: 0 auto -15px auto;
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    flex-direction: row;
    box-sizing: border-box;
    justify-content: flex-start; }
    #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item {
      flex: 0 1 auto;
      padding-right: 15px;
      padding-bottom: 15px; }
      #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item.row-show {
        display: flex; }
      #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item.row-hide {
        display: none; }

@media (min-width: 1000px) {
  #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item {
    width: calc(100%/4); } }

@media (max-width: 1000px) {
  #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item {
    width: calc(100%/2); } }

@media (max-width: 600px) {
  #gsheet_repeat_stacks_in_1021_234 .gsheet--grid .gsheet--item {
    width: calc(100%/1); } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_236.gsheet--box {
  display: flex;
  position: relative;
  overflow: visible;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_236.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_236.gsheet--box h1, #gsheet_box_stacks_in_1021_236.gsheet--box h2, #gsheet_box_stacks_in_1021_236.gsheet--box h3, #gsheet_box_stacks_in_1021_236.gsheet--box h4, #gsheet_box_stacks_in_1021_236.gsheet--box h5, #gsheet_box_stacks_in_1021_236.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_236.gsheet--box a, #gsheet_box_stacks_in_1021_236.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_236.gsheet--box, #gsheet_box_stacks_in_1021_236.gsheet--box p, #gsheet_box_stacks_in_1021_236.gsheet--box span, #gsheet_box_stacks_in_1021_236.gsheet--box blockquote, #gsheet_box_stacks_in_1021_236.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_236.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_236.gsheet--box .gsheet_box_ag_stacks_in_1021_236 {
    display: none; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_236.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_236.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_238.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10); }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-color {
    background: rgba(255, 255, 255, 1.00); }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_238.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.radius-False {
    border-radius: 10px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_238.gsheet--box h1, #gsheet_box_stacks_in_1021_238.gsheet--box h2, #gsheet_box_stacks_in_1021_238.gsheet--box h3, #gsheet_box_stacks_in_1021_238.gsheet--box h4, #gsheet_box_stacks_in_1021_238.gsheet--box h5, #gsheet_box_stacks_in_1021_238.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_238.gsheet--box a, #gsheet_box_stacks_in_1021_238.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_238.gsheet--box, #gsheet_box_stacks_in_1021_238.gsheet--box p, #gsheet_box_stacks_in_1021_238.gsheet--box span, #gsheet_box_stacks_in_1021_238.gsheet--box blockquote, #gsheet_box_stacks_in_1021_238.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_238.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_238.gsheet--box .gsheet_box_ag_stacks_in_1021_238 {
    display: none; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_238.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_238.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_image_stacks_in_1021_240 {
  width: 100%;
  flex: 0 1 auto;
  display: flex;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  height: 200px;
  max-width: 1000px; }
  #gsheet_image_stacks_in_1021_240.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_1021_240.margin-False {
    margin: 0px; }
  #gsheet_image_stacks_in_1021_240.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_1021_240.radius-False {
    border-radius: 0px; }
  #gsheet_image_stacks_in_1021_240 div.gsheet--image, #gsheet_image_stacks_in_1021_240 img.gsheet--image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  #gsheet_image_stacks_in_1021_240 img {
    border: 0 !important;
    border-style: none !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_241.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 5000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_241.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.margin-True {
    margin: -30px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_241.gsheet--box h1, #gsheet_box_stacks_in_1021_241.gsheet--box h2, #gsheet_box_stacks_in_1021_241.gsheet--box h3, #gsheet_box_stacks_in_1021_241.gsheet--box h4, #gsheet_box_stacks_in_1021_241.gsheet--box h5, #gsheet_box_stacks_in_1021_241.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_241.gsheet--box a, #gsheet_box_stacks_in_1021_241.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_241.gsheet--box, #gsheet_box_stacks_in_1021_241.gsheet--box p, #gsheet_box_stacks_in_1021_241.gsheet--box span, #gsheet_box_stacks_in_1021_241.gsheet--box blockquote, #gsheet_box_stacks_in_1021_241.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_241.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_241.gsheet--box .gsheet_box_ag_stacks_in_1021_241 {
    display: none; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_241.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_241.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_if_stacks_in_1021_243 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_243.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_243.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_243.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_243.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_243.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_243.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_243 .conditional-content--true, #gsheet_if_stacks_in_1021_243 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_243 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_243.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_243.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_243.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_243.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_243.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_243.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_243.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_243.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-text h1, #gsheet_if_stacks_in_1021_243.colors-true.change-text h2, #gsheet_if_stacks_in_1021_243.colors-true.change-text h3, #gsheet_if_stacks_in_1021_243.colors-true.change-text h4, #gsheet_if_stacks_in_1021_243.colors-true.change-text h5, #gsheet_if_stacks_in_1021_243.colors-true.change-text h6, #gsheet_if_stacks_in_1021_243.colors-true.change-text p, #gsheet_if_stacks_in_1021_243.colors-true.change-text span, #gsheet_if_stacks_in_1021_243.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_243.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_243.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-text h1, #gsheet_if_stacks_in_1021_243.colors-false.change-text h2, #gsheet_if_stacks_in_1021_243.colors-false.change-text h3, #gsheet_if_stacks_in_1021_243.colors-false.change-text h4, #gsheet_if_stacks_in_1021_243.colors-false.change-text h5, #gsheet_if_stacks_in_1021_243.colors-false.change-text h6, #gsheet_if_stacks_in_1021_243.colors-false.change-text p, #gsheet_if_stacks_in_1021_243.colors-false.change-text span, #gsheet_if_stacks_in_1021_243.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_243.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_243.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_243.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_243.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_245 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_245.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_245.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_245 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-color {
      background: rgba(128, 128, 4, 1.00); }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(165, 233, 85, 1.00), rgba(99, 206, 63, 1.00)); }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover {
      color: rgba(255, 255, 255, 1.00); }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_245 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_245 a.gsheet--button.padding-False {
      padding: 12px; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_248.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_248.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.padding-True {
    padding: 20px 10px 10px 10px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.radius-True {
    border-radius: 0px 0px 10px 10px; }
  #gsheet_box_stacks_in_1021_248.gsheet--box h1, #gsheet_box_stacks_in_1021_248.gsheet--box h2, #gsheet_box_stacks_in_1021_248.gsheet--box h3, #gsheet_box_stacks_in_1021_248.gsheet--box h4, #gsheet_box_stacks_in_1021_248.gsheet--box h5, #gsheet_box_stacks_in_1021_248.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_248.gsheet--box a, #gsheet_box_stacks_in_1021_248.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_248.gsheet--box, #gsheet_box_stacks_in_1021_248.gsheet--box p, #gsheet_box_stacks_in_1021_248.gsheet--box span, #gsheet_box_stacks_in_1021_248.gsheet--box blockquote, #gsheet_box_stacks_in_1021_248.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_248.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_248.gsheet--box .gsheet_box_ag_stacks_in_1021_248 {
    display: none; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_248.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_248.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_250 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 16px;
  line-height: 25.888000px; }
  #gsheet_text_stacks_in_1021_250.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_250.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_250.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_250.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_250.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_250.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_252 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 0.50);
  font-size: 12px;
  line-height: 19.416000px; }
  #gsheet_text_stacks_in_1021_252.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_252.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_252.margin-True {
    margin: 0px 0px 20px 0px; }
  #gsheet_text_stacks_in_1021_252.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_252.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_252.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_254 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_254.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_254.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_254.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_254.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_254.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_254.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_254 .conditional-content--true, #gsheet_if_stacks_in_1021_254 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_254 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_254.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_254.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_254.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_254.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_254.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_254.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_254.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_254.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-text h1, #gsheet_if_stacks_in_1021_254.colors-true.change-text h2, #gsheet_if_stacks_in_1021_254.colors-true.change-text h3, #gsheet_if_stacks_in_1021_254.colors-true.change-text h4, #gsheet_if_stacks_in_1021_254.colors-true.change-text h5, #gsheet_if_stacks_in_1021_254.colors-true.change-text h6, #gsheet_if_stacks_in_1021_254.colors-true.change-text p, #gsheet_if_stacks_in_1021_254.colors-true.change-text span, #gsheet_if_stacks_in_1021_254.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_254.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_254.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-text h1, #gsheet_if_stacks_in_1021_254.colors-false.change-text h2, #gsheet_if_stacks_in_1021_254.colors-false.change-text h3, #gsheet_if_stacks_in_1021_254.colors-false.change-text h4, #gsheet_if_stacks_in_1021_254.colors-false.change-text h5, #gsheet_if_stacks_in_1021_254.colors-false.change-text h6, #gsheet_if_stacks_in_1021_254.colors-false.change-text p, #gsheet_if_stacks_in_1021_254.colors-false.change-text span, #gsheet_if_stacks_in_1021_254.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_254.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_254.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_254.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_254.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_256.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_256.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_256.gsheet--box h1, #gsheet_box_stacks_in_1021_256.gsheet--box h2, #gsheet_box_stacks_in_1021_256.gsheet--box h3, #gsheet_box_stacks_in_1021_256.gsheet--box h4, #gsheet_box_stacks_in_1021_256.gsheet--box h5, #gsheet_box_stacks_in_1021_256.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_256.gsheet--box a, #gsheet_box_stacks_in_1021_256.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_256.gsheet--box, #gsheet_box_stacks_in_1021_256.gsheet--box p, #gsheet_box_stacks_in_1021_256.gsheet--box span, #gsheet_box_stacks_in_1021_256.gsheet--box blockquote, #gsheet_box_stacks_in_1021_256.gsheet--box i {
    color: rgba(116, 206, 87, 1.00); }
  #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_256.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_256.gsheet--box .gsheet_box_ag_stacks_in_1021_256 {
    display: none; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_256.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_256.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_258 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_258.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_258.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_258 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_258.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_259 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_259.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_259.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_259.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_259.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_259.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_259.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_262.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-color {
    background: rgba(248, 248, 248, 1.00); }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_262.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.padding-True {
    padding: 10px 15px 10px 15px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_262.gsheet--box h1, #gsheet_box_stacks_in_1021_262.gsheet--box h2, #gsheet_box_stacks_in_1021_262.gsheet--box h3, #gsheet_box_stacks_in_1021_262.gsheet--box h4, #gsheet_box_stacks_in_1021_262.gsheet--box h5, #gsheet_box_stacks_in_1021_262.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_262.gsheet--box a, #gsheet_box_stacks_in_1021_262.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_262.gsheet--box, #gsheet_box_stacks_in_1021_262.gsheet--box p, #gsheet_box_stacks_in_1021_262.gsheet--box span, #gsheet_box_stacks_in_1021_262.gsheet--box blockquote, #gsheet_box_stacks_in_1021_262.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_262.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_262.gsheet--box .gsheet_box_ag_stacks_in_1021_262 {
    display: none; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_262.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 1200px) {
  #gsheet_box_stacks_in_1021_262.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_264.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_264.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_264.gsheet--box h1, #gsheet_box_stacks_in_1021_264.gsheet--box h2, #gsheet_box_stacks_in_1021_264.gsheet--box h3, #gsheet_box_stacks_in_1021_264.gsheet--box h4, #gsheet_box_stacks_in_1021_264.gsheet--box h5, #gsheet_box_stacks_in_1021_264.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_264.gsheet--box a, #gsheet_box_stacks_in_1021_264.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_264.gsheet--box, #gsheet_box_stacks_in_1021_264.gsheet--box p, #gsheet_box_stacks_in_1021_264.gsheet--box span, #gsheet_box_stacks_in_1021_264.gsheet--box blockquote, #gsheet_box_stacks_in_1021_264.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_264.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_264.gsheet--box .gsheet_box_ag_stacks_in_1021_264 {
    display: none; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_264.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_264.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_266 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_266.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_266.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_266.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_266.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_266.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_266.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_268 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_268.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_268.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_268.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_268.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_268.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_268.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_270.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_270.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_270.gsheet--box h1, #gsheet_box_stacks_in_1021_270.gsheet--box h2, #gsheet_box_stacks_in_1021_270.gsheet--box h3, #gsheet_box_stacks_in_1021_270.gsheet--box h4, #gsheet_box_stacks_in_1021_270.gsheet--box h5, #gsheet_box_stacks_in_1021_270.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_270.gsheet--box a, #gsheet_box_stacks_in_1021_270.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_270.gsheet--box, #gsheet_box_stacks_in_1021_270.gsheet--box p, #gsheet_box_stacks_in_1021_270.gsheet--box span, #gsheet_box_stacks_in_1021_270.gsheet--box blockquote, #gsheet_box_stacks_in_1021_270.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_270.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_270.gsheet--box .gsheet_box_ag_stacks_in_1021_270 {
    display: none; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_270.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_270.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_272 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_272.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_272.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_272.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_272.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_272.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_272.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_274 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_274.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_274.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_274.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_274.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_274.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_274.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_276.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_276.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_276.gsheet--box h1, #gsheet_box_stacks_in_1021_276.gsheet--box h2, #gsheet_box_stacks_in_1021_276.gsheet--box h3, #gsheet_box_stacks_in_1021_276.gsheet--box h4, #gsheet_box_stacks_in_1021_276.gsheet--box h5, #gsheet_box_stacks_in_1021_276.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_276.gsheet--box a, #gsheet_box_stacks_in_1021_276.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_276.gsheet--box, #gsheet_box_stacks_in_1021_276.gsheet--box p, #gsheet_box_stacks_in_1021_276.gsheet--box span, #gsheet_box_stacks_in_1021_276.gsheet--box blockquote, #gsheet_box_stacks_in_1021_276.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_276.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_276.gsheet--box .gsheet_box_ag_stacks_in_1021_276 {
    display: none; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_276.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_276.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_278 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_278.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_278.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_278.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_278.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_278.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_278.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_280 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_280.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_280.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_280.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_280.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_280.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_280.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_282.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_282.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_282.gsheet--box h1, #gsheet_box_stacks_in_1021_282.gsheet--box h2, #gsheet_box_stacks_in_1021_282.gsheet--box h3, #gsheet_box_stacks_in_1021_282.gsheet--box h4, #gsheet_box_stacks_in_1021_282.gsheet--box h5, #gsheet_box_stacks_in_1021_282.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_282.gsheet--box a, #gsheet_box_stacks_in_1021_282.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_282.gsheet--box, #gsheet_box_stacks_in_1021_282.gsheet--box p, #gsheet_box_stacks_in_1021_282.gsheet--box span, #gsheet_box_stacks_in_1021_282.gsheet--box blockquote, #gsheet_box_stacks_in_1021_282.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_282.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_282.gsheet--box .gsheet_box_ag_stacks_in_1021_282 {
    display: none; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_282.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_282.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_284 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_284.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_284.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_284.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_284.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_284.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_284.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_286 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_286.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_286.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_286.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_286.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_286.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_286.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1314.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box h1, #gsheet_box_stacks_in_1021_1314.gsheet--box h2, #gsheet_box_stacks_in_1021_1314.gsheet--box h3, #gsheet_box_stacks_in_1021_1314.gsheet--box h4, #gsheet_box_stacks_in_1021_1314.gsheet--box h5, #gsheet_box_stacks_in_1021_1314.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box a, #gsheet_box_stacks_in_1021_1314.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box, #gsheet_box_stacks_in_1021_1314.gsheet--box p, #gsheet_box_stacks_in_1021_1314.gsheet--box span, #gsheet_box_stacks_in_1021_1314.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1314.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1314.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box .gsheet_box_ag_stacks_in_1021_1314 {
    display: none; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1314.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1316.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 1300px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box h1, #gsheet_box_stacks_in_1021_1316.gsheet--box h2, #gsheet_box_stacks_in_1021_1316.gsheet--box h3, #gsheet_box_stacks_in_1021_1316.gsheet--box h4, #gsheet_box_stacks_in_1021_1316.gsheet--box h5, #gsheet_box_stacks_in_1021_1316.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box a, #gsheet_box_stacks_in_1021_1316.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box, #gsheet_box_stacks_in_1021_1316.gsheet--box p, #gsheet_box_stacks_in_1021_1316.gsheet--box span, #gsheet_box_stacks_in_1021_1316.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1316.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1316.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box .gsheet_box_ag_stacks_in_1021_1316 {
    display: none; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1316.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1318.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-color {
    background: rgba(0, 0, 0, 1.00); }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.padding-False {
    padding: 20px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.radius-False {
    border-radius: 20px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box h1, #gsheet_box_stacks_in_1021_1318.gsheet--box h2, #gsheet_box_stacks_in_1021_1318.gsheet--box h3, #gsheet_box_stacks_in_1021_1318.gsheet--box h4, #gsheet_box_stacks_in_1021_1318.gsheet--box h5, #gsheet_box_stacks_in_1021_1318.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box a, #gsheet_box_stacks_in_1021_1318.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box, #gsheet_box_stacks_in_1021_1318.gsheet--box p, #gsheet_box_stacks_in_1021_1318.gsheet--box span, #gsheet_box_stacks_in_1021_1318.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1318.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1318.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box .gsheet_box_ag_stacks_in_1021_1318 {
    display: none; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 800px) {
  #gsheet_box_stacks_in_1021_1318.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_stacks_in_1021_1320 {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex: 1 0 auto;
  overflow: visible;
  box-sizing: border-box;
  flex-direction: column;
  max-width: 5000px; }
  #gsheet_stacks_in_1021_1320 .gsheet--tutorial {
    display: none; }
  #gsheet_stacks_in_1021_1320 .gsheet--data-notice {
    display: none; }
  #gsheet_stacks_in_1021_1320.repeated-rows .gsheet--individual {
    display: none; }
  #gsheet_stacks_in_1021_1320.cell-by-cell .gsheet--repeat {
    display: none; }
  #gsheet_stacks_in_1021_1320.show-search .gsheet--search {
    display: block; }

#gsheet_search_stacks_in_1021_1320.gsheet--search {
  display: none; }
  #gsheet_search_stacks_in_1021_1320.gsheet--search input {
    width: 100%;
    height: auto;
    line-height: 1;
    box-shadow: none;
    border-style: solid;
    outline: none !important;
    margin-bottom: px;
    color: ;
    background: ;
    font-size: px;
    border-radius: px;
    border-color: ;
    padding: px px;
    border-width: px px px px; }

#gsheet_repeat_stacks_in_1021_1320 {
  width: 100%;
  flex: 0 1 auto;
  overflow: visible;
  box-sizing: border-box; }
  #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid {
    width: calc(100% + 15px);
    margin: 0 auto -15px auto;
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    flex-direction: row;
    box-sizing: border-box;
    justify-content: flex-start; }
    #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item {
      flex: 0 1 auto;
      padding-right: 15px;
      padding-bottom: 15px; }
      #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item.row-show {
        display: flex; }
      #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item.row-hide {
        display: none; }

@media (min-width: 1000px) {
  #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item {
    width: calc(100%/4); } }

@media (max-width: 1000px) {
  #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item {
    width: calc(100%/2); } }

@media (max-width: 600px) {
  #gsheet_repeat_stacks_in_1021_1320 .gsheet--grid .gsheet--item {
    width: calc(100%/1); } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1322.gsheet--box {
  display: flex;
  position: relative;
  overflow: visible;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box h1, #gsheet_box_stacks_in_1021_1322.gsheet--box h2, #gsheet_box_stacks_in_1021_1322.gsheet--box h3, #gsheet_box_stacks_in_1021_1322.gsheet--box h4, #gsheet_box_stacks_in_1021_1322.gsheet--box h5, #gsheet_box_stacks_in_1021_1322.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box a, #gsheet_box_stacks_in_1021_1322.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box, #gsheet_box_stacks_in_1021_1322.gsheet--box p, #gsheet_box_stacks_in_1021_1322.gsheet--box span, #gsheet_box_stacks_in_1021_1322.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1322.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1322.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box .gsheet_box_ag_stacks_in_1021_1322 {
    display: none; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1322.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1324.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-color {
    background: rgba(255, 255, 255, 1.00); }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.radius-False {
    border-radius: 10px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box h1, #gsheet_box_stacks_in_1021_1324.gsheet--box h2, #gsheet_box_stacks_in_1021_1324.gsheet--box h3, #gsheet_box_stacks_in_1021_1324.gsheet--box h4, #gsheet_box_stacks_in_1021_1324.gsheet--box h5, #gsheet_box_stacks_in_1021_1324.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box a, #gsheet_box_stacks_in_1021_1324.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box, #gsheet_box_stacks_in_1021_1324.gsheet--box p, #gsheet_box_stacks_in_1021_1324.gsheet--box span, #gsheet_box_stacks_in_1021_1324.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1324.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1324.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box .gsheet_box_ag_stacks_in_1021_1324 {
    display: none; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1324.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_image_stacks_in_1021_1326 {
  width: 100%;
  flex: 0 1 auto;
  display: flex;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  height: 200px;
  max-width: 1000px; }
  #gsheet_image_stacks_in_1021_1326.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_1021_1326.margin-False {
    margin: 0px; }
  #gsheet_image_stacks_in_1021_1326.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_image_stacks_in_1021_1326.radius-False {
    border-radius: 0px; }
  #gsheet_image_stacks_in_1021_1326 div.gsheet--image, #gsheet_image_stacks_in_1021_1326 img.gsheet--image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  #gsheet_image_stacks_in_1021_1326 img {
    border: 0 !important;
    border-style: none !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1327.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 5000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.margin-True {
    margin: -30px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box h1, #gsheet_box_stacks_in_1021_1327.gsheet--box h2, #gsheet_box_stacks_in_1021_1327.gsheet--box h3, #gsheet_box_stacks_in_1021_1327.gsheet--box h4, #gsheet_box_stacks_in_1021_1327.gsheet--box h5, #gsheet_box_stacks_in_1021_1327.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box a, #gsheet_box_stacks_in_1021_1327.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box, #gsheet_box_stacks_in_1021_1327.gsheet--box p, #gsheet_box_stacks_in_1021_1327.gsheet--box span, #gsheet_box_stacks_in_1021_1327.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1327.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1327.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box .gsheet_box_ag_stacks_in_1021_1327 {
    display: none; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1327.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_if_stacks_in_1021_1329 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1329.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1329.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1329.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1329.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1329.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1329.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1329 .conditional-content--true, #gsheet_if_stacks_in_1021_1329 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1329 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1329.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1329.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1329.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1329.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1329.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1329.colors-true.change-text p, #gsheet_if_stacks_in_1021_1329.colors-true.change-text span, #gsheet_if_stacks_in_1021_1329.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1329.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1329.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1329.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1329.colors-false.change-text p, #gsheet_if_stacks_in_1021_1329.colors-false.change-text span, #gsheet_if_stacks_in_1021_1329.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1329.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1329.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1329.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1329.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_1331 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_1331.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_1331.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_1331 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-color {
      background: rgba(128, 128, 4, 1.00); }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(128, 128, 4, 1.00), rgba(90, 91, 7, 1.00)); }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1331 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_1331 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_1021_1334 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1334.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1334.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1334.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1334.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1334.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1334.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1334 .conditional-content--true, #gsheet_if_stacks_in_1021_1334 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1334 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1334.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1334.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1334.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1334.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1334.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1334.colors-true.change-text p, #gsheet_if_stacks_in_1021_1334.colors-true.change-text span, #gsheet_if_stacks_in_1021_1334.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1334.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1334.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1334.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1334.colors-false.change-text p, #gsheet_if_stacks_in_1021_1334.colors-false.change-text span, #gsheet_if_stacks_in_1021_1334.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1334.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1334.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1334.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1334.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_1336 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_1336.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_1336.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_1336 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-color {
      background: rgba(15, 128, 255, 1.00); }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(15, 128, 255, 1.00), rgba(18, 101, 255, 1.00)); }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1336 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_1336 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_1021_1339 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1339.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1339.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1339.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1339.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1339.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1339.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1339 .conditional-content--true, #gsheet_if_stacks_in_1021_1339 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1339 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1339.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1339.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1339.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1339.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1339.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1339.colors-true.change-text p, #gsheet_if_stacks_in_1021_1339.colors-true.change-text span, #gsheet_if_stacks_in_1021_1339.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1339.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1339.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1339.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1339.colors-false.change-text p, #gsheet_if_stacks_in_1021_1339.colors-false.change-text span, #gsheet_if_stacks_in_1021_1339.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1339.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1339.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1339.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1339.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_1341 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_1341.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_1341.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_1341 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 1.00); }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-color {
      background: rgba(251, 2, 7, 1.00); }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(245, 207, 115, 1.00), rgba(241, 149, 63, 1.00)); }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-color {
        background: rgba(57, 62, 70, 1.00); }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1341 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_1341 a.gsheet--button.padding-False {
      padding: 12px; }
#gsheet_if_stacks_in_1021_1344 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1344.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1344.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1344.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1344.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1344.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1344.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1344 .conditional-content--true, #gsheet_if_stacks_in_1021_1344 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1344 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1344.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1344.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1344.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1344.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1344.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1344.colors-true.change-text p, #gsheet_if_stacks_in_1021_1344.colors-true.change-text span, #gsheet_if_stacks_in_1021_1344.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1344.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1344.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1344.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1344.colors-false.change-text p, #gsheet_if_stacks_in_1021_1344.colors-false.change-text span, #gsheet_if_stacks_in_1021_1344.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1344.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1344.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1344.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1344.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
/*  */
#gsheet_button_stacks_in_1021_1346 {
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 200px; }
  #gsheet_button_stacks_in_1021_1346.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_button_stacks_in_1021_1346.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_button_stacks_in_1021_1346 a.gsheet--button {
    display: block;
    line-height: 1;
    flex: 1 0 auto;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: rgba(254, 252, 255, 1.00); }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-color {
      background: rgba(200, 104, 13, 1.00); }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-color::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-gradient-2 {
      background: linear-gradient(to bottom right, rgba(250, 250, 250, 1.00), rgba(189, 189, 189, 1.00)); }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-gradient-2::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-gradient-3 {
      background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-gradient-3::before {
        opacity: 0; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-image-ov-color {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-image-ov-color::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: ; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-image-ov-gradient {
      background: url() no-repeat center center;
      background-size: cover; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button.main-bg-image-ov-gradient::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        display: block;
        position: absolute;
        background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover {
      color: rgba(230, 230, 230, 1.00); }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-color {
        background: rgba(253, 128, 8, 1.00); }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-color::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-gradient-2 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00)); }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-gradient-2::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-gradient-3 {
        background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-gradient-3::before {
          opacity: 0; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-image-ov-color {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-image-ov-color::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: ; }
      #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-image-ov-gradient {
        background: url() no-repeat center center;
        background-size: cover; }
        #gsheet_button_stacks_in_1021_1346 a.gsheet--button:hover.hover-bg-image-ov-gradient::before {
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: '';
          display: block;
          position: absolute;
          background: linear-gradient(to bottom right, , ); }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.margin-True {
      margin: 0px 0px 0px 0px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.margin-False {
      margin: 0px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.radius-True {
      border-radius: 4px 4px 4px 4px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.radius-False {
      border-radius: 50px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.padding-True {
      padding: 12px 12px 12px 12px; }
    #gsheet_button_stacks_in_1021_1346 a.gsheet--button.padding-False {
      padding: 12px; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1349.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.padding-True {
    padding: 20px 10px 10px 10px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.radius-True {
    border-radius: 0px 0px 10px 10px; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box h1, #gsheet_box_stacks_in_1021_1349.gsheet--box h2, #gsheet_box_stacks_in_1021_1349.gsheet--box h3, #gsheet_box_stacks_in_1021_1349.gsheet--box h4, #gsheet_box_stacks_in_1021_1349.gsheet--box h5, #gsheet_box_stacks_in_1021_1349.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box a, #gsheet_box_stacks_in_1021_1349.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box, #gsheet_box_stacks_in_1021_1349.gsheet--box p, #gsheet_box_stacks_in_1021_1349.gsheet--box span, #gsheet_box_stacks_in_1021_1349.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1349.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1349.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box .gsheet_box_ag_stacks_in_1021_1349 {
    display: none; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1349.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_1351 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 16px;
  line-height: 25.888000px; }
  #gsheet_text_stacks_in_1021_1351.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1351.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1351.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1351.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1351.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1351.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_1353 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 0.50);
  font-size: 12px;
  line-height: 19.416000px; }
  #gsheet_text_stacks_in_1021_1353.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1353.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1353.margin-True {
    margin: 0px 0px 20px 0px; }
  #gsheet_text_stacks_in_1021_1353.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1353.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1353.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_1355 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1355.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1355.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1355.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1355.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1355.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1355.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1355 .conditional-content--true, #gsheet_if_stacks_in_1021_1355 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1355 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1355.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1355.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1355.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1355.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1355.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1355.colors-true.change-text p, #gsheet_if_stacks_in_1021_1355.colors-true.change-text span, #gsheet_if_stacks_in_1021_1355.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1355.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1355.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1355.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1355.colors-false.change-text p, #gsheet_if_stacks_in_1021_1355.colors-false.change-text span, #gsheet_if_stacks_in_1021_1355.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1355.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1355.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1355.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1355.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1357.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box h1, #gsheet_box_stacks_in_1021_1357.gsheet--box h2, #gsheet_box_stacks_in_1021_1357.gsheet--box h3, #gsheet_box_stacks_in_1021_1357.gsheet--box h4, #gsheet_box_stacks_in_1021_1357.gsheet--box h5, #gsheet_box_stacks_in_1021_1357.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box a, #gsheet_box_stacks_in_1021_1357.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box, #gsheet_box_stacks_in_1021_1357.gsheet--box p, #gsheet_box_stacks_in_1021_1357.gsheet--box span, #gsheet_box_stacks_in_1021_1357.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1357.gsheet--box i {
    color: rgba(116, 206, 87, 1.00); }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1357.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box .gsheet_box_ag_stacks_in_1021_1357 {
    display: none; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1357.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_1359 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_1359.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_1359.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_1359 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_1359.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_1360 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1360.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1360.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1360.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1360.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1360.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1360.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_1363 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1363.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1363.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1363.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1363.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1363.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1363.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1363 .conditional-content--true, #gsheet_if_stacks_in_1021_1363 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1363 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1363.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1363.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1363.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1363.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1363.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1363.colors-true.change-text p, #gsheet_if_stacks_in_1021_1363.colors-true.change-text span, #gsheet_if_stacks_in_1021_1363.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1363.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1363.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1363.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1363.colors-false.change-text p, #gsheet_if_stacks_in_1021_1363.colors-false.change-text span, #gsheet_if_stacks_in_1021_1363.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1363.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1363.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1363.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1363.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1365.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box h1, #gsheet_box_stacks_in_1021_1365.gsheet--box h2, #gsheet_box_stacks_in_1021_1365.gsheet--box h3, #gsheet_box_stacks_in_1021_1365.gsheet--box h4, #gsheet_box_stacks_in_1021_1365.gsheet--box h5, #gsheet_box_stacks_in_1021_1365.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box a, #gsheet_box_stacks_in_1021_1365.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box, #gsheet_box_stacks_in_1021_1365.gsheet--box p, #gsheet_box_stacks_in_1021_1365.gsheet--box span, #gsheet_box_stacks_in_1021_1365.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1365.gsheet--box i {
    color: rgba(233, 87, 80, 1.00); }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1365.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box .gsheet_box_ag_stacks_in_1021_1365 {
    display: none; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1365.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_1367 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_1367.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_1367.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_1367 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_1367.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_1368 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1368.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1368.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1368.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1368.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1368.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1368.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_1371 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1371.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1371.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1371.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1371.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1371.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1371.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1371 .conditional-content--true, #gsheet_if_stacks_in_1021_1371 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1371 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1371.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1371.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1371.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1371.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1371.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1371.colors-true.change-text p, #gsheet_if_stacks_in_1021_1371.colors-true.change-text span, #gsheet_if_stacks_in_1021_1371.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1371.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1371.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1371.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1371.colors-false.change-text p, #gsheet_if_stacks_in_1021_1371.colors-false.change-text span, #gsheet_if_stacks_in_1021_1371.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1371.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1371.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1371.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1371.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1373.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box h1, #gsheet_box_stacks_in_1021_1373.gsheet--box h2, #gsheet_box_stacks_in_1021_1373.gsheet--box h3, #gsheet_box_stacks_in_1021_1373.gsheet--box h4, #gsheet_box_stacks_in_1021_1373.gsheet--box h5, #gsheet_box_stacks_in_1021_1373.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box a, #gsheet_box_stacks_in_1021_1373.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box, #gsheet_box_stacks_in_1021_1373.gsheet--box p, #gsheet_box_stacks_in_1021_1373.gsheet--box span, #gsheet_box_stacks_in_1021_1373.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1373.gsheet--box i {
    color: rgba(117, 117, 117, 1.00); }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1373.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box .gsheet_box_ag_stacks_in_1021_1373 {
    display: none; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1373.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_1375 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_1375.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_1375.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_1375 i.gsheet--icon {
    color: rgba(251, 2, 7, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_1375.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_1376 {
  display: block;
  box-sizing: border-box;
  color: rgba(251, 2, 7, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1376.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1376.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1376.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1376.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1376.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1376.gsheet-text--upper {
    text-align: inherit; }
#gsheet_if_stacks_in_1021_1379 {
  display: flex;
  flex-wrap: inherit;
  align-items: inherit;
  flex-direction: inherit;
  justify-content: inherit;
  box-sizing: border-box; }
  #gsheet_if_stacks_in_1021_1379.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
    #gsheet_if_stacks_in_1021_1379.fill-grow .conditional-content--true, #gsheet_if_stacks_in_1021_1379.fill-grow .conditional-content--false {
      width: 100%;
      flex: 0 1 auto; }
  #gsheet_if_stacks_in_1021_1379.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_if_stacks_in_1021_1379.condition-show {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1379.condition-hide {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1379 .conditional-content--true, #gsheet_if_stacks_in_1021_1379 .conditional-content--false {
    display: flex;
    flex-wrap: inherit;
    align-items: inherit;
    flex-direction: inherit;
    justify-content: inherit; }
  #gsheet_if_stacks_in_1021_1379 .conditional-content--false {
    display: none; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.conditional-content--false, #gsheet_if_stacks_in_1021_1379.conditional-content.conditional-content--true {
    display: flex; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.content-show .conditional-content--true {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.content-show .conditional-content--false {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.content-hide .conditional-content--true {
    display: none !important; }
  #gsheet_if_stacks_in_1021_1379.conditional-content.content-hide .conditional-content--false {
    display: flex !important; }
  #gsheet_if_stacks_in_1021_1379.opacity-true {
    opacity: 1; }
  #gsheet_if_stacks_in_1021_1379.opacity-false {
    opacity: 0.5; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-text h1, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h2, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h3, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h4, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h5, #gsheet_if_stacks_in_1021_1379.colors-true.change-text h6, #gsheet_if_stacks_in_1021_1379.colors-true.change-text p, #gsheet_if_stacks_in_1021_1379.colors-true.change-text span, #gsheet_if_stacks_in_1021_1379.colors-true.change-text .gsheet--text {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-icon i.gsheet--icon {
    color: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-background .gsheet--box {
    background: rgba(34, 139, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1379.colors-true.change-background .gsheet--box::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1379.colors-true.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(34, 139, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-text h1, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h2, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h3, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h4, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h5, #gsheet_if_stacks_in_1021_1379.colors-false.change-text h6, #gsheet_if_stacks_in_1021_1379.colors-false.change-text p, #gsheet_if_stacks_in_1021_1379.colors-false.change-text span, #gsheet_if_stacks_in_1021_1379.colors-false.change-text .gsheet--text {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-icon i.gsheet--icon {
    color: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-progress .gsheet--progress .gsheet--bar-inner {
    background: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-progress .gsheet--progress .gsheet--circle svg circle:last-of-type {
    stroke: rgba(178, 34, 34, 1.00) !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-background .gsheet--box, #gsheet_if_stacks_in_1021_1379.colors-false.change-background .gsheet--button {
    background: rgba(178, 34, 34, 1.00) !important; }
    #gsheet_if_stacks_in_1021_1379.colors-false.change-background .gsheet--box::before, #gsheet_if_stacks_in_1021_1379.colors-false.change-background .gsheet--button::before {
      display: none !important; }
  #gsheet_if_stacks_in_1021_1379.colors-false.change-button .gsheet--button {
    color: rgba(255, 255, 255, 1.00) !important;
    background: rgba(178, 34, 34, 1.00) !important; }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1381.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 0px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box h1, #gsheet_box_stacks_in_1021_1381.gsheet--box h2, #gsheet_box_stacks_in_1021_1381.gsheet--box h3, #gsheet_box_stacks_in_1021_1381.gsheet--box h4, #gsheet_box_stacks_in_1021_1381.gsheet--box h5, #gsheet_box_stacks_in_1021_1381.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box a, #gsheet_box_stacks_in_1021_1381.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box, #gsheet_box_stacks_in_1021_1381.gsheet--box p, #gsheet_box_stacks_in_1021_1381.gsheet--box span, #gsheet_box_stacks_in_1021_1381.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1381.gsheet--box i {
    color: rgba(239, 160, 86, 1.00); }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1381.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box .gsheet_box_ag_stacks_in_1021_1381 {
    display: none; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1381.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_icon_stacks_in_1021_1383 {
  flex: 0 1 auto;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box; }
  #gsheet_icon_stacks_in_1021_1383.margin-True {
    margin: 0px 10px 0px 0px; }
  #gsheet_icon_stacks_in_1021_1383.margin-False {
    margin: 0px; }
  #gsheet_icon_stacks_in_1021_1383 i.gsheet--icon {
    color: rgba(116, 206, 87, 1.00);
    font-size: 24px; }
  #gsheet_icon_stacks_in_1021_1383.inherit-icon-color i.gsheet--icon {
    color: inherit; }

/*  */
#gsheet_text_stacks_in_1021_1384 {
  display: block;
  box-sizing: border-box;
  color: rgba(60, 64, 77, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1384.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1384.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1384.margin-True {
    margin: 0px 0px 5px 0px; }
  #gsheet_text_stacks_in_1021_1384.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1384.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1384.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1387.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-color {
    background: rgba(248, 248, 248, 1.00); }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.padding-False {
    padding: 10px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.padding-True {
    padding: 10px 15px 10px 15px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box h1, #gsheet_box_stacks_in_1021_1387.gsheet--box h2, #gsheet_box_stacks_in_1021_1387.gsheet--box h3, #gsheet_box_stacks_in_1021_1387.gsheet--box h4, #gsheet_box_stacks_in_1021_1387.gsheet--box h5, #gsheet_box_stacks_in_1021_1387.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box a, #gsheet_box_stacks_in_1021_1387.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box, #gsheet_box_stacks_in_1021_1387.gsheet--box p, #gsheet_box_stacks_in_1021_1387.gsheet--box span, #gsheet_box_stacks_in_1021_1387.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1387.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1387.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box .gsheet_box_ag_stacks_in_1021_1387 {
    display: none; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 1200px) {
  #gsheet_box_stacks_in_1021_1387.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1389.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box h1, #gsheet_box_stacks_in_1021_1389.gsheet--box h2, #gsheet_box_stacks_in_1021_1389.gsheet--box h3, #gsheet_box_stacks_in_1021_1389.gsheet--box h4, #gsheet_box_stacks_in_1021_1389.gsheet--box h5, #gsheet_box_stacks_in_1021_1389.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box a, #gsheet_box_stacks_in_1021_1389.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box, #gsheet_box_stacks_in_1021_1389.gsheet--box p, #gsheet_box_stacks_in_1021_1389.gsheet--box span, #gsheet_box_stacks_in_1021_1389.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1389.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1389.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box .gsheet_box_ag_stacks_in_1021_1389 {
    display: none; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1389.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_1391 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1391.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1391.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1391.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1391.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1391.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1391.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_1393 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_1393.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1393.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1393.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1393.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1393.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1393.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1401.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box h1, #gsheet_box_stacks_in_1021_1401.gsheet--box h2, #gsheet_box_stacks_in_1021_1401.gsheet--box h3, #gsheet_box_stacks_in_1021_1401.gsheet--box h4, #gsheet_box_stacks_in_1021_1401.gsheet--box h5, #gsheet_box_stacks_in_1021_1401.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box a, #gsheet_box_stacks_in_1021_1401.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box, #gsheet_box_stacks_in_1021_1401.gsheet--box p, #gsheet_box_stacks_in_1021_1401.gsheet--box span, #gsheet_box_stacks_in_1021_1401.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1401.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1401.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box .gsheet_box_ag_stacks_in_1021_1401 {
    display: none; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1401.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_1403 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1403.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1403.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1403.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1403.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1403.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1403.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_1405 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_1405.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1405.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1405.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1405.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1405.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1405.gsheet-text--upper {
    text-align: inherit; }
@charset "UTF-8";
.com_weavium_stacks_Gsheet_Stack {
  overflow: visible !important; }

#gsheet_box_stacks_in_1021_1407.gsheet--box {
  display: flex;
  position: relative;
  overflow: hidden;
  border-style: solid;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 50000px;
  min-width: 50px;
  min-height: 50px;
  border-color: rgba(0, 0, 0, 1.00);
  border-width: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1.00); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-font-preset {
    font-family: "Montserrat", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-font-custom {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-font-google {
    font-family: "", "Roboto", sans-serif; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-color {
    background: rgba(245, 245, 245, 1.00); }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-color::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-gradient-2 {
    background: linear-gradient(to bottom, rgba(131, 212, 122, 1.00), rgba(91, 193, 95, 1.00)); }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-gradient-2::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-gradient-3 {
    background: linear-gradient(to bottom, rgba(57, 62, 70, 1.00), rgba(92, 99, 110, 1.00), rgba(248, 181, 0, 1.00)); }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-gradient-3::before {
      opacity: 0; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-image-ov-color {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-image-ov-color::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: rgba(0, 0, 0, 0.50); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-image-ov-gradient {
    background: url() no-repeat center center;
    background-size: cover; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.main-bg-image-ov-gradient::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: block;
      position: absolute;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 1.00)); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.padding-False {
    padding: 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.padding-True {
    padding: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.margin-False {
    margin: 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.radius-False {
    border-radius: 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.radius-True {
    border-radius: 0px 0px 0px 0px; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box h1, #gsheet_box_stacks_in_1021_1407.gsheet--box h2, #gsheet_box_stacks_in_1021_1407.gsheet--box h3, #gsheet_box_stacks_in_1021_1407.gsheet--box h4, #gsheet_box_stacks_in_1021_1407.gsheet--box h5, #gsheet_box_stacks_in_1021_1407.gsheet--box h6 {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box a, #gsheet_box_stacks_in_1021_1407.gsheet--box a:visited {
    color: rgba(255, 255, 255, 1.00); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box, #gsheet_box_stacks_in_1021_1407.gsheet--box p, #gsheet_box_stacks_in_1021_1407.gsheet--box span, #gsheet_box_stacks_in_1021_1407.gsheet--box blockquote, #gsheet_box_stacks_in_1021_1407.gsheet--box i {
    color: rgba(255, 255, 255, 0.60); }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors {
    color: inherit; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h1, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h2, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h3, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h4, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h5, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors h6, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors a, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors a:visitied, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors p, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors span, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors blockquote, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors i, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors .gsheet--text, #gsheet_box_stacks_in_1021_1407.gsheet--box.gsheet--box-inherit-colors .gsheet--icon {
      color: inherit !important; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box .gsheet_box_ag_stacks_in_1021_1407 {
    display: none; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.position-absolute {
    position: absolute; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box .gsheet--box.position-absolute {
    max-width: 100%; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column {
    flex-direction: row;
    align-items: center; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column.col-h-flow-right {
      justify-content: flex-end; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column.col-h-flow-left {
      justify-content: flex-start; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column.col-h-flow-center {
      justify-content: center; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column.col-h-flow-split {
      justify-content: space-between; }
  #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row.row-h-flow-right {
      align-items: flex-end; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row.row-h-flow-left {
      align-items: flex-start; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row.row-h-flow-center {
      align-items: center; }
    #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--row.row-h-flow-stretch {
      align-items: stretch; }

@media (max-width: 500px) {
  #gsheet_box_stacks_in_1021_1407.gsheet--box.flow-direction--column {
    flex-wrap: wrap; } }

/*  */
#gsheet_text_stacks_in_1021_1409 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 1.00);
  font-size: 14px;
  line-height: 22.652000px; }
  #gsheet_text_stacks_in_1021_1409.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1409.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1409.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1409.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1409.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1409.gsheet-text--upper {
    text-align: inherit; }
#gsheet_text_stacks_in_1021_1411 {
  display: block;
  box-sizing: border-box;
  color: rgba(58, 62, 76, 0.50);
  font-size: 10px;
  line-height: 16.180000px; }
  #gsheet_text_stacks_in_1021_1411.fill-shrink {
    flex: 0 0 auto; }
  #gsheet_text_stacks_in_1021_1411.fill-grow {
    width: 100%;
    flex: 0 1 auto; }
  #gsheet_text_stacks_in_1021_1411.margin-True {
    margin: 0px 0px 0px 0px; }
  #gsheet_text_stacks_in_1021_1411.margin-False {
    margin: 0px; }
  #gsheet_text_stacks_in_1021_1411.inherit-text-color {
    color: inherit !important; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--bold {
    font-weight: bold; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--italic {
    font-style: italic; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--underline {
    text-decoration: underline; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--strike {
    text-decoration: line-through; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--left {
    text-align: left; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--right {
    text-align: right; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--center {
    text-align: center; }
  #gsheet_text_stacks_in_1021_1411.gsheet-text--upper {
    text-align: inherit; }
#stacks_in_1021_1414 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1021_1414 .jwresp_col_wrapper{margin:0;width:49%;float:left;position:relative;overflow:auto}#stacks_in_1021_1414 .jwresp_col_wrapper.right{float:right}#stacks_in_1021_1414 .jwresp_col{overflow:hidden;width:48%;float:left;margin:0}#stacks_in_1021_1414 #jwresp_col2_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col4_stacks_in_1021_1414{float:right}#stacks_in_1021_1414 #jwresp_col1_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col3_stacks_in_1021_1414{margin-right:2} @media screen and (max-width:770px){#stacks_in_1021_1414 .jwresp_col_wrapper.left,#stacks_in_1021_1414 .jwresp_col_wrapper.right{width:100%;float:none;clear:both}#stacks_in_1021_1414 .jwresp_col_wrapper.left{margin-bottom:20px}#stacks_in_1021_1414 .jwresp_col{width:49%}#stacks_in_1021_1414 #jwresp_col1_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col3_stacks_in_1021_1414{margin:0}}  @media screen and (max-width:500px){#stacks_in_1021_1414 .jwresp_col{width:100%;display:block}#stacks_in_1021_1414 #jwresp_col1_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col2_stacks_in_1021_1414,#stacks_in_1021_1414 #jwresp_col3_stacks_in_1021_1414{margin:0;margin-bottom:20px}#stacks_in_1021_1414 #jwresp_col4_stacks_in_1021_1414{margin:0}#stacks_in_1021_1414 .jwresp_col_wrapper.left{margin-bottom:0}}

#stacks_in_1021_1414 {
	padding: 40px 30px 0px 30px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1419 {
  overflow: visible;
}
#pureText_stacks_in_1021_1419 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1419 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1419 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1419 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1419 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1419.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1419.fontSizeInheritOff, #pureText_stacks_in_1021_1419.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1419.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1419.lineHeightOn, #pureText_stacks_in_1021_1419.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1419.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1419.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1419 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1419 p.insideText,
#pureText_stacks_in_1021_1419 .insideText p,
#pureText_stacks_in_1021_1419 h1.insideText,
#pureText_stacks_in_1021_1419 h2.insideText,
#pureText_stacks_in_1021_1419 h3.insideText,
#pureText_stacks_in_1021_1419 h4.insideText,
#pureText_stacks_in_1021_1419 h5.insideText,
#pureText_stacks_in_1021_1419 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1419 {
	padding: 0px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1427 {
  overflow: visible;
}
#pureText_stacks_in_1021_1427 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1427 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1427 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1427 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1427 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1427.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1427.fontSizeInheritOff, #pureText_stacks_in_1021_1427.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1427.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1427.lineHeightOn, #pureText_stacks_in_1021_1427.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1427.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1427.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1427 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1427 p.insideText,
#pureText_stacks_in_1021_1427 .insideText p,
#pureText_stacks_in_1021_1427 h1.insideText,
#pureText_stacks_in_1021_1427 h2.insideText,
#pureText_stacks_in_1021_1427 h3.insideText,
#pureText_stacks_in_1021_1427 h4.insideText,
#pureText_stacks_in_1021_1427 h5.insideText,
#pureText_stacks_in_1021_1427 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1427 {
	padding: 10px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1421 {
  overflow: visible;
}
#pureText_stacks_in_1021_1421 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1421 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1421 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1421 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1421 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1421.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1421.fontSizeInheritOff, #pureText_stacks_in_1021_1421.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1421.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1421.lineHeightOn, #pureText_stacks_in_1021_1421.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1421.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1421.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1421 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1421 p.insideText,
#pureText_stacks_in_1021_1421 .insideText p,
#pureText_stacks_in_1021_1421 h1.insideText,
#pureText_stacks_in_1021_1421 h2.insideText,
#pureText_stacks_in_1021_1421 h3.insideText,
#pureText_stacks_in_1021_1421 h4.insideText,
#pureText_stacks_in_1021_1421 h5.insideText,
#pureText_stacks_in_1021_1421 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1421 {
	padding: 0px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1429 {
  overflow: visible;
}
#pureText_stacks_in_1021_1429 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1429 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1429 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1429 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1429 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1429.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1429.fontSizeInheritOff, #pureText_stacks_in_1021_1429.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1429.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1429.lineHeightOn, #pureText_stacks_in_1021_1429.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1429.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1429.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1429 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1429 p.insideText,
#pureText_stacks_in_1021_1429 .insideText p,
#pureText_stacks_in_1021_1429 h1.insideText,
#pureText_stacks_in_1021_1429 h2.insideText,
#pureText_stacks_in_1021_1429 h3.insideText,
#pureText_stacks_in_1021_1429 h4.insideText,
#pureText_stacks_in_1021_1429 h5.insideText,
#pureText_stacks_in_1021_1429 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1429 {
	padding: 10px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1423 {
  overflow: visible;
}
#pureText_stacks_in_1021_1423 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1423 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1423 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1423 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1423 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1423.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1423.fontSizeInheritOff, #pureText_stacks_in_1021_1423.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1423.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1423.lineHeightOn, #pureText_stacks_in_1021_1423.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1423.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1423.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1423 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1423 p.insideText,
#pureText_stacks_in_1021_1423 .insideText p,
#pureText_stacks_in_1021_1423 h1.insideText,
#pureText_stacks_in_1021_1423 h2.insideText,
#pureText_stacks_in_1021_1423 h3.insideText,
#pureText_stacks_in_1021_1423 h4.insideText,
#pureText_stacks_in_1021_1423 h5.insideText,
#pureText_stacks_in_1021_1423 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1423 {
	padding: 0px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1431 {
  overflow: visible;
}
#pureText_stacks_in_1021_1431 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1431 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1431 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1431 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1431 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1431.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1431.fontSizeInheritOff, #pureText_stacks_in_1021_1431.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1431.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1431.lineHeightOn, #pureText_stacks_in_1021_1431.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1431.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1431.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1431 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1431 p.insideText,
#pureText_stacks_in_1021_1431 .insideText p,
#pureText_stacks_in_1021_1431 h1.insideText,
#pureText_stacks_in_1021_1431 h2.insideText,
#pureText_stacks_in_1021_1431 h3.insideText,
#pureText_stacks_in_1021_1431 h4.insideText,
#pureText_stacks_in_1021_1431 h5.insideText,
#pureText_stacks_in_1021_1431 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1431 {
	padding: 10px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1425 {
  overflow: visible;
}
#pureText_stacks_in_1021_1425 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1425 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1425 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1425 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1425 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1425.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1425.fontSizeInheritOff, #pureText_stacks_in_1021_1425.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1425.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1425.lineHeightOn, #pureText_stacks_in_1021_1425.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1425.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1425.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1425 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1425 p.insideText,
#pureText_stacks_in_1021_1425 .insideText p,
#pureText_stacks_in_1021_1425 h1.insideText,
#pureText_stacks_in_1021_1425 h2.insideText,
#pureText_stacks_in_1021_1425 h3.insideText,
#pureText_stacks_in_1021_1425 h4.insideText,
#pureText_stacks_in_1021_1425 h5.insideText,
#pureText_stacks_in_1021_1425 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1425 {
	padding: 0px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_1433 {
  overflow: visible;
}
#pureText_stacks_in_1021_1433 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_1433 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_1433 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_1433 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_1433 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_1433.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_1433.fontSizeInheritOff, #pureText_stacks_in_1021_1433.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_1433.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_1433.lineHeightOn, #pureText_stacks_in_1021_1433.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_1433.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_1433.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_1433 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_1433 p.insideText,
#pureText_stacks_in_1021_1433 .insideText p,
#pureText_stacks_in_1021_1433 h1.insideText,
#pureText_stacks_in_1021_1433 h2.insideText,
#pureText_stacks_in_1021_1433 h3.insideText,
#pureText_stacks_in_1021_1433 h4.insideText,
#pureText_stacks_in_1021_1433 h5.insideText,
#pureText_stacks_in_1021_1433 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_1433 {
	padding: 10px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_9 {
  overflow: visible;
}
#pureText_stacks_in_1021_9 .insideText {
  
    font-size: 11px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_9 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_9 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_9 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_9 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_9.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_9.fontSizeInheritOff, #pureText_stacks_in_1021_9.fontSizeInheritOff span {
  font-size: 11px !important;
  line-height: 11px;
}
#pureText_stacks_in_1021_9.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_9.lineHeightOn, #pureText_stacks_in_1021_9.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_9.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_9.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_9 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_9 p.insideText,
#pureText_stacks_in_1021_9 .insideText p,
#pureText_stacks_in_1021_9 h1.insideText,
#pureText_stacks_in_1021_9 h2.insideText,
#pureText_stacks_in_1021_9 h3.insideText,
#pureText_stacks_in_1021_9 h4.insideText,
#pureText_stacks_in_1021_9 h5.insideText,
#pureText_stacks_in_1021_9 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_9 {
	padding: 60px 20px 0px 20px;
}
/*
 * Pure Text
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.1.1
 * +link colors were not working
 */
#stacks_in_1021_11 {
  overflow: visible;
}
#pureText_stacks_in_1021_11 .insideText {
  
    font-size: 12px;
  
  
  
  letter-spacing: 2px;
  
  
  font-weight: 400;
  
}













#pureText_stacks_in_1021_11 a {
  color: #0F80FF !important;
  text-decoration: none;
}
#pureText_stacks_in_1021_11 a:hover {
  color: #FD8008 !important;
}
/*
#pureText_stacks_in_1021_11 p {
  margin: 0;
  padding: 0;
}
*/
#pureText_stacks_in_1021_11 {
  position: relative;
  
  
  
  
  
  
}
/*
#pureText_stacks_in_1021_11.fontSizeInheritOn {
  font-size: inherit;
}
#pureText_stacks_in_1021_11.fontSizeInheritOff, #pureText_stacks_in_1021_11.fontSizeInheritOff span {
  font-size: 12px !important;
  line-height: 12px;
}
#pureText_stacks_in_1021_11.letterSpacingOn {
  letter-spacing: 2px;
}
#pureText_stacks_in_1021_11.lineHeightOn, #pureText_stacks_in_1021_11.lineHeightOn span {
  line-height: 20px !important;
}
*/
#pureText_stacks_in_1021_11.rotateOn .insideText {
  -webkit-transform:rotate(270deg);
  -moz-transform:rotate(270deg);
  -o-transform:rotate(270deg);
  -ms-transform:rotate(270deg);
  display: inline-block;
}
#pureText_stacks_in_1021_11.optJustify {
  text-align: justify;
}

/*


#pureText_stacks_in_1021_11 .insideText {
  font-weight: 400;
}

*/

#pureText_stacks_in_1021_11 p.insideText,
#pureText_stacks_in_1021_11 .insideText p,
#pureText_stacks_in_1021_11 h1.insideText,
#pureText_stacks_in_1021_11 h2.insideText,
#pureText_stacks_in_1021_11 h3.insideText,
#pureText_stacks_in_1021_11 h4.insideText,
#pureText_stacks_in_1021_11 h5.insideText,
#pureText_stacks_in_1021_11 h6.insideText {
  margin: 0;
  padding: 0;
}



#stacks_in_1021_11 {
	padding: 10px 20px 10px 20px;
}
