.slabtexted .slabtext{display:-moz-inline-box;display:inline-block;white-space:nowrap}.slabtextinactive .slabtext{display:inline;white-space:normal;font-size:1em!important;letter-spacing:inherit!important;word-spacing:inherit!important;*letter-spacing:0!important;*word-spacing:0!important}.slabtextdone .slabtext{display:block;line-height:.9}
@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;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-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-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-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-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-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-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
}
.elxr_elxr_twisterInUp {
  -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-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-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-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);
  }
}
@-moz-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2,2);
    -moz-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1,1);
    -moz-filter: blur(0px);
  }
}
@-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);
  }
}
@-o-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1,1);
    filter: blur(0px);
  }
}
@keyframes elxr_puffIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-moz-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-webkit-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-o-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-ms-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {;
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 0 0;
    -ms-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-moz-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-moz-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}.com_joeworkman_stacks_impact_stack .impact-animate.pre-anim{display:none}.com_joeworkman_stacks_impact_stack .slides-navigation{margin:0 auto;position:absolute;z-index:99;width:100%}.com_joeworkman_stacks_impact_stack .slides-navigation a{position:absolute;display:block;text-decoration:none}.com_joeworkman_stacks_impact_stack .slides-navigation a::before{line-height:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;text-rendering:auto;-webkit-transform:translate(0,0);transform:translate(0,0)}.com_joeworkman_stacks_impact_stack .slides-pagination > a{text-decoration:none}.com_joeworkman_stacks_impact_stack .fg-content{position:absolute;top:0;width:100%}.com_joeworkman_stacks_impact_stack .slides-navigation a:before{font-family:"FontAwesome","Font Awesome 5 Pro";font-weight:900}.com_joeworkman_stacks_impact_stack .impact-scroll:hover{cursor:pointer}.com_joeworkman_stacks_impact_stack .slides-container{display:none}.com_joeworkman_stacks_impact_stack .scrollable{position:relative;top:0;left:0;overflow-y:auto;-webkit-overflow-scrolling:touch;height:100%}.com_joeworkman_stacks_impact_stack .scrollable::after{content:"";display:table;clear:both}.com_joeworkman_stacks_impact_stack .impact-arrow-wrap{position:absolute;z-index:1050;top:0;margin-left:-45px;width:90px;height:90px;padding:0;font-size:9px;display:block}.com_joeworkman_stacks_impact_stack .impact-arrow{float:left;position:absolute;margin-top:20px;margin-left:23px;width:40px;height:40px;border-style:solid;border-bottom-color:transparent;border-left-color:transparent;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.com_joeworkman_stacks_impact_stack .impact-arrow-wrap.animates .impact-arrow{-webkit-animation:impactArrows linear 1.8s 0.4s;animation:impactArrows linear 1.8s 0.4s}.com_joeworkman_stacks_impact_stack .video-container{min-height:100%;min-width:100%;position:absolute;top:0;left:0}.com_joeworkman_stacks_impact_stack .video-container > img{width:100%;height:100%}.com_joeworkman_stacks_impact_stack video{max-width:none}.com_joeworkman_stacks_impact_stack .impact-container{position:absolute}.com_joeworkman_stacks_impact_stack .impact-container.v-full{height:100%}.com_joeworkman_stacks_impact_stack .impact-container.v-full .slide-content{height:100%}.com_joeworkman_stacks_impact_stack .impact-container.v-center{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.com_joeworkman_stacks_impact_stack .impact-container.h-center{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.com_joeworkman_stacks_impact_stack .impact-container.h-center.v-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.com_joeworkman_stacks_impact_stack .impact-container:not(.h-center):not(.h-left):not(.h-right){width:100%}@-webkit-keyframes impactArrows{0%{-webkit-transform:translate(0px,0px) rotate(135deg) scale(1);transform:translate(0px,0px) rotate(135deg) scale(1)}15%{-webkit-transform:translate(0px,22px) rotate(135deg) scale(0.8);transform:translate(0px,22px) rotate(135deg) scale(0.8)}30%{-webkit-transform:translate(0px,13px) rotate(135deg) scale(0.9);transform:translate(0px,13px) rotate(135deg) scale(0.9)}45%{-webkit-transform:translate(0px,27px) rotate(135deg) scale(0.8);transform:translate(0px,27px) rotate(135deg) scale(0.8)}60%{-webkit-transform:translate(0px,13px) rotate(135deg) scale(0.8);transform:translate(0px,13px) rotate(135deg) scale(0.8)}75%{-webkit-transform:translate(0px,4px) rotate(135deg) scale(0.9);transform:translate(0px,4px) rotate(135deg) scale(0.9)}100%{-webkit-transform:translate(0px,0px) rotate(135deg) scale(1);transform:translate(0px,0px) rotate(135deg) scale(1)}}@keyframes impactArrows{0%{-webkit-transform:translate(0px,0px) rotate(135deg) scale(1);transform:translate(0px,0px) rotate(135deg) scale(1)}15%{-webkit-transform:translate(0px,22px) rotate(135deg) scale(0.8);transform:translate(0px,22px) rotate(135deg) scale(0.8)}30%{-webkit-transform:translate(0px,13px) rotate(135deg) scale(0.9);transform:translate(0px,13px) rotate(135deg) scale(0.9)}45%{-webkit-transform:translate(0px,27px) rotate(135deg) scale(0.8);transform:translate(0px,27px) rotate(135deg) scale(0.8)}60%{-webkit-transform:translate(0px,13px) rotate(135deg) scale(0.8);transform:translate(0px,13px) rotate(135deg) scale(0.8)}75%{-webkit-transform:translate(0px,4px) rotate(135deg) scale(0.9);transform:translate(0px,4px) rotate(135deg) scale(0.9)}100%{-webkit-transform:translate(0px,0px) rotate(135deg) scale(1);transform:translate(0px,0px) rotate(135deg) scale(1)}}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81406 {
      margin: 0px;      
    }

    #stacks_in_81406 {
      padding: 0px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81406 {
      margin: 0px;      
    }

    #stacks_in_81406 {
      padding: 0px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81406 {
      margin: 0px;      
    }

    #stacks_in_81406 {
      padding: 0px;      
    }


    

    
  

}


#stacks_in_81406 {
	margin:  11px;
	padding:  5px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81388 article,
#stacks_in_81388 aside,
#stacks_in_81388 details,
#stacks_in_81388 figcaption,
#stacks_in_81388 figure,
#stacks_in_81388 footer,
#stacks_in_81388 header,
#stacks_in_81388 hgroup,
#stacks_in_81388 main,
#stacks_in_81388 nav,
#stacks_in_81388 section,
#stacks_in_81388 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81388 audio,
#stacks_in_81388 canvas,
#stacks_in_81388 progress,
#stacks_in_81388 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81388 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81388 [hidden],
#stacks_in_81388 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81388 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81388 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81388 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81388 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81388 code,
#stacks_in_81388 kbd,
#stacks_in_81388 pre,
#stacks_in_81388 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81388 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81388 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81388 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81388 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81388 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81388 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81388 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81388 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81388 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81388 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81388 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81388 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81388 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81388 .left {
  float: left !important; }

#stacks_in_81388 .right {
  float: right !important; }

#stacks_in_81388 .clearfix:before,
#stacks_in_81388 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81388 .clearfix:after {
  clear: both; }

#stacks_in_81388 .hide {
  display: none; }

#stacks_in_81388 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81388 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81388 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81388 select {
  width: 100%; }

#stacks_in_81388 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81388 .row:before,
#stacks_in_81388 .row:after {
  content: " ";
  display: table; }

#stacks_in_81388 .row:after {
  clear: both; }

#stacks_in_81388 .row.collapse > .column,
#stacks_in_81388 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81388 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81388 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81388 .row .row:before,
#stacks_in_81388 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81388 .row .row:after {
  clear: both; }

#stacks_in_81388 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81388 .row .row.collapse:before,
#stacks_in_81388 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81388 .row .row.collapse:after {
  clear: both; }

#stacks_in_81388 .column,
#stacks_in_81388 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81388 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81388 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81388 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81388 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81388 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81388 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81388 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81388 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81388 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81388 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81388 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81388 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81388 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81388 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81388 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81388 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81388 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81388 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81388 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81388 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81388 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81388 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81388 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81388 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81388 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81388 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81388 .column,
  #stacks_in_81388 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81388 .small-1 {
    width: 8.33333%; }

  #stacks_in_81388 .small-2 {
    width: 16.66667%; }

  #stacks_in_81388 .small-3 {
    width: 25%; }

  #stacks_in_81388 .small-4 {
    width: 33.33333%; }

  #stacks_in_81388 .small-5 {
    width: 41.66667%; }

  #stacks_in_81388 .small-6 {
    width: 50%; }

  #stacks_in_81388 .small-7 {
    width: 58.33333%; }

  #stacks_in_81388 .small-8 {
    width: 66.66667%; }

  #stacks_in_81388 .small-9 {
    width: 75%; }

  #stacks_in_81388 .small-10 {
    width: 83.33333%; }

  #stacks_in_81388 .small-11 {
    width: 91.66667%; }

  #stacks_in_81388 .small-12 {
    width: 100%; }

  #stacks_in_81388 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81388 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81388 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81388 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81388 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81388 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81388 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81388 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81388 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81388 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81388 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81388 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81388 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81388 .column.small-centered,
  #stacks_in_81388 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81388 .column.small-uncentered,
  #stacks_in_81388 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81388 .column.small-centered:last-child,
  #stacks_in_81388 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81388 .column.small-uncentered:last-child,
  #stacks_in_81388 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81388 .column.small-uncentered.opposite,
  #stacks_in_81388 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81388 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81388 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81388 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81388 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81388 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81388 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81388 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81388 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81388 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81388 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81388 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81388 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81388 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81388 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81388 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81388 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81388 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81388 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81388 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81388 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81388 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81388 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81388 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81388 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81388 .column,
  #stacks_in_81388 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81388 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81388 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81388 .medium-3 {
    width: 25%; }

  #stacks_in_81388 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81388 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81388 .medium-6 {
    width: 50%; }

  #stacks_in_81388 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81388 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81388 .medium-9 {
    width: 75%; }

  #stacks_in_81388 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81388 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81388 .medium-12 {
    width: 100%; }

  #stacks_in_81388 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81388 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81388 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81388 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81388 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81388 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81388 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81388 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81388 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81388 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81388 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81388 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81388 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81388 .column.medium-centered,
  #stacks_in_81388 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81388 .column.medium-uncentered,
  #stacks_in_81388 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81388 .column.medium-centered:last-child,
  #stacks_in_81388 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81388 .column.medium-uncentered:last-child,
  #stacks_in_81388 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81388 .column.medium-uncentered.opposite,
  #stacks_in_81388 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81388 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81388 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81388 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81388 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81388 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81388 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81388 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81388 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81388 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81388 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81388 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81388 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81388 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81388 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81388 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81388 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81388 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81388 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81388 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81388 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81388 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81388 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81388 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81388 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81388 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81388 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81388 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81388 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81388 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81388 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81388 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81388 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81388 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81388 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81388 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81388 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81388 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81388 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81388 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81388 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81388 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81388 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81388 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81388 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81388 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81388 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81388 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81388 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81388 .column,
  #stacks_in_81388 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81388 .large-1 {
    width: 8.33333%; }

  #stacks_in_81388 .large-2 {
    width: 16.66667%; }

  #stacks_in_81388 .large-3 {
    width: 25%; }

  #stacks_in_81388 .large-4 {
    width: 33.33333%; }

  #stacks_in_81388 .large-5 {
    width: 41.66667%; }

  #stacks_in_81388 .large-6 {
    width: 50%; }

  #stacks_in_81388 .large-7 {
    width: 58.33333%; }

  #stacks_in_81388 .large-8 {
    width: 66.66667%; }

  #stacks_in_81388 .large-9 {
    width: 75%; }

  #stacks_in_81388 .large-10 {
    width: 83.33333%; }

  #stacks_in_81388 .large-11 {
    width: 91.66667%; }

  #stacks_in_81388 .large-12 {
    width: 100%; }

  #stacks_in_81388 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81388 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81388 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81388 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81388 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81388 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81388 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81388 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81388 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81388 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81388 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81388 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81388 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81388 .column.large-centered,
  #stacks_in_81388 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81388 .column.large-uncentered,
  #stacks_in_81388 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81388 .column.large-centered:last-child,
  #stacks_in_81388 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81388 .column.large-uncentered:last-child,
  #stacks_in_81388 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81388 .column.large-uncentered.opposite,
  #stacks_in_81388 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81388 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81388 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81388 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81388 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81388 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81388 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81388 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81388 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81388 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81388 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81388 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81388 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81388 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81388 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81388 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81388 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81388 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81388 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81388 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81388 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81388 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81388 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81388 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81388 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81388 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81388 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81388 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81388 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81388 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81388 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81388 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81388 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81388 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81388 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81388 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81388 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81388 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81388 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81388 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81388 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81388 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81388 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81388 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81389 {
      margin: 11px;      
    }

    #stacks_in_81389 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81389 {
      margin: 11px;      
    }

    #stacks_in_81389 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81389 {
      margin: 11px;      
    }

    #stacks_in_81389 {
      padding: 6px;      
    }


    

    
  

}

#stacks_in_81390 .fg-content.fg-full-height{height:100%}#stacks_in_81390 .slides-container{margin:0}#stacks_in_81390 .slides-container > li{margin:0}#stacks_in_81390 .slides-container > li::before,#stacks_in_81390 .slides-container > li::after{content:"";top:0;left:0;bottom:0;right:0;height:100%;position:absolute;z-index:2;-webkit-transition:opacity 80ms ease;transition:opacity 80ms ease}#stacks_in_81390 .slides-container.ovl-color li::before{background-color:rgba(89, 237, 212, 0.30)}#stacks_in_81390 .slides-container.ovl-tile li::after{background-image:url();opacity:0.30;background-repeat:repeat}#stacks_in_81390 .fg-per-show{position:absolute;z-index:5;width:100%;height:100%}#stacks_in_81390 .impact-wrapper{z-index:0}#stacks_in_81390 .impact-wrapper.fill-container{min-width:100%}#stacks_in_81390 .impact-wrapper.fill-container.hero-header{height:100%;height:100vh;width:100%;width:100vw}@media only screen and (orientation:portrait){#stacks_in_81390 .impact-wrapper.fill-container.hero-header{height:100% !important}}#stacks_in_81390 .impact-wrapper.fixed-height{height:400px;width:100%;min-width:100%}#stacks_in_81390 .impact-wrapper.flexible-height{height:100vh;min-height:300px;width:100%;min-width:100%}#stacks_in_81390 .impact-wrapper.touch-device.cover-touch{background-size:cover;background-position:center center;overflow:hidden}#stacks_in_81390 .impact-wrapper.touch-device.cover-touch:not(.touch-warehouse){background-image:url()}#stacks_in_81390 .impact-wrapper.touch-device.cover-touch.touch-warehouse{background-image:url()}#stacks_in_81390 .impact-wrapper > .pre-loader{position:absolute;text-align:center;top:0;left:0;width:100%;height:100%;opacity:1;visibility:visible;-webkit-transition:opacity 80ms ease,visibility 0 0.2s;transition:opacity 80ms ease,visibility 0 0.2s}#stacks_in_81390 .impact-wrapper > .pre-loader.hidden{opacity:0;visibility:hidden}#stacks_in_81390 .impact-wrapper > .pre-loader > .pl-spinner{position:absolute;top:36%;margin-left:-32px;color:rgba(251, 251, 251, 0.90)}#stacks_in_81390 .impact-wrapper > .pre-loader > .pl-spinner.hidden{display:none}#stacks_in_81390 .impact-wrapper > .pre-loader.bg-image{background-size:cover;background-position:center center;background-repeat:no-repeat}#stacks_in_81390 .impact-wrapper > .pre-loader.bg-image.custom-image:not(.bg-warehouse){background-image:url()}#stacks_in_81390 .impact-wrapper > .pre-loader.bg-image.custom-image.bg-warehouse{background-image:url()}#stacks_in_81390 .impact-wrapper > .pre-loader.preload-color{background-color:rgba(51, 51, 51, 0.95)}#stacks_in_81390 .impact-wrapper > .pre-loader.bg-overlay{z-index:1}#stacks_in_81390 .impact-wrapper > .pre-loader.bg-overlay::before,#stacks_in_81390 .impact-wrapper > .pre-loader.bg-overlay::after{content:"";top:0;left:0;bottom:0;right:0;height:100%;position:absolute;z-index:0}#stacks_in_81390 .impact-wrapper > .pre-loader.bg-overlay.ovl-color::before{background-color:rgba(89, 237, 212, 0.30)}#stacks_in_81390 .impact-wrapper > .pre-loader.bg-overlay.ovl-tile::after{background-image:url();opacity:0.30;background-repeat:repeat}#stacks_in_81390 .impact-container{z-index:5}#stacks_in_81390 .scrollDown{position:absolute;cursor:pointer;z-index:100;left:50%;width:80px;height:80px;-webkit-touch-callout:none;-webkit-transform:scale(0.70);transform:scale(0.70);-webkit-transform-origin:left center;transform-origin:left center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media screen and (max-width:640px){#stacks_in_81390 .scrollDown{-webkit-transform:scale(0.70);transform:scale(0.70)}}#stacks_in_81390 .scrollDown.button-bottom{bottom:30px}#stacks_in_81390 .scrollDown.button-top{top:30px}@media screen and (max-width:640px){#stacks_in_81390 .scrollDown.hide-on-mob{display:none}}#stacks_in_81390 .impact-arrow-wrap{background:rgba(0, 0, 0, 0.85);border-radius:50%;border:2px solid rgba(255, 255, 255, 0.96);-webkit-box-shadow:0px 0px 0px 0px rgba(51, 51, 51, 0.60);box-shadow:0px 0px 0px 0px rgba(51, 51, 51, 0.60);-webkit-transition:all 90ms ease;transition:all 90ms ease}#stacks_in_81390 .impact-arrow-wrap:hover{background:rgba(40, 40, 40, 0.85);-webkit-transition:all 90ms ease;transition:all 90ms ease}#stacks_in_81390 .impact-arrow-wrap:hover .impact-hint{opacity:1 !important}#stacks_in_81390 .impact-arrow-wrap.animates .impact-arrow{-webkit-animation-delay:3000ms;animation-delay:3000ms;-webkit-animation-iteration-count:3;animation-iteration-count:3}#stacks_in_81390 .impact-arrow{border-top-color:rgba(255, 255, 255, 0.85);border-right-color:rgba(255, 255, 255, 0.85);border-width:2px}#stacks_in_81390 .impact-arrow:hover{border-top-color:rgba(255, 255, 255, 1.00);border-right-color:rgba(255, 255, 255, 1.00)}#stacks_in_81390 .impact-hint{position:absolute;top:0.6em;width:100%;left:0;font-size:2em;font-style:italic;text-align:center;color:rgba(255, 255, 255, 0.85);opacity:0}#stacks_in_81390 .slides-pagination > a{-webkit-transition:all 6000ms ease;transition:all 6000ms ease}#stacks_in_81390 .slides-pagination > a.current{-webkit-transition:all 6000ms ease;transition:all 6000ms ease}

#stacks_in_81390 {
	padding:  2px;
}
#stacks_in_81391 .impact-slide{background-image:url("../files/slideshowImage-81391.jpg")}.slide-stacks_in_81391 .impact-container.v-bottom{bottom:0px}.slide-stacks_in_81391 .impact-container.h-right{right:0px}.slide-stacks_in_81391 .impact-container.h-left{left:0px}.slide-stacks_in_81391 .impact-container.v-top{top:0px}
#stacks_in_81392 .impact-slide{background-image:url("../files/slideshowImage-81392.jpg")}.slide-stacks_in_81392 .impact-container.v-bottom{bottom:0px}.slide-stacks_in_81392 .impact-container.h-right{right:0px}.slide-stacks_in_81392 .impact-container.h-left{left:0px}.slide-stacks_in_81392 .impact-container.v-top{top:0px}
#stacks_in_81393 .impact-slide{background-image:url("../files/slideshowImage-81393.jpg")}.slide-stacks_in_81393 .impact-container.v-bottom{bottom:0px}.slide-stacks_in_81393 .impact-container.h-right{right:0px}.slide-stacks_in_81393 .impact-container.h-left{left:0px}.slide-stacks_in_81393 .impact-container.v-top{top:0px}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81397 {
      margin: 8px;      
    }

    #stacks_in_81397 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81397 {
      margin: 48px;      
    }

    #stacks_in_81397 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81397 {
      margin: 8px;      
    }

    #stacks_in_81397 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81397 {
      margin: 8px;      
    }

    #stacks_in_81397 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81397 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}
         #stacks_in_81404 .slabtext{line-height:0.90}  #stacks_in_81404 .bb-text,#stacks_in_81404 div{margin-bottom:0}   #stacks_in_81404>.bb-text{padding-top:0px;margin-top:-0px}

#stacks_in_81404 {
    background-image: url("D719F016-5FD7-4F37-BF46-0BCDE359A128.jpg");
	background-repeat: repeat;
	background-size: contain;
	background-position: center;
	-moz-border-radius:  7px;
	-webkit-border-radius:  7px;
	border-radius:  7px;
	margin:  11px;
	padding:  11px;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81692 article,
#stacks_in_81692 aside,
#stacks_in_81692 details,
#stacks_in_81692 figcaption,
#stacks_in_81692 figure,
#stacks_in_81692 footer,
#stacks_in_81692 header,
#stacks_in_81692 hgroup,
#stacks_in_81692 main,
#stacks_in_81692 nav,
#stacks_in_81692 section,
#stacks_in_81692 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81692 audio,
#stacks_in_81692 canvas,
#stacks_in_81692 progress,
#stacks_in_81692 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81692 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81692 [hidden],
#stacks_in_81692 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81692 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81692 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81692 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81692 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81692 code,
#stacks_in_81692 kbd,
#stacks_in_81692 pre,
#stacks_in_81692 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81692 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81692 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81692 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81692 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81692 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81692 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81692 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81692 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81692 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81692 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81692 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81692 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81692 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81692 .left {
  float: left !important; }

#stacks_in_81692 .right {
  float: right !important; }

#stacks_in_81692 .clearfix:before,
#stacks_in_81692 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81692 .clearfix:after {
  clear: both; }

#stacks_in_81692 .hide {
  display: none; }

#stacks_in_81692 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81692 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81692 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81692 select {
  width: 100%; }

#stacks_in_81692 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81692 .row:before,
#stacks_in_81692 .row:after {
  content: " ";
  display: table; }

#stacks_in_81692 .row:after {
  clear: both; }

#stacks_in_81692 .row.collapse > .column,
#stacks_in_81692 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81692 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81692 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81692 .row .row:before,
#stacks_in_81692 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81692 .row .row:after {
  clear: both; }

#stacks_in_81692 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81692 .row .row.collapse:before,
#stacks_in_81692 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81692 .row .row.collapse:after {
  clear: both; }

#stacks_in_81692 .column,
#stacks_in_81692 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81692 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81692 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81692 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81692 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81692 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81692 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81692 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81692 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81692 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81692 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81692 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81692 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81692 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81692 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81692 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81692 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81692 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81692 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81692 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81692 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81692 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81692 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81692 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81692 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81692 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81692 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81692 .column,
  #stacks_in_81692 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81692 .small-1 {
    width: 8.33333%; }

  #stacks_in_81692 .small-2 {
    width: 16.66667%; }

  #stacks_in_81692 .small-3 {
    width: 25%; }

  #stacks_in_81692 .small-4 {
    width: 33.33333%; }

  #stacks_in_81692 .small-5 {
    width: 41.66667%; }

  #stacks_in_81692 .small-6 {
    width: 50%; }

  #stacks_in_81692 .small-7 {
    width: 58.33333%; }

  #stacks_in_81692 .small-8 {
    width: 66.66667%; }

  #stacks_in_81692 .small-9 {
    width: 75%; }

  #stacks_in_81692 .small-10 {
    width: 83.33333%; }

  #stacks_in_81692 .small-11 {
    width: 91.66667%; }

  #stacks_in_81692 .small-12 {
    width: 100%; }

  #stacks_in_81692 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81692 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81692 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81692 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81692 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81692 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81692 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81692 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81692 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81692 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81692 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81692 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81692 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81692 .column.small-centered,
  #stacks_in_81692 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81692 .column.small-uncentered,
  #stacks_in_81692 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81692 .column.small-centered:last-child,
  #stacks_in_81692 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81692 .column.small-uncentered:last-child,
  #stacks_in_81692 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81692 .column.small-uncentered.opposite,
  #stacks_in_81692 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81692 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81692 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81692 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81692 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81692 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81692 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81692 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81692 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81692 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81692 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81692 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81692 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81692 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81692 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81692 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81692 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81692 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81692 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81692 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81692 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81692 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81692 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81692 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81692 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81692 .column,
  #stacks_in_81692 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81692 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81692 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81692 .medium-3 {
    width: 25%; }

  #stacks_in_81692 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81692 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81692 .medium-6 {
    width: 50%; }

  #stacks_in_81692 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81692 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81692 .medium-9 {
    width: 75%; }

  #stacks_in_81692 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81692 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81692 .medium-12 {
    width: 100%; }

  #stacks_in_81692 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81692 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81692 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81692 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81692 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81692 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81692 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81692 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81692 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81692 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81692 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81692 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81692 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81692 .column.medium-centered,
  #stacks_in_81692 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81692 .column.medium-uncentered,
  #stacks_in_81692 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81692 .column.medium-centered:last-child,
  #stacks_in_81692 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81692 .column.medium-uncentered:last-child,
  #stacks_in_81692 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81692 .column.medium-uncentered.opposite,
  #stacks_in_81692 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81692 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81692 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81692 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81692 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81692 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81692 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81692 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81692 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81692 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81692 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81692 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81692 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81692 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81692 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81692 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81692 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81692 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81692 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81692 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81692 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81692 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81692 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81692 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81692 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81692 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81692 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81692 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81692 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81692 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81692 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81692 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81692 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81692 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81692 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81692 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81692 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81692 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81692 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81692 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81692 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81692 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81692 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81692 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81692 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81692 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81692 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81692 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81692 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81692 .column,
  #stacks_in_81692 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81692 .large-1 {
    width: 8.33333%; }

  #stacks_in_81692 .large-2 {
    width: 16.66667%; }

  #stacks_in_81692 .large-3 {
    width: 25%; }

  #stacks_in_81692 .large-4 {
    width: 33.33333%; }

  #stacks_in_81692 .large-5 {
    width: 41.66667%; }

  #stacks_in_81692 .large-6 {
    width: 50%; }

  #stacks_in_81692 .large-7 {
    width: 58.33333%; }

  #stacks_in_81692 .large-8 {
    width: 66.66667%; }

  #stacks_in_81692 .large-9 {
    width: 75%; }

  #stacks_in_81692 .large-10 {
    width: 83.33333%; }

  #stacks_in_81692 .large-11 {
    width: 91.66667%; }

  #stacks_in_81692 .large-12 {
    width: 100%; }

  #stacks_in_81692 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81692 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81692 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81692 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81692 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81692 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81692 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81692 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81692 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81692 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81692 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81692 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81692 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81692 .column.large-centered,
  #stacks_in_81692 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81692 .column.large-uncentered,
  #stacks_in_81692 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81692 .column.large-centered:last-child,
  #stacks_in_81692 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81692 .column.large-uncentered:last-child,
  #stacks_in_81692 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81692 .column.large-uncentered.opposite,
  #stacks_in_81692 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81692 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81692 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81692 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81692 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81692 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81692 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81692 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81692 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81692 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81692 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81692 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81692 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81692 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81692 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81692 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81692 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81692 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81692 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81692 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81692 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81692 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81692 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81692 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81692 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81692 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81692 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81692 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81692 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81692 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81692 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81692 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81692 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81692 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81692 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81692 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81692 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81692 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81692 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81692 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81692 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81692 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81692 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81692 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81694 {
      margin: 11px;      
    }

    #stacks_in_81694 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81694 {
      margin: 11px;      
    }

    #stacks_in_81694 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81694 {
      margin: 11px;      
    }

    #stacks_in_81694 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81707 {
      margin: 8px;      
    }

    #stacks_in_81707 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81707 {
      margin: 48px;      
    }

    #stacks_in_81707 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81707 {
      margin: 8px;      
    }

    #stacks_in_81707 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81707 {
      margin: 8px;      
    }

    #stacks_in_81707 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81707 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81673 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81674 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_82030 article,
#stacks_in_82030 aside,
#stacks_in_82030 details,
#stacks_in_82030 figcaption,
#stacks_in_82030 figure,
#stacks_in_82030 footer,
#stacks_in_82030 header,
#stacks_in_82030 hgroup,
#stacks_in_82030 main,
#stacks_in_82030 nav,
#stacks_in_82030 section,
#stacks_in_82030 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_82030 audio,
#stacks_in_82030 canvas,
#stacks_in_82030 progress,
#stacks_in_82030 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_82030 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_82030 [hidden],
#stacks_in_82030 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_82030 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_82030 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_82030 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_82030 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_82030 code,
#stacks_in_82030 kbd,
#stacks_in_82030 pre,
#stacks_in_82030 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_82030 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_82030 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_82030 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_82030 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_82030 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_82030 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_82030 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_82030 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_82030 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_82030 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_82030 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_82030 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_82030 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_82030 .left {
  float: left !important; }

#stacks_in_82030 .right {
  float: right !important; }

#stacks_in_82030 .clearfix:before,
#stacks_in_82030 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_82030 .clearfix:after {
  clear: both; }

#stacks_in_82030 .hide {
  display: none; }

#stacks_in_82030 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_82030 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_82030 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_82030 select {
  width: 100%; }

#stacks_in_82030 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_82030 .row:before,
#stacks_in_82030 .row:after {
  content: " ";
  display: table; }

#stacks_in_82030 .row:after {
  clear: both; }

#stacks_in_82030 .row.collapse > .column,
#stacks_in_82030 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_82030 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_82030 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_82030 .row .row:before,
#stacks_in_82030 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_82030 .row .row:after {
  clear: both; }

#stacks_in_82030 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_82030 .row .row.collapse:before,
#stacks_in_82030 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_82030 .row .row.collapse:after {
  clear: both; }

#stacks_in_82030 .column,
#stacks_in_82030 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_82030 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_82030 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_82030 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82030 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82030 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82030 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82030 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82030 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82030 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82030 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82030 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82030 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82030 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82030 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82030 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82030 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82030 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82030 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82030 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82030 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82030 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82030 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82030 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82030 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82030 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82030 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82030 .column,
  #stacks_in_82030 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82030 .small-1 {
    width: 8.33333%; }

  #stacks_in_82030 .small-2 {
    width: 16.66667%; }

  #stacks_in_82030 .small-3 {
    width: 25%; }

  #stacks_in_82030 .small-4 {
    width: 33.33333%; }

  #stacks_in_82030 .small-5 {
    width: 41.66667%; }

  #stacks_in_82030 .small-6 {
    width: 50%; }

  #stacks_in_82030 .small-7 {
    width: 58.33333%; }

  #stacks_in_82030 .small-8 {
    width: 66.66667%; }

  #stacks_in_82030 .small-9 {
    width: 75%; }

  #stacks_in_82030 .small-10 {
    width: 83.33333%; }

  #stacks_in_82030 .small-11 {
    width: 91.66667%; }

  #stacks_in_82030 .small-12 {
    width: 100%; }

  #stacks_in_82030 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82030 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82030 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82030 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82030 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82030 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82030 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82030 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82030 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82030 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82030 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82030 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82030 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82030 .column.small-centered,
  #stacks_in_82030 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82030 .column.small-uncentered,
  #stacks_in_82030 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82030 .column.small-centered:last-child,
  #stacks_in_82030 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_82030 .column.small-uncentered:last-child,
  #stacks_in_82030 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_82030 .column.small-uncentered.opposite,
  #stacks_in_82030 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_82030 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82030 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82030 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82030 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82030 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82030 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82030 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82030 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82030 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82030 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82030 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82030 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82030 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82030 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82030 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82030 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82030 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82030 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82030 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82030 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82030 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82030 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82030 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82030 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82030 .column,
  #stacks_in_82030 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82030 .medium-1 {
    width: 8.33333%; }

  #stacks_in_82030 .medium-2 {
    width: 16.66667%; }

  #stacks_in_82030 .medium-3 {
    width: 25%; }

  #stacks_in_82030 .medium-4 {
    width: 33.33333%; }

  #stacks_in_82030 .medium-5 {
    width: 41.66667%; }

  #stacks_in_82030 .medium-6 {
    width: 50%; }

  #stacks_in_82030 .medium-7 {
    width: 58.33333%; }

  #stacks_in_82030 .medium-8 {
    width: 66.66667%; }

  #stacks_in_82030 .medium-9 {
    width: 75%; }

  #stacks_in_82030 .medium-10 {
    width: 83.33333%; }

  #stacks_in_82030 .medium-11 {
    width: 91.66667%; }

  #stacks_in_82030 .medium-12 {
    width: 100%; }

  #stacks_in_82030 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82030 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82030 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82030 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82030 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82030 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82030 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82030 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82030 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82030 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82030 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82030 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82030 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82030 .column.medium-centered,
  #stacks_in_82030 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82030 .column.medium-uncentered,
  #stacks_in_82030 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82030 .column.medium-centered:last-child,
  #stacks_in_82030 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_82030 .column.medium-uncentered:last-child,
  #stacks_in_82030 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_82030 .column.medium-uncentered.opposite,
  #stacks_in_82030 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_82030 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82030 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82030 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82030 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82030 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82030 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82030 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82030 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82030 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82030 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82030 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82030 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82030 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82030 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82030 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82030 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82030 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82030 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82030 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82030 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82030 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82030 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82030 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82030 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_82030 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82030 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82030 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82030 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82030 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82030 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82030 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82030 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82030 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82030 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82030 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82030 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82030 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82030 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82030 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82030 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82030 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82030 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82030 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82030 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82030 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82030 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82030 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82030 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82030 .column,
  #stacks_in_82030 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82030 .large-1 {
    width: 8.33333%; }

  #stacks_in_82030 .large-2 {
    width: 16.66667%; }

  #stacks_in_82030 .large-3 {
    width: 25%; }

  #stacks_in_82030 .large-4 {
    width: 33.33333%; }

  #stacks_in_82030 .large-5 {
    width: 41.66667%; }

  #stacks_in_82030 .large-6 {
    width: 50%; }

  #stacks_in_82030 .large-7 {
    width: 58.33333%; }

  #stacks_in_82030 .large-8 {
    width: 66.66667%; }

  #stacks_in_82030 .large-9 {
    width: 75%; }

  #stacks_in_82030 .large-10 {
    width: 83.33333%; }

  #stacks_in_82030 .large-11 {
    width: 91.66667%; }

  #stacks_in_82030 .large-12 {
    width: 100%; }

  #stacks_in_82030 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82030 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82030 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82030 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82030 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82030 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82030 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82030 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82030 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82030 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82030 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82030 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82030 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82030 .column.large-centered,
  #stacks_in_82030 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82030 .column.large-uncentered,
  #stacks_in_82030 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82030 .column.large-centered:last-child,
  #stacks_in_82030 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_82030 .column.large-uncentered:last-child,
  #stacks_in_82030 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_82030 .column.large-uncentered.opposite,
  #stacks_in_82030 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_82030 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82030 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82030 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82030 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82030 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82030 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82030 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82030 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82030 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82030 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82030 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82030 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82030 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82030 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82030 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82030 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82030 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82030 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82030 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82030 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82030 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82030 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82030 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82030 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_82030 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_82030 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_82030 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_82030 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_82030 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_82030 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_82030 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_82030 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82030 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82030 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_82030 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82030 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82030 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_82030 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82030 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82030 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82030 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_82030 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_82030 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_82031 {
      margin: 11px;      
    }

    #stacks_in_82031 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_82031 {
      margin: 11px;      
    }

    #stacks_in_82031 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_82031 {
      margin: 11px;      
    }

    #stacks_in_82031 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_82036 {
      margin: 8px;      
    }

    #stacks_in_82036 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_82036 {
      margin: 48px;      
    }

    #stacks_in_82036 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_82036 {
      margin: 8px;      
    }

    #stacks_in_82036 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_82036 {
      margin: 8px;      
    }

    #stacks_in_82036 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_82036 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_82037 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_82039 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_82017 article,
#stacks_in_82017 aside,
#stacks_in_82017 details,
#stacks_in_82017 figcaption,
#stacks_in_82017 figure,
#stacks_in_82017 footer,
#stacks_in_82017 header,
#stacks_in_82017 hgroup,
#stacks_in_82017 main,
#stacks_in_82017 nav,
#stacks_in_82017 section,
#stacks_in_82017 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_82017 audio,
#stacks_in_82017 canvas,
#stacks_in_82017 progress,
#stacks_in_82017 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_82017 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_82017 [hidden],
#stacks_in_82017 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_82017 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_82017 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_82017 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_82017 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_82017 code,
#stacks_in_82017 kbd,
#stacks_in_82017 pre,
#stacks_in_82017 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_82017 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_82017 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_82017 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_82017 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_82017 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_82017 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_82017 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_82017 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_82017 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_82017 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_82017 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_82017 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_82017 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_82017 .left {
  float: left !important; }

#stacks_in_82017 .right {
  float: right !important; }

#stacks_in_82017 .clearfix:before,
#stacks_in_82017 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_82017 .clearfix:after {
  clear: both; }

#stacks_in_82017 .hide {
  display: none; }

#stacks_in_82017 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_82017 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_82017 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_82017 select {
  width: 100%; }

#stacks_in_82017 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_82017 .row:before,
#stacks_in_82017 .row:after {
  content: " ";
  display: table; }

#stacks_in_82017 .row:after {
  clear: both; }

#stacks_in_82017 .row.collapse > .column,
#stacks_in_82017 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_82017 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_82017 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_82017 .row .row:before,
#stacks_in_82017 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_82017 .row .row:after {
  clear: both; }

#stacks_in_82017 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_82017 .row .row.collapse:before,
#stacks_in_82017 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_82017 .row .row.collapse:after {
  clear: both; }

#stacks_in_82017 .column,
#stacks_in_82017 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_82017 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_82017 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_82017 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82017 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82017 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82017 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82017 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82017 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82017 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82017 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82017 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82017 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82017 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82017 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82017 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82017 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82017 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82017 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82017 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82017 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82017 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82017 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82017 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82017 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82017 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82017 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82017 .column,
  #stacks_in_82017 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82017 .small-1 {
    width: 8.33333%; }

  #stacks_in_82017 .small-2 {
    width: 16.66667%; }

  #stacks_in_82017 .small-3 {
    width: 25%; }

  #stacks_in_82017 .small-4 {
    width: 33.33333%; }

  #stacks_in_82017 .small-5 {
    width: 41.66667%; }

  #stacks_in_82017 .small-6 {
    width: 50%; }

  #stacks_in_82017 .small-7 {
    width: 58.33333%; }

  #stacks_in_82017 .small-8 {
    width: 66.66667%; }

  #stacks_in_82017 .small-9 {
    width: 75%; }

  #stacks_in_82017 .small-10 {
    width: 83.33333%; }

  #stacks_in_82017 .small-11 {
    width: 91.66667%; }

  #stacks_in_82017 .small-12 {
    width: 100%; }

  #stacks_in_82017 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82017 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82017 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82017 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82017 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82017 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82017 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82017 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82017 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82017 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82017 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82017 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82017 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82017 .column.small-centered,
  #stacks_in_82017 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82017 .column.small-uncentered,
  #stacks_in_82017 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82017 .column.small-centered:last-child,
  #stacks_in_82017 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_82017 .column.small-uncentered:last-child,
  #stacks_in_82017 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_82017 .column.small-uncentered.opposite,
  #stacks_in_82017 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_82017 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82017 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82017 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82017 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82017 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82017 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82017 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82017 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82017 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82017 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82017 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82017 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82017 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82017 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82017 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82017 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82017 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82017 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82017 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82017 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82017 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82017 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82017 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82017 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82017 .column,
  #stacks_in_82017 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82017 .medium-1 {
    width: 8.33333%; }

  #stacks_in_82017 .medium-2 {
    width: 16.66667%; }

  #stacks_in_82017 .medium-3 {
    width: 25%; }

  #stacks_in_82017 .medium-4 {
    width: 33.33333%; }

  #stacks_in_82017 .medium-5 {
    width: 41.66667%; }

  #stacks_in_82017 .medium-6 {
    width: 50%; }

  #stacks_in_82017 .medium-7 {
    width: 58.33333%; }

  #stacks_in_82017 .medium-8 {
    width: 66.66667%; }

  #stacks_in_82017 .medium-9 {
    width: 75%; }

  #stacks_in_82017 .medium-10 {
    width: 83.33333%; }

  #stacks_in_82017 .medium-11 {
    width: 91.66667%; }

  #stacks_in_82017 .medium-12 {
    width: 100%; }

  #stacks_in_82017 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82017 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82017 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82017 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82017 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82017 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82017 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82017 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82017 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82017 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82017 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82017 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82017 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82017 .column.medium-centered,
  #stacks_in_82017 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82017 .column.medium-uncentered,
  #stacks_in_82017 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82017 .column.medium-centered:last-child,
  #stacks_in_82017 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_82017 .column.medium-uncentered:last-child,
  #stacks_in_82017 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_82017 .column.medium-uncentered.opposite,
  #stacks_in_82017 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_82017 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82017 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82017 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82017 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82017 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82017 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82017 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82017 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82017 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82017 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82017 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82017 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82017 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82017 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82017 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82017 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82017 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82017 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82017 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82017 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82017 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82017 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82017 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82017 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_82017 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82017 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82017 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82017 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82017 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82017 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82017 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82017 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82017 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82017 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82017 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82017 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82017 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82017 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82017 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82017 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82017 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82017 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82017 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82017 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82017 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82017 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82017 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82017 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82017 .column,
  #stacks_in_82017 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82017 .large-1 {
    width: 8.33333%; }

  #stacks_in_82017 .large-2 {
    width: 16.66667%; }

  #stacks_in_82017 .large-3 {
    width: 25%; }

  #stacks_in_82017 .large-4 {
    width: 33.33333%; }

  #stacks_in_82017 .large-5 {
    width: 41.66667%; }

  #stacks_in_82017 .large-6 {
    width: 50%; }

  #stacks_in_82017 .large-7 {
    width: 58.33333%; }

  #stacks_in_82017 .large-8 {
    width: 66.66667%; }

  #stacks_in_82017 .large-9 {
    width: 75%; }

  #stacks_in_82017 .large-10 {
    width: 83.33333%; }

  #stacks_in_82017 .large-11 {
    width: 91.66667%; }

  #stacks_in_82017 .large-12 {
    width: 100%; }

  #stacks_in_82017 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82017 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82017 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82017 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82017 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82017 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82017 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82017 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82017 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82017 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82017 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82017 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82017 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82017 .column.large-centered,
  #stacks_in_82017 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82017 .column.large-uncentered,
  #stacks_in_82017 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82017 .column.large-centered:last-child,
  #stacks_in_82017 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_82017 .column.large-uncentered:last-child,
  #stacks_in_82017 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_82017 .column.large-uncentered.opposite,
  #stacks_in_82017 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_82017 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82017 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82017 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82017 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82017 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82017 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82017 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82017 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82017 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82017 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82017 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82017 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82017 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82017 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82017 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82017 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82017 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82017 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82017 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82017 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82017 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82017 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82017 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82017 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_82017 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_82017 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_82017 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_82017 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_82017 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_82017 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_82017 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_82017 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82017 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82017 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_82017 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82017 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82017 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_82017 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82017 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82017 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82017 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_82017 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_82017 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_82018 {
      margin: 11px;      
    }

    #stacks_in_82018 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_82018 {
      margin: 11px;      
    }

    #stacks_in_82018 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_82018 {
      margin: 11px;      
    }

    #stacks_in_82018 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_82023 {
      margin: 8px;      
    }

    #stacks_in_82023 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_82023 {
      margin: 48px;      
    }

    #stacks_in_82023 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_82023 {
      margin: 8px;      
    }

    #stacks_in_82023 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_82023 {
      margin: 8px;      
    }

    #stacks_in_82023 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_82023 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_82024 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_82026 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_82004 article,
#stacks_in_82004 aside,
#stacks_in_82004 details,
#stacks_in_82004 figcaption,
#stacks_in_82004 figure,
#stacks_in_82004 footer,
#stacks_in_82004 header,
#stacks_in_82004 hgroup,
#stacks_in_82004 main,
#stacks_in_82004 nav,
#stacks_in_82004 section,
#stacks_in_82004 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_82004 audio,
#stacks_in_82004 canvas,
#stacks_in_82004 progress,
#stacks_in_82004 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_82004 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_82004 [hidden],
#stacks_in_82004 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_82004 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_82004 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_82004 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_82004 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_82004 code,
#stacks_in_82004 kbd,
#stacks_in_82004 pre,
#stacks_in_82004 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_82004 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_82004 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_82004 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_82004 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_82004 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_82004 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_82004 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_82004 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_82004 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_82004 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_82004 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_82004 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_82004 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_82004 .left {
  float: left !important; }

#stacks_in_82004 .right {
  float: right !important; }

#stacks_in_82004 .clearfix:before,
#stacks_in_82004 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_82004 .clearfix:after {
  clear: both; }

#stacks_in_82004 .hide {
  display: none; }

#stacks_in_82004 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_82004 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_82004 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_82004 select {
  width: 100%; }

#stacks_in_82004 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_82004 .row:before,
#stacks_in_82004 .row:after {
  content: " ";
  display: table; }

#stacks_in_82004 .row:after {
  clear: both; }

#stacks_in_82004 .row.collapse > .column,
#stacks_in_82004 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_82004 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_82004 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_82004 .row .row:before,
#stacks_in_82004 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_82004 .row .row:after {
  clear: both; }

#stacks_in_82004 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_82004 .row .row.collapse:before,
#stacks_in_82004 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_82004 .row .row.collapse:after {
  clear: both; }

#stacks_in_82004 .column,
#stacks_in_82004 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_82004 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_82004 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_82004 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82004 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82004 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82004 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82004 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82004 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82004 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82004 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82004 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82004 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82004 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82004 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82004 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82004 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82004 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82004 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82004 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82004 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82004 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82004 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82004 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82004 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82004 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82004 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82004 .column,
  #stacks_in_82004 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82004 .small-1 {
    width: 8.33333%; }

  #stacks_in_82004 .small-2 {
    width: 16.66667%; }

  #stacks_in_82004 .small-3 {
    width: 25%; }

  #stacks_in_82004 .small-4 {
    width: 33.33333%; }

  #stacks_in_82004 .small-5 {
    width: 41.66667%; }

  #stacks_in_82004 .small-6 {
    width: 50%; }

  #stacks_in_82004 .small-7 {
    width: 58.33333%; }

  #stacks_in_82004 .small-8 {
    width: 66.66667%; }

  #stacks_in_82004 .small-9 {
    width: 75%; }

  #stacks_in_82004 .small-10 {
    width: 83.33333%; }

  #stacks_in_82004 .small-11 {
    width: 91.66667%; }

  #stacks_in_82004 .small-12 {
    width: 100%; }

  #stacks_in_82004 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82004 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82004 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82004 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82004 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82004 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82004 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82004 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82004 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82004 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82004 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82004 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82004 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82004 .column.small-centered,
  #stacks_in_82004 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82004 .column.small-uncentered,
  #stacks_in_82004 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82004 .column.small-centered:last-child,
  #stacks_in_82004 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_82004 .column.small-uncentered:last-child,
  #stacks_in_82004 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_82004 .column.small-uncentered.opposite,
  #stacks_in_82004 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_82004 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82004 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82004 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82004 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82004 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82004 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82004 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82004 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82004 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82004 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82004 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82004 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82004 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82004 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82004 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82004 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82004 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82004 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82004 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82004 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82004 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82004 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82004 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82004 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82004 .column,
  #stacks_in_82004 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82004 .medium-1 {
    width: 8.33333%; }

  #stacks_in_82004 .medium-2 {
    width: 16.66667%; }

  #stacks_in_82004 .medium-3 {
    width: 25%; }

  #stacks_in_82004 .medium-4 {
    width: 33.33333%; }

  #stacks_in_82004 .medium-5 {
    width: 41.66667%; }

  #stacks_in_82004 .medium-6 {
    width: 50%; }

  #stacks_in_82004 .medium-7 {
    width: 58.33333%; }

  #stacks_in_82004 .medium-8 {
    width: 66.66667%; }

  #stacks_in_82004 .medium-9 {
    width: 75%; }

  #stacks_in_82004 .medium-10 {
    width: 83.33333%; }

  #stacks_in_82004 .medium-11 {
    width: 91.66667%; }

  #stacks_in_82004 .medium-12 {
    width: 100%; }

  #stacks_in_82004 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82004 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82004 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82004 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82004 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82004 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82004 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82004 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82004 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82004 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82004 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82004 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82004 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82004 .column.medium-centered,
  #stacks_in_82004 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82004 .column.medium-uncentered,
  #stacks_in_82004 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82004 .column.medium-centered:last-child,
  #stacks_in_82004 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_82004 .column.medium-uncentered:last-child,
  #stacks_in_82004 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_82004 .column.medium-uncentered.opposite,
  #stacks_in_82004 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_82004 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82004 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82004 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82004 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82004 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82004 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82004 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82004 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82004 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82004 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82004 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82004 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82004 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82004 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82004 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82004 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82004 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82004 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82004 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82004 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82004 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82004 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82004 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82004 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_82004 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82004 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82004 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82004 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82004 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82004 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82004 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82004 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82004 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82004 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82004 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82004 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82004 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82004 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82004 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82004 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82004 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82004 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82004 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82004 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82004 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82004 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82004 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82004 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82004 .column,
  #stacks_in_82004 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82004 .large-1 {
    width: 8.33333%; }

  #stacks_in_82004 .large-2 {
    width: 16.66667%; }

  #stacks_in_82004 .large-3 {
    width: 25%; }

  #stacks_in_82004 .large-4 {
    width: 33.33333%; }

  #stacks_in_82004 .large-5 {
    width: 41.66667%; }

  #stacks_in_82004 .large-6 {
    width: 50%; }

  #stacks_in_82004 .large-7 {
    width: 58.33333%; }

  #stacks_in_82004 .large-8 {
    width: 66.66667%; }

  #stacks_in_82004 .large-9 {
    width: 75%; }

  #stacks_in_82004 .large-10 {
    width: 83.33333%; }

  #stacks_in_82004 .large-11 {
    width: 91.66667%; }

  #stacks_in_82004 .large-12 {
    width: 100%; }

  #stacks_in_82004 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82004 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82004 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82004 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82004 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82004 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82004 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82004 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82004 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82004 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82004 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82004 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82004 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82004 .column.large-centered,
  #stacks_in_82004 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82004 .column.large-uncentered,
  #stacks_in_82004 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82004 .column.large-centered:last-child,
  #stacks_in_82004 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_82004 .column.large-uncentered:last-child,
  #stacks_in_82004 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_82004 .column.large-uncentered.opposite,
  #stacks_in_82004 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_82004 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82004 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82004 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82004 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82004 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82004 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82004 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82004 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82004 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82004 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82004 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82004 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82004 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82004 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82004 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82004 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82004 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82004 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82004 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82004 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82004 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82004 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82004 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82004 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_82004 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_82004 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_82004 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_82004 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_82004 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_82004 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_82004 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_82004 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82004 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82004 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_82004 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82004 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82004 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_82004 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82004 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82004 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82004 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_82004 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_82004 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_82005 {
      margin: 11px;      
    }

    #stacks_in_82005 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_82005 {
      margin: 11px;      
    }

    #stacks_in_82005 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_82005 {
      margin: 11px;      
    }

    #stacks_in_82005 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_82010 {
      margin: 8px;      
    }

    #stacks_in_82010 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_82010 {
      margin: 48px;      
    }

    #stacks_in_82010 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_82010 {
      margin: 8px;      
    }

    #stacks_in_82010 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_82010 {
      margin: 8px;      
    }

    #stacks_in_82010 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_82010 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_82011 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_82013 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81991 article,
#stacks_in_81991 aside,
#stacks_in_81991 details,
#stacks_in_81991 figcaption,
#stacks_in_81991 figure,
#stacks_in_81991 footer,
#stacks_in_81991 header,
#stacks_in_81991 hgroup,
#stacks_in_81991 main,
#stacks_in_81991 nav,
#stacks_in_81991 section,
#stacks_in_81991 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81991 audio,
#stacks_in_81991 canvas,
#stacks_in_81991 progress,
#stacks_in_81991 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81991 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81991 [hidden],
#stacks_in_81991 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81991 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81991 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81991 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81991 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81991 code,
#stacks_in_81991 kbd,
#stacks_in_81991 pre,
#stacks_in_81991 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81991 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81991 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81991 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81991 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81991 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81991 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81991 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81991 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81991 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81991 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81991 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81991 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81991 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81991 .left {
  float: left !important; }

#stacks_in_81991 .right {
  float: right !important; }

#stacks_in_81991 .clearfix:before,
#stacks_in_81991 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81991 .clearfix:after {
  clear: both; }

#stacks_in_81991 .hide {
  display: none; }

#stacks_in_81991 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81991 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81991 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81991 select {
  width: 100%; }

#stacks_in_81991 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81991 .row:before,
#stacks_in_81991 .row:after {
  content: " ";
  display: table; }

#stacks_in_81991 .row:after {
  clear: both; }

#stacks_in_81991 .row.collapse > .column,
#stacks_in_81991 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81991 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81991 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81991 .row .row:before,
#stacks_in_81991 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81991 .row .row:after {
  clear: both; }

#stacks_in_81991 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81991 .row .row.collapse:before,
#stacks_in_81991 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81991 .row .row.collapse:after {
  clear: both; }

#stacks_in_81991 .column,
#stacks_in_81991 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81991 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81991 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81991 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81991 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81991 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81991 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81991 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81991 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81991 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81991 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81991 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81991 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81991 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81991 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81991 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81991 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81991 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81991 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81991 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81991 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81991 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81991 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81991 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81991 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81991 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81991 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81991 .column,
  #stacks_in_81991 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81991 .small-1 {
    width: 8.33333%; }

  #stacks_in_81991 .small-2 {
    width: 16.66667%; }

  #stacks_in_81991 .small-3 {
    width: 25%; }

  #stacks_in_81991 .small-4 {
    width: 33.33333%; }

  #stacks_in_81991 .small-5 {
    width: 41.66667%; }

  #stacks_in_81991 .small-6 {
    width: 50%; }

  #stacks_in_81991 .small-7 {
    width: 58.33333%; }

  #stacks_in_81991 .small-8 {
    width: 66.66667%; }

  #stacks_in_81991 .small-9 {
    width: 75%; }

  #stacks_in_81991 .small-10 {
    width: 83.33333%; }

  #stacks_in_81991 .small-11 {
    width: 91.66667%; }

  #stacks_in_81991 .small-12 {
    width: 100%; }

  #stacks_in_81991 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81991 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81991 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81991 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81991 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81991 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81991 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81991 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81991 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81991 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81991 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81991 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81991 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81991 .column.small-centered,
  #stacks_in_81991 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81991 .column.small-uncentered,
  #stacks_in_81991 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81991 .column.small-centered:last-child,
  #stacks_in_81991 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81991 .column.small-uncentered:last-child,
  #stacks_in_81991 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81991 .column.small-uncentered.opposite,
  #stacks_in_81991 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81991 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81991 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81991 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81991 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81991 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81991 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81991 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81991 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81991 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81991 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81991 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81991 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81991 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81991 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81991 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81991 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81991 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81991 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81991 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81991 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81991 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81991 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81991 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81991 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81991 .column,
  #stacks_in_81991 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81991 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81991 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81991 .medium-3 {
    width: 25%; }

  #stacks_in_81991 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81991 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81991 .medium-6 {
    width: 50%; }

  #stacks_in_81991 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81991 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81991 .medium-9 {
    width: 75%; }

  #stacks_in_81991 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81991 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81991 .medium-12 {
    width: 100%; }

  #stacks_in_81991 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81991 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81991 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81991 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81991 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81991 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81991 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81991 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81991 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81991 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81991 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81991 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81991 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81991 .column.medium-centered,
  #stacks_in_81991 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81991 .column.medium-uncentered,
  #stacks_in_81991 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81991 .column.medium-centered:last-child,
  #stacks_in_81991 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81991 .column.medium-uncentered:last-child,
  #stacks_in_81991 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81991 .column.medium-uncentered.opposite,
  #stacks_in_81991 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81991 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81991 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81991 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81991 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81991 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81991 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81991 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81991 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81991 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81991 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81991 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81991 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81991 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81991 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81991 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81991 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81991 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81991 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81991 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81991 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81991 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81991 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81991 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81991 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81991 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81991 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81991 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81991 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81991 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81991 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81991 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81991 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81991 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81991 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81991 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81991 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81991 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81991 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81991 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81991 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81991 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81991 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81991 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81991 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81991 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81991 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81991 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81991 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81991 .column,
  #stacks_in_81991 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81991 .large-1 {
    width: 8.33333%; }

  #stacks_in_81991 .large-2 {
    width: 16.66667%; }

  #stacks_in_81991 .large-3 {
    width: 25%; }

  #stacks_in_81991 .large-4 {
    width: 33.33333%; }

  #stacks_in_81991 .large-5 {
    width: 41.66667%; }

  #stacks_in_81991 .large-6 {
    width: 50%; }

  #stacks_in_81991 .large-7 {
    width: 58.33333%; }

  #stacks_in_81991 .large-8 {
    width: 66.66667%; }

  #stacks_in_81991 .large-9 {
    width: 75%; }

  #stacks_in_81991 .large-10 {
    width: 83.33333%; }

  #stacks_in_81991 .large-11 {
    width: 91.66667%; }

  #stacks_in_81991 .large-12 {
    width: 100%; }

  #stacks_in_81991 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81991 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81991 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81991 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81991 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81991 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81991 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81991 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81991 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81991 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81991 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81991 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81991 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81991 .column.large-centered,
  #stacks_in_81991 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81991 .column.large-uncentered,
  #stacks_in_81991 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81991 .column.large-centered:last-child,
  #stacks_in_81991 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81991 .column.large-uncentered:last-child,
  #stacks_in_81991 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81991 .column.large-uncentered.opposite,
  #stacks_in_81991 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81991 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81991 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81991 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81991 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81991 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81991 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81991 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81991 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81991 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81991 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81991 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81991 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81991 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81991 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81991 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81991 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81991 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81991 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81991 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81991 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81991 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81991 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81991 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81991 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81991 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81991 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81991 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81991 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81991 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81991 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81991 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81991 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81991 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81991 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81991 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81991 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81991 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81991 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81991 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81991 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81991 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81991 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81991 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81992 {
      margin: 11px;      
    }

    #stacks_in_81992 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81992 {
      margin: 11px;      
    }

    #stacks_in_81992 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81992 {
      margin: 11px;      
    }

    #stacks_in_81992 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81997 {
      margin: 8px;      
    }

    #stacks_in_81997 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81997 {
      margin: 48px;      
    }

    #stacks_in_81997 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81997 {
      margin: 8px;      
    }

    #stacks_in_81997 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81997 {
      margin: 8px;      
    }

    #stacks_in_81997 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81997 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81998 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_82000 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81978 article,
#stacks_in_81978 aside,
#stacks_in_81978 details,
#stacks_in_81978 figcaption,
#stacks_in_81978 figure,
#stacks_in_81978 footer,
#stacks_in_81978 header,
#stacks_in_81978 hgroup,
#stacks_in_81978 main,
#stacks_in_81978 nav,
#stacks_in_81978 section,
#stacks_in_81978 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81978 audio,
#stacks_in_81978 canvas,
#stacks_in_81978 progress,
#stacks_in_81978 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81978 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81978 [hidden],
#stacks_in_81978 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81978 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81978 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81978 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81978 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81978 code,
#stacks_in_81978 kbd,
#stacks_in_81978 pre,
#stacks_in_81978 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81978 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81978 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81978 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81978 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81978 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81978 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81978 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81978 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81978 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81978 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81978 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81978 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81978 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81978 .left {
  float: left !important; }

#stacks_in_81978 .right {
  float: right !important; }

#stacks_in_81978 .clearfix:before,
#stacks_in_81978 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81978 .clearfix:after {
  clear: both; }

#stacks_in_81978 .hide {
  display: none; }

#stacks_in_81978 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81978 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81978 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81978 select {
  width: 100%; }

#stacks_in_81978 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81978 .row:before,
#stacks_in_81978 .row:after {
  content: " ";
  display: table; }

#stacks_in_81978 .row:after {
  clear: both; }

#stacks_in_81978 .row.collapse > .column,
#stacks_in_81978 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81978 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81978 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81978 .row .row:before,
#stacks_in_81978 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81978 .row .row:after {
  clear: both; }

#stacks_in_81978 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81978 .row .row.collapse:before,
#stacks_in_81978 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81978 .row .row.collapse:after {
  clear: both; }

#stacks_in_81978 .column,
#stacks_in_81978 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81978 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81978 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81978 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81978 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81978 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81978 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81978 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81978 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81978 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81978 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81978 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81978 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81978 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81978 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81978 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81978 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81978 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81978 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81978 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81978 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81978 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81978 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81978 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81978 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81978 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81978 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81978 .column,
  #stacks_in_81978 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81978 .small-1 {
    width: 8.33333%; }

  #stacks_in_81978 .small-2 {
    width: 16.66667%; }

  #stacks_in_81978 .small-3 {
    width: 25%; }

  #stacks_in_81978 .small-4 {
    width: 33.33333%; }

  #stacks_in_81978 .small-5 {
    width: 41.66667%; }

  #stacks_in_81978 .small-6 {
    width: 50%; }

  #stacks_in_81978 .small-7 {
    width: 58.33333%; }

  #stacks_in_81978 .small-8 {
    width: 66.66667%; }

  #stacks_in_81978 .small-9 {
    width: 75%; }

  #stacks_in_81978 .small-10 {
    width: 83.33333%; }

  #stacks_in_81978 .small-11 {
    width: 91.66667%; }

  #stacks_in_81978 .small-12 {
    width: 100%; }

  #stacks_in_81978 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81978 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81978 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81978 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81978 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81978 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81978 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81978 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81978 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81978 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81978 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81978 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81978 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81978 .column.small-centered,
  #stacks_in_81978 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81978 .column.small-uncentered,
  #stacks_in_81978 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81978 .column.small-centered:last-child,
  #stacks_in_81978 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81978 .column.small-uncentered:last-child,
  #stacks_in_81978 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81978 .column.small-uncentered.opposite,
  #stacks_in_81978 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81978 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81978 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81978 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81978 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81978 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81978 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81978 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81978 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81978 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81978 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81978 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81978 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81978 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81978 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81978 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81978 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81978 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81978 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81978 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81978 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81978 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81978 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81978 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81978 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81978 .column,
  #stacks_in_81978 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81978 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81978 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81978 .medium-3 {
    width: 25%; }

  #stacks_in_81978 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81978 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81978 .medium-6 {
    width: 50%; }

  #stacks_in_81978 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81978 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81978 .medium-9 {
    width: 75%; }

  #stacks_in_81978 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81978 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81978 .medium-12 {
    width: 100%; }

  #stacks_in_81978 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81978 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81978 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81978 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81978 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81978 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81978 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81978 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81978 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81978 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81978 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81978 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81978 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81978 .column.medium-centered,
  #stacks_in_81978 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81978 .column.medium-uncentered,
  #stacks_in_81978 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81978 .column.medium-centered:last-child,
  #stacks_in_81978 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81978 .column.medium-uncentered:last-child,
  #stacks_in_81978 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81978 .column.medium-uncentered.opposite,
  #stacks_in_81978 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81978 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81978 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81978 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81978 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81978 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81978 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81978 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81978 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81978 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81978 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81978 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81978 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81978 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81978 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81978 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81978 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81978 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81978 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81978 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81978 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81978 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81978 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81978 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81978 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81978 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81978 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81978 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81978 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81978 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81978 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81978 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81978 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81978 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81978 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81978 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81978 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81978 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81978 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81978 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81978 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81978 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81978 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81978 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81978 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81978 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81978 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81978 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81978 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81978 .column,
  #stacks_in_81978 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81978 .large-1 {
    width: 8.33333%; }

  #stacks_in_81978 .large-2 {
    width: 16.66667%; }

  #stacks_in_81978 .large-3 {
    width: 25%; }

  #stacks_in_81978 .large-4 {
    width: 33.33333%; }

  #stacks_in_81978 .large-5 {
    width: 41.66667%; }

  #stacks_in_81978 .large-6 {
    width: 50%; }

  #stacks_in_81978 .large-7 {
    width: 58.33333%; }

  #stacks_in_81978 .large-8 {
    width: 66.66667%; }

  #stacks_in_81978 .large-9 {
    width: 75%; }

  #stacks_in_81978 .large-10 {
    width: 83.33333%; }

  #stacks_in_81978 .large-11 {
    width: 91.66667%; }

  #stacks_in_81978 .large-12 {
    width: 100%; }

  #stacks_in_81978 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81978 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81978 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81978 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81978 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81978 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81978 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81978 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81978 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81978 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81978 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81978 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81978 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81978 .column.large-centered,
  #stacks_in_81978 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81978 .column.large-uncentered,
  #stacks_in_81978 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81978 .column.large-centered:last-child,
  #stacks_in_81978 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81978 .column.large-uncentered:last-child,
  #stacks_in_81978 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81978 .column.large-uncentered.opposite,
  #stacks_in_81978 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81978 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81978 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81978 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81978 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81978 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81978 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81978 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81978 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81978 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81978 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81978 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81978 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81978 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81978 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81978 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81978 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81978 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81978 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81978 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81978 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81978 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81978 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81978 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81978 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81978 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81978 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81978 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81978 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81978 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81978 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81978 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81978 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81978 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81978 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81978 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81978 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81978 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81978 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81978 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81978 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81978 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81978 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81978 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81979 {
      margin: 11px;      
    }

    #stacks_in_81979 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81979 {
      margin: 11px;      
    }

    #stacks_in_81979 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81979 {
      margin: 11px;      
    }

    #stacks_in_81979 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81984 {
      margin: 8px;      
    }

    #stacks_in_81984 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81984 {
      margin: 48px;      
    }

    #stacks_in_81984 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81984 {
      margin: 8px;      
    }

    #stacks_in_81984 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81984 {
      margin: 8px;      
    }

    #stacks_in_81984 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81984 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81985 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81987 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81965 article,
#stacks_in_81965 aside,
#stacks_in_81965 details,
#stacks_in_81965 figcaption,
#stacks_in_81965 figure,
#stacks_in_81965 footer,
#stacks_in_81965 header,
#stacks_in_81965 hgroup,
#stacks_in_81965 main,
#stacks_in_81965 nav,
#stacks_in_81965 section,
#stacks_in_81965 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81965 audio,
#stacks_in_81965 canvas,
#stacks_in_81965 progress,
#stacks_in_81965 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81965 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81965 [hidden],
#stacks_in_81965 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81965 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81965 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81965 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81965 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81965 code,
#stacks_in_81965 kbd,
#stacks_in_81965 pre,
#stacks_in_81965 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81965 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81965 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81965 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81965 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81965 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81965 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81965 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81965 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81965 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81965 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81965 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81965 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81965 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81965 .left {
  float: left !important; }

#stacks_in_81965 .right {
  float: right !important; }

#stacks_in_81965 .clearfix:before,
#stacks_in_81965 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81965 .clearfix:after {
  clear: both; }

#stacks_in_81965 .hide {
  display: none; }

#stacks_in_81965 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81965 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81965 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81965 select {
  width: 100%; }

#stacks_in_81965 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81965 .row:before,
#stacks_in_81965 .row:after {
  content: " ";
  display: table; }

#stacks_in_81965 .row:after {
  clear: both; }

#stacks_in_81965 .row.collapse > .column,
#stacks_in_81965 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81965 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81965 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81965 .row .row:before,
#stacks_in_81965 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81965 .row .row:after {
  clear: both; }

#stacks_in_81965 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81965 .row .row.collapse:before,
#stacks_in_81965 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81965 .row .row.collapse:after {
  clear: both; }

#stacks_in_81965 .column,
#stacks_in_81965 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81965 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81965 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81965 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81965 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81965 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81965 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81965 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81965 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81965 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81965 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81965 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81965 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81965 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81965 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81965 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81965 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81965 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81965 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81965 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81965 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81965 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81965 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81965 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81965 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81965 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81965 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81965 .column,
  #stacks_in_81965 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81965 .small-1 {
    width: 8.33333%; }

  #stacks_in_81965 .small-2 {
    width: 16.66667%; }

  #stacks_in_81965 .small-3 {
    width: 25%; }

  #stacks_in_81965 .small-4 {
    width: 33.33333%; }

  #stacks_in_81965 .small-5 {
    width: 41.66667%; }

  #stacks_in_81965 .small-6 {
    width: 50%; }

  #stacks_in_81965 .small-7 {
    width: 58.33333%; }

  #stacks_in_81965 .small-8 {
    width: 66.66667%; }

  #stacks_in_81965 .small-9 {
    width: 75%; }

  #stacks_in_81965 .small-10 {
    width: 83.33333%; }

  #stacks_in_81965 .small-11 {
    width: 91.66667%; }

  #stacks_in_81965 .small-12 {
    width: 100%; }

  #stacks_in_81965 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81965 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81965 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81965 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81965 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81965 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81965 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81965 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81965 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81965 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81965 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81965 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81965 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81965 .column.small-centered,
  #stacks_in_81965 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81965 .column.small-uncentered,
  #stacks_in_81965 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81965 .column.small-centered:last-child,
  #stacks_in_81965 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81965 .column.small-uncentered:last-child,
  #stacks_in_81965 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81965 .column.small-uncentered.opposite,
  #stacks_in_81965 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81965 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81965 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81965 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81965 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81965 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81965 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81965 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81965 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81965 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81965 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81965 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81965 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81965 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81965 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81965 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81965 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81965 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81965 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81965 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81965 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81965 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81965 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81965 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81965 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81965 .column,
  #stacks_in_81965 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81965 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81965 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81965 .medium-3 {
    width: 25%; }

  #stacks_in_81965 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81965 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81965 .medium-6 {
    width: 50%; }

  #stacks_in_81965 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81965 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81965 .medium-9 {
    width: 75%; }

  #stacks_in_81965 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81965 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81965 .medium-12 {
    width: 100%; }

  #stacks_in_81965 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81965 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81965 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81965 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81965 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81965 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81965 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81965 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81965 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81965 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81965 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81965 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81965 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81965 .column.medium-centered,
  #stacks_in_81965 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81965 .column.medium-uncentered,
  #stacks_in_81965 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81965 .column.medium-centered:last-child,
  #stacks_in_81965 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81965 .column.medium-uncentered:last-child,
  #stacks_in_81965 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81965 .column.medium-uncentered.opposite,
  #stacks_in_81965 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81965 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81965 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81965 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81965 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81965 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81965 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81965 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81965 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81965 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81965 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81965 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81965 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81965 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81965 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81965 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81965 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81965 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81965 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81965 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81965 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81965 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81965 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81965 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81965 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81965 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81965 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81965 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81965 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81965 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81965 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81965 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81965 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81965 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81965 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81965 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81965 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81965 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81965 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81965 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81965 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81965 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81965 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81965 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81965 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81965 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81965 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81965 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81965 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81965 .column,
  #stacks_in_81965 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81965 .large-1 {
    width: 8.33333%; }

  #stacks_in_81965 .large-2 {
    width: 16.66667%; }

  #stacks_in_81965 .large-3 {
    width: 25%; }

  #stacks_in_81965 .large-4 {
    width: 33.33333%; }

  #stacks_in_81965 .large-5 {
    width: 41.66667%; }

  #stacks_in_81965 .large-6 {
    width: 50%; }

  #stacks_in_81965 .large-7 {
    width: 58.33333%; }

  #stacks_in_81965 .large-8 {
    width: 66.66667%; }

  #stacks_in_81965 .large-9 {
    width: 75%; }

  #stacks_in_81965 .large-10 {
    width: 83.33333%; }

  #stacks_in_81965 .large-11 {
    width: 91.66667%; }

  #stacks_in_81965 .large-12 {
    width: 100%; }

  #stacks_in_81965 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81965 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81965 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81965 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81965 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81965 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81965 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81965 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81965 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81965 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81965 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81965 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81965 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81965 .column.large-centered,
  #stacks_in_81965 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81965 .column.large-uncentered,
  #stacks_in_81965 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81965 .column.large-centered:last-child,
  #stacks_in_81965 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81965 .column.large-uncentered:last-child,
  #stacks_in_81965 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81965 .column.large-uncentered.opposite,
  #stacks_in_81965 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81965 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81965 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81965 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81965 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81965 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81965 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81965 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81965 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81965 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81965 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81965 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81965 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81965 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81965 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81965 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81965 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81965 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81965 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81965 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81965 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81965 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81965 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81965 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81965 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81965 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81965 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81965 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81965 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81965 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81965 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81965 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81965 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81965 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81965 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81965 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81965 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81965 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81965 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81965 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81965 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81965 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81965 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81965 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81966 {
      margin: 11px;      
    }

    #stacks_in_81966 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81966 {
      margin: 11px;      
    }

    #stacks_in_81966 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81966 {
      margin: 11px;      
    }

    #stacks_in_81966 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81971 {
      margin: 8px;      
    }

    #stacks_in_81971 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81971 {
      margin: 48px;      
    }

    #stacks_in_81971 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81971 {
      margin: 8px;      
    }

    #stacks_in_81971 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81971 {
      margin: 8px;      
    }

    #stacks_in_81971 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81971 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81972 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81974 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81952 article,
#stacks_in_81952 aside,
#stacks_in_81952 details,
#stacks_in_81952 figcaption,
#stacks_in_81952 figure,
#stacks_in_81952 footer,
#stacks_in_81952 header,
#stacks_in_81952 hgroup,
#stacks_in_81952 main,
#stacks_in_81952 nav,
#stacks_in_81952 section,
#stacks_in_81952 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81952 audio,
#stacks_in_81952 canvas,
#stacks_in_81952 progress,
#stacks_in_81952 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81952 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81952 [hidden],
#stacks_in_81952 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81952 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81952 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81952 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81952 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81952 code,
#stacks_in_81952 kbd,
#stacks_in_81952 pre,
#stacks_in_81952 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81952 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81952 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81952 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81952 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81952 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81952 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81952 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81952 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81952 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81952 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81952 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81952 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81952 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81952 .left {
  float: left !important; }

#stacks_in_81952 .right {
  float: right !important; }

#stacks_in_81952 .clearfix:before,
#stacks_in_81952 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81952 .clearfix:after {
  clear: both; }

#stacks_in_81952 .hide {
  display: none; }

#stacks_in_81952 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81952 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81952 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81952 select {
  width: 100%; }

#stacks_in_81952 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81952 .row:before,
#stacks_in_81952 .row:after {
  content: " ";
  display: table; }

#stacks_in_81952 .row:after {
  clear: both; }

#stacks_in_81952 .row.collapse > .column,
#stacks_in_81952 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81952 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81952 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81952 .row .row:before,
#stacks_in_81952 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81952 .row .row:after {
  clear: both; }

#stacks_in_81952 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81952 .row .row.collapse:before,
#stacks_in_81952 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81952 .row .row.collapse:after {
  clear: both; }

#stacks_in_81952 .column,
#stacks_in_81952 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81952 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81952 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81952 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81952 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81952 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81952 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81952 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81952 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81952 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81952 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81952 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81952 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81952 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81952 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81952 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81952 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81952 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81952 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81952 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81952 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81952 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81952 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81952 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81952 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81952 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81952 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81952 .column,
  #stacks_in_81952 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81952 .small-1 {
    width: 8.33333%; }

  #stacks_in_81952 .small-2 {
    width: 16.66667%; }

  #stacks_in_81952 .small-3 {
    width: 25%; }

  #stacks_in_81952 .small-4 {
    width: 33.33333%; }

  #stacks_in_81952 .small-5 {
    width: 41.66667%; }

  #stacks_in_81952 .small-6 {
    width: 50%; }

  #stacks_in_81952 .small-7 {
    width: 58.33333%; }

  #stacks_in_81952 .small-8 {
    width: 66.66667%; }

  #stacks_in_81952 .small-9 {
    width: 75%; }

  #stacks_in_81952 .small-10 {
    width: 83.33333%; }

  #stacks_in_81952 .small-11 {
    width: 91.66667%; }

  #stacks_in_81952 .small-12 {
    width: 100%; }

  #stacks_in_81952 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81952 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81952 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81952 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81952 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81952 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81952 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81952 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81952 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81952 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81952 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81952 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81952 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81952 .column.small-centered,
  #stacks_in_81952 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81952 .column.small-uncentered,
  #stacks_in_81952 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81952 .column.small-centered:last-child,
  #stacks_in_81952 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81952 .column.small-uncentered:last-child,
  #stacks_in_81952 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81952 .column.small-uncentered.opposite,
  #stacks_in_81952 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81952 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81952 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81952 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81952 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81952 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81952 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81952 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81952 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81952 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81952 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81952 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81952 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81952 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81952 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81952 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81952 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81952 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81952 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81952 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81952 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81952 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81952 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81952 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81952 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81952 .column,
  #stacks_in_81952 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81952 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81952 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81952 .medium-3 {
    width: 25%; }

  #stacks_in_81952 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81952 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81952 .medium-6 {
    width: 50%; }

  #stacks_in_81952 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81952 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81952 .medium-9 {
    width: 75%; }

  #stacks_in_81952 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81952 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81952 .medium-12 {
    width: 100%; }

  #stacks_in_81952 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81952 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81952 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81952 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81952 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81952 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81952 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81952 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81952 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81952 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81952 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81952 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81952 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81952 .column.medium-centered,
  #stacks_in_81952 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81952 .column.medium-uncentered,
  #stacks_in_81952 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81952 .column.medium-centered:last-child,
  #stacks_in_81952 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81952 .column.medium-uncentered:last-child,
  #stacks_in_81952 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81952 .column.medium-uncentered.opposite,
  #stacks_in_81952 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81952 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81952 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81952 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81952 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81952 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81952 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81952 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81952 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81952 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81952 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81952 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81952 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81952 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81952 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81952 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81952 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81952 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81952 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81952 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81952 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81952 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81952 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81952 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81952 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81952 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81952 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81952 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81952 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81952 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81952 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81952 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81952 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81952 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81952 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81952 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81952 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81952 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81952 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81952 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81952 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81952 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81952 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81952 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81952 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81952 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81952 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81952 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81952 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81952 .column,
  #stacks_in_81952 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81952 .large-1 {
    width: 8.33333%; }

  #stacks_in_81952 .large-2 {
    width: 16.66667%; }

  #stacks_in_81952 .large-3 {
    width: 25%; }

  #stacks_in_81952 .large-4 {
    width: 33.33333%; }

  #stacks_in_81952 .large-5 {
    width: 41.66667%; }

  #stacks_in_81952 .large-6 {
    width: 50%; }

  #stacks_in_81952 .large-7 {
    width: 58.33333%; }

  #stacks_in_81952 .large-8 {
    width: 66.66667%; }

  #stacks_in_81952 .large-9 {
    width: 75%; }

  #stacks_in_81952 .large-10 {
    width: 83.33333%; }

  #stacks_in_81952 .large-11 {
    width: 91.66667%; }

  #stacks_in_81952 .large-12 {
    width: 100%; }

  #stacks_in_81952 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81952 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81952 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81952 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81952 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81952 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81952 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81952 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81952 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81952 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81952 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81952 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81952 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81952 .column.large-centered,
  #stacks_in_81952 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81952 .column.large-uncentered,
  #stacks_in_81952 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81952 .column.large-centered:last-child,
  #stacks_in_81952 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81952 .column.large-uncentered:last-child,
  #stacks_in_81952 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81952 .column.large-uncentered.opposite,
  #stacks_in_81952 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81952 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81952 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81952 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81952 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81952 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81952 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81952 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81952 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81952 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81952 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81952 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81952 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81952 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81952 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81952 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81952 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81952 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81952 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81952 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81952 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81952 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81952 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81952 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81952 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81952 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81952 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81952 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81952 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81952 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81952 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81952 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81952 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81952 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81952 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81952 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81952 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81952 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81952 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81952 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81952 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81952 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81952 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81952 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81953 {
      margin: 11px;      
    }

    #stacks_in_81953 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81953 {
      margin: 11px;      
    }

    #stacks_in_81953 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81953 {
      margin: 11px;      
    }

    #stacks_in_81953 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81958 {
      margin: 8px;      
    }

    #stacks_in_81958 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81958 {
      margin: 48px;      
    }

    #stacks_in_81958 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81958 {
      margin: 8px;      
    }

    #stacks_in_81958 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81958 {
      margin: 8px;      
    }

    #stacks_in_81958 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81958 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81959 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81961 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81939 article,
#stacks_in_81939 aside,
#stacks_in_81939 details,
#stacks_in_81939 figcaption,
#stacks_in_81939 figure,
#stacks_in_81939 footer,
#stacks_in_81939 header,
#stacks_in_81939 hgroup,
#stacks_in_81939 main,
#stacks_in_81939 nav,
#stacks_in_81939 section,
#stacks_in_81939 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81939 audio,
#stacks_in_81939 canvas,
#stacks_in_81939 progress,
#stacks_in_81939 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81939 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81939 [hidden],
#stacks_in_81939 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81939 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81939 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81939 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81939 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81939 code,
#stacks_in_81939 kbd,
#stacks_in_81939 pre,
#stacks_in_81939 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81939 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81939 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81939 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81939 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81939 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81939 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81939 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81939 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81939 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81939 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81939 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81939 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81939 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81939 .left {
  float: left !important; }

#stacks_in_81939 .right {
  float: right !important; }

#stacks_in_81939 .clearfix:before,
#stacks_in_81939 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81939 .clearfix:after {
  clear: both; }

#stacks_in_81939 .hide {
  display: none; }

#stacks_in_81939 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81939 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81939 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81939 select {
  width: 100%; }

#stacks_in_81939 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81939 .row:before,
#stacks_in_81939 .row:after {
  content: " ";
  display: table; }

#stacks_in_81939 .row:after {
  clear: both; }

#stacks_in_81939 .row.collapse > .column,
#stacks_in_81939 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81939 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81939 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81939 .row .row:before,
#stacks_in_81939 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81939 .row .row:after {
  clear: both; }

#stacks_in_81939 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81939 .row .row.collapse:before,
#stacks_in_81939 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81939 .row .row.collapse:after {
  clear: both; }

#stacks_in_81939 .column,
#stacks_in_81939 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81939 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81939 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81939 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81939 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81939 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81939 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81939 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81939 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81939 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81939 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81939 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81939 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81939 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81939 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81939 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81939 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81939 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81939 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81939 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81939 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81939 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81939 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81939 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81939 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81939 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81939 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81939 .column,
  #stacks_in_81939 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81939 .small-1 {
    width: 8.33333%; }

  #stacks_in_81939 .small-2 {
    width: 16.66667%; }

  #stacks_in_81939 .small-3 {
    width: 25%; }

  #stacks_in_81939 .small-4 {
    width: 33.33333%; }

  #stacks_in_81939 .small-5 {
    width: 41.66667%; }

  #stacks_in_81939 .small-6 {
    width: 50%; }

  #stacks_in_81939 .small-7 {
    width: 58.33333%; }

  #stacks_in_81939 .small-8 {
    width: 66.66667%; }

  #stacks_in_81939 .small-9 {
    width: 75%; }

  #stacks_in_81939 .small-10 {
    width: 83.33333%; }

  #stacks_in_81939 .small-11 {
    width: 91.66667%; }

  #stacks_in_81939 .small-12 {
    width: 100%; }

  #stacks_in_81939 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81939 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81939 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81939 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81939 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81939 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81939 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81939 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81939 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81939 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81939 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81939 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81939 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81939 .column.small-centered,
  #stacks_in_81939 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81939 .column.small-uncentered,
  #stacks_in_81939 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81939 .column.small-centered:last-child,
  #stacks_in_81939 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81939 .column.small-uncentered:last-child,
  #stacks_in_81939 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81939 .column.small-uncentered.opposite,
  #stacks_in_81939 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81939 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81939 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81939 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81939 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81939 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81939 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81939 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81939 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81939 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81939 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81939 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81939 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81939 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81939 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81939 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81939 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81939 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81939 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81939 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81939 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81939 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81939 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81939 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81939 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81939 .column,
  #stacks_in_81939 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81939 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81939 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81939 .medium-3 {
    width: 25%; }

  #stacks_in_81939 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81939 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81939 .medium-6 {
    width: 50%; }

  #stacks_in_81939 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81939 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81939 .medium-9 {
    width: 75%; }

  #stacks_in_81939 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81939 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81939 .medium-12 {
    width: 100%; }

  #stacks_in_81939 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81939 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81939 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81939 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81939 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81939 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81939 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81939 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81939 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81939 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81939 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81939 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81939 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81939 .column.medium-centered,
  #stacks_in_81939 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81939 .column.medium-uncentered,
  #stacks_in_81939 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81939 .column.medium-centered:last-child,
  #stacks_in_81939 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81939 .column.medium-uncentered:last-child,
  #stacks_in_81939 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81939 .column.medium-uncentered.opposite,
  #stacks_in_81939 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81939 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81939 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81939 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81939 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81939 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81939 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81939 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81939 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81939 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81939 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81939 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81939 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81939 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81939 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81939 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81939 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81939 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81939 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81939 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81939 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81939 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81939 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81939 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81939 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81939 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81939 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81939 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81939 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81939 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81939 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81939 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81939 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81939 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81939 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81939 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81939 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81939 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81939 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81939 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81939 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81939 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81939 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81939 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81939 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81939 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81939 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81939 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81939 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81939 .column,
  #stacks_in_81939 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81939 .large-1 {
    width: 8.33333%; }

  #stacks_in_81939 .large-2 {
    width: 16.66667%; }

  #stacks_in_81939 .large-3 {
    width: 25%; }

  #stacks_in_81939 .large-4 {
    width: 33.33333%; }

  #stacks_in_81939 .large-5 {
    width: 41.66667%; }

  #stacks_in_81939 .large-6 {
    width: 50%; }

  #stacks_in_81939 .large-7 {
    width: 58.33333%; }

  #stacks_in_81939 .large-8 {
    width: 66.66667%; }

  #stacks_in_81939 .large-9 {
    width: 75%; }

  #stacks_in_81939 .large-10 {
    width: 83.33333%; }

  #stacks_in_81939 .large-11 {
    width: 91.66667%; }

  #stacks_in_81939 .large-12 {
    width: 100%; }

  #stacks_in_81939 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81939 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81939 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81939 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81939 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81939 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81939 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81939 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81939 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81939 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81939 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81939 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81939 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81939 .column.large-centered,
  #stacks_in_81939 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81939 .column.large-uncentered,
  #stacks_in_81939 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81939 .column.large-centered:last-child,
  #stacks_in_81939 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81939 .column.large-uncentered:last-child,
  #stacks_in_81939 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81939 .column.large-uncentered.opposite,
  #stacks_in_81939 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81939 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81939 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81939 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81939 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81939 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81939 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81939 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81939 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81939 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81939 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81939 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81939 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81939 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81939 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81939 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81939 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81939 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81939 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81939 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81939 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81939 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81939 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81939 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81939 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81939 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81939 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81939 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81939 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81939 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81939 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81939 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81939 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81939 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81939 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81939 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81939 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81939 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81939 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81939 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81939 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81939 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81939 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81939 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81940 {
      margin: 11px;      
    }

    #stacks_in_81940 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81940 {
      margin: 11px;      
    }

    #stacks_in_81940 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81940 {
      margin: 11px;      
    }

    #stacks_in_81940 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81945 {
      margin: 8px;      
    }

    #stacks_in_81945 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81945 {
      margin: 48px;      
    }

    #stacks_in_81945 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81945 {
      margin: 8px;      
    }

    #stacks_in_81945 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81945 {
      margin: 8px;      
    }

    #stacks_in_81945 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81945 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81946 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81948 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81926 article,
#stacks_in_81926 aside,
#stacks_in_81926 details,
#stacks_in_81926 figcaption,
#stacks_in_81926 figure,
#stacks_in_81926 footer,
#stacks_in_81926 header,
#stacks_in_81926 hgroup,
#stacks_in_81926 main,
#stacks_in_81926 nav,
#stacks_in_81926 section,
#stacks_in_81926 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81926 audio,
#stacks_in_81926 canvas,
#stacks_in_81926 progress,
#stacks_in_81926 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81926 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81926 [hidden],
#stacks_in_81926 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81926 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81926 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81926 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81926 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81926 code,
#stacks_in_81926 kbd,
#stacks_in_81926 pre,
#stacks_in_81926 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81926 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81926 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81926 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81926 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81926 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81926 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81926 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81926 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81926 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81926 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81926 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81926 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81926 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81926 .left {
  float: left !important; }

#stacks_in_81926 .right {
  float: right !important; }

#stacks_in_81926 .clearfix:before,
#stacks_in_81926 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81926 .clearfix:after {
  clear: both; }

#stacks_in_81926 .hide {
  display: none; }

#stacks_in_81926 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81926 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81926 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81926 select {
  width: 100%; }

#stacks_in_81926 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81926 .row:before,
#stacks_in_81926 .row:after {
  content: " ";
  display: table; }

#stacks_in_81926 .row:after {
  clear: both; }

#stacks_in_81926 .row.collapse > .column,
#stacks_in_81926 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81926 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81926 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81926 .row .row:before,
#stacks_in_81926 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81926 .row .row:after {
  clear: both; }

#stacks_in_81926 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81926 .row .row.collapse:before,
#stacks_in_81926 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81926 .row .row.collapse:after {
  clear: both; }

#stacks_in_81926 .column,
#stacks_in_81926 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81926 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81926 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81926 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81926 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81926 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81926 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81926 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81926 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81926 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81926 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81926 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81926 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81926 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81926 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81926 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81926 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81926 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81926 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81926 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81926 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81926 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81926 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81926 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81926 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81926 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81926 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81926 .column,
  #stacks_in_81926 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81926 .small-1 {
    width: 8.33333%; }

  #stacks_in_81926 .small-2 {
    width: 16.66667%; }

  #stacks_in_81926 .small-3 {
    width: 25%; }

  #stacks_in_81926 .small-4 {
    width: 33.33333%; }

  #stacks_in_81926 .small-5 {
    width: 41.66667%; }

  #stacks_in_81926 .small-6 {
    width: 50%; }

  #stacks_in_81926 .small-7 {
    width: 58.33333%; }

  #stacks_in_81926 .small-8 {
    width: 66.66667%; }

  #stacks_in_81926 .small-9 {
    width: 75%; }

  #stacks_in_81926 .small-10 {
    width: 83.33333%; }

  #stacks_in_81926 .small-11 {
    width: 91.66667%; }

  #stacks_in_81926 .small-12 {
    width: 100%; }

  #stacks_in_81926 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81926 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81926 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81926 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81926 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81926 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81926 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81926 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81926 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81926 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81926 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81926 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81926 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81926 .column.small-centered,
  #stacks_in_81926 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81926 .column.small-uncentered,
  #stacks_in_81926 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81926 .column.small-centered:last-child,
  #stacks_in_81926 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81926 .column.small-uncentered:last-child,
  #stacks_in_81926 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81926 .column.small-uncentered.opposite,
  #stacks_in_81926 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81926 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81926 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81926 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81926 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81926 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81926 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81926 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81926 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81926 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81926 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81926 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81926 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81926 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81926 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81926 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81926 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81926 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81926 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81926 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81926 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81926 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81926 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81926 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81926 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81926 .column,
  #stacks_in_81926 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81926 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81926 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81926 .medium-3 {
    width: 25%; }

  #stacks_in_81926 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81926 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81926 .medium-6 {
    width: 50%; }

  #stacks_in_81926 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81926 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81926 .medium-9 {
    width: 75%; }

  #stacks_in_81926 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81926 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81926 .medium-12 {
    width: 100%; }

  #stacks_in_81926 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81926 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81926 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81926 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81926 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81926 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81926 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81926 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81926 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81926 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81926 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81926 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81926 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81926 .column.medium-centered,
  #stacks_in_81926 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81926 .column.medium-uncentered,
  #stacks_in_81926 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81926 .column.medium-centered:last-child,
  #stacks_in_81926 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81926 .column.medium-uncentered:last-child,
  #stacks_in_81926 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81926 .column.medium-uncentered.opposite,
  #stacks_in_81926 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81926 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81926 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81926 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81926 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81926 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81926 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81926 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81926 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81926 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81926 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81926 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81926 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81926 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81926 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81926 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81926 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81926 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81926 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81926 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81926 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81926 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81926 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81926 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81926 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81926 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81926 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81926 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81926 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81926 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81926 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81926 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81926 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81926 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81926 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81926 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81926 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81926 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81926 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81926 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81926 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81926 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81926 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81926 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81926 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81926 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81926 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81926 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81926 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81926 .column,
  #stacks_in_81926 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81926 .large-1 {
    width: 8.33333%; }

  #stacks_in_81926 .large-2 {
    width: 16.66667%; }

  #stacks_in_81926 .large-3 {
    width: 25%; }

  #stacks_in_81926 .large-4 {
    width: 33.33333%; }

  #stacks_in_81926 .large-5 {
    width: 41.66667%; }

  #stacks_in_81926 .large-6 {
    width: 50%; }

  #stacks_in_81926 .large-7 {
    width: 58.33333%; }

  #stacks_in_81926 .large-8 {
    width: 66.66667%; }

  #stacks_in_81926 .large-9 {
    width: 75%; }

  #stacks_in_81926 .large-10 {
    width: 83.33333%; }

  #stacks_in_81926 .large-11 {
    width: 91.66667%; }

  #stacks_in_81926 .large-12 {
    width: 100%; }

  #stacks_in_81926 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81926 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81926 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81926 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81926 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81926 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81926 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81926 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81926 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81926 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81926 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81926 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81926 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81926 .column.large-centered,
  #stacks_in_81926 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81926 .column.large-uncentered,
  #stacks_in_81926 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81926 .column.large-centered:last-child,
  #stacks_in_81926 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81926 .column.large-uncentered:last-child,
  #stacks_in_81926 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81926 .column.large-uncentered.opposite,
  #stacks_in_81926 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81926 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81926 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81926 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81926 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81926 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81926 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81926 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81926 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81926 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81926 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81926 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81926 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81926 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81926 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81926 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81926 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81926 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81926 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81926 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81926 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81926 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81926 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81926 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81926 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81926 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81926 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81926 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81926 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81926 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81926 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81926 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81926 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81926 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81926 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81926 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81926 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81926 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81926 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81926 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81926 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81926 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81926 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81926 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81927 {
      margin: 11px;      
    }

    #stacks_in_81927 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81927 {
      margin: 11px;      
    }

    #stacks_in_81927 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81927 {
      margin: 11px;      
    }

    #stacks_in_81927 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81932 {
      margin: 8px;      
    }

    #stacks_in_81932 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81932 {
      margin: 48px;      
    }

    #stacks_in_81932 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81932 {
      margin: 8px;      
    }

    #stacks_in_81932 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81932 {
      margin: 8px;      
    }

    #stacks_in_81932 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81932 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81933 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81935 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81913 article,
#stacks_in_81913 aside,
#stacks_in_81913 details,
#stacks_in_81913 figcaption,
#stacks_in_81913 figure,
#stacks_in_81913 footer,
#stacks_in_81913 header,
#stacks_in_81913 hgroup,
#stacks_in_81913 main,
#stacks_in_81913 nav,
#stacks_in_81913 section,
#stacks_in_81913 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81913 audio,
#stacks_in_81913 canvas,
#stacks_in_81913 progress,
#stacks_in_81913 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81913 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81913 [hidden],
#stacks_in_81913 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81913 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81913 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81913 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81913 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81913 code,
#stacks_in_81913 kbd,
#stacks_in_81913 pre,
#stacks_in_81913 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81913 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81913 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81913 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81913 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81913 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81913 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81913 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81913 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81913 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81913 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81913 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81913 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81913 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81913 .left {
  float: left !important; }

#stacks_in_81913 .right {
  float: right !important; }

#stacks_in_81913 .clearfix:before,
#stacks_in_81913 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81913 .clearfix:after {
  clear: both; }

#stacks_in_81913 .hide {
  display: none; }

#stacks_in_81913 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81913 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81913 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81913 select {
  width: 100%; }

#stacks_in_81913 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81913 .row:before,
#stacks_in_81913 .row:after {
  content: " ";
  display: table; }

#stacks_in_81913 .row:after {
  clear: both; }

#stacks_in_81913 .row.collapse > .column,
#stacks_in_81913 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81913 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81913 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81913 .row .row:before,
#stacks_in_81913 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81913 .row .row:after {
  clear: both; }

#stacks_in_81913 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81913 .row .row.collapse:before,
#stacks_in_81913 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81913 .row .row.collapse:after {
  clear: both; }

#stacks_in_81913 .column,
#stacks_in_81913 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81913 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81913 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81913 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81913 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81913 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81913 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81913 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81913 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81913 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81913 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81913 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81913 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81913 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81913 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81913 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81913 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81913 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81913 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81913 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81913 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81913 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81913 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81913 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81913 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81913 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81913 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81913 .column,
  #stacks_in_81913 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81913 .small-1 {
    width: 8.33333%; }

  #stacks_in_81913 .small-2 {
    width: 16.66667%; }

  #stacks_in_81913 .small-3 {
    width: 25%; }

  #stacks_in_81913 .small-4 {
    width: 33.33333%; }

  #stacks_in_81913 .small-5 {
    width: 41.66667%; }

  #stacks_in_81913 .small-6 {
    width: 50%; }

  #stacks_in_81913 .small-7 {
    width: 58.33333%; }

  #stacks_in_81913 .small-8 {
    width: 66.66667%; }

  #stacks_in_81913 .small-9 {
    width: 75%; }

  #stacks_in_81913 .small-10 {
    width: 83.33333%; }

  #stacks_in_81913 .small-11 {
    width: 91.66667%; }

  #stacks_in_81913 .small-12 {
    width: 100%; }

  #stacks_in_81913 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81913 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81913 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81913 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81913 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81913 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81913 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81913 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81913 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81913 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81913 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81913 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81913 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81913 .column.small-centered,
  #stacks_in_81913 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81913 .column.small-uncentered,
  #stacks_in_81913 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81913 .column.small-centered:last-child,
  #stacks_in_81913 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81913 .column.small-uncentered:last-child,
  #stacks_in_81913 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81913 .column.small-uncentered.opposite,
  #stacks_in_81913 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81913 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81913 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81913 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81913 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81913 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81913 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81913 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81913 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81913 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81913 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81913 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81913 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81913 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81913 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81913 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81913 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81913 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81913 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81913 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81913 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81913 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81913 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81913 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81913 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81913 .column,
  #stacks_in_81913 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81913 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81913 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81913 .medium-3 {
    width: 25%; }

  #stacks_in_81913 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81913 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81913 .medium-6 {
    width: 50%; }

  #stacks_in_81913 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81913 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81913 .medium-9 {
    width: 75%; }

  #stacks_in_81913 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81913 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81913 .medium-12 {
    width: 100%; }

  #stacks_in_81913 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81913 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81913 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81913 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81913 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81913 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81913 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81913 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81913 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81913 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81913 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81913 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81913 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81913 .column.medium-centered,
  #stacks_in_81913 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81913 .column.medium-uncentered,
  #stacks_in_81913 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81913 .column.medium-centered:last-child,
  #stacks_in_81913 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81913 .column.medium-uncentered:last-child,
  #stacks_in_81913 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81913 .column.medium-uncentered.opposite,
  #stacks_in_81913 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81913 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81913 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81913 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81913 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81913 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81913 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81913 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81913 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81913 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81913 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81913 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81913 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81913 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81913 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81913 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81913 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81913 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81913 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81913 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81913 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81913 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81913 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81913 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81913 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81913 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81913 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81913 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81913 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81913 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81913 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81913 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81913 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81913 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81913 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81913 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81913 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81913 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81913 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81913 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81913 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81913 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81913 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81913 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81913 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81913 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81913 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81913 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81913 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81913 .column,
  #stacks_in_81913 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81913 .large-1 {
    width: 8.33333%; }

  #stacks_in_81913 .large-2 {
    width: 16.66667%; }

  #stacks_in_81913 .large-3 {
    width: 25%; }

  #stacks_in_81913 .large-4 {
    width: 33.33333%; }

  #stacks_in_81913 .large-5 {
    width: 41.66667%; }

  #stacks_in_81913 .large-6 {
    width: 50%; }

  #stacks_in_81913 .large-7 {
    width: 58.33333%; }

  #stacks_in_81913 .large-8 {
    width: 66.66667%; }

  #stacks_in_81913 .large-9 {
    width: 75%; }

  #stacks_in_81913 .large-10 {
    width: 83.33333%; }

  #stacks_in_81913 .large-11 {
    width: 91.66667%; }

  #stacks_in_81913 .large-12 {
    width: 100%; }

  #stacks_in_81913 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81913 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81913 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81913 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81913 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81913 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81913 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81913 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81913 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81913 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81913 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81913 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81913 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81913 .column.large-centered,
  #stacks_in_81913 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81913 .column.large-uncentered,
  #stacks_in_81913 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81913 .column.large-centered:last-child,
  #stacks_in_81913 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81913 .column.large-uncentered:last-child,
  #stacks_in_81913 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81913 .column.large-uncentered.opposite,
  #stacks_in_81913 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81913 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81913 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81913 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81913 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81913 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81913 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81913 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81913 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81913 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81913 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81913 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81913 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81913 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81913 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81913 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81913 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81913 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81913 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81913 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81913 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81913 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81913 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81913 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81913 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81913 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81913 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81913 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81913 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81913 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81913 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81913 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81913 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81913 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81913 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81913 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81913 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81913 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81913 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81913 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81913 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81913 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81913 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81913 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81914 {
      margin: 11px;      
    }

    #stacks_in_81914 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81914 {
      margin: 11px;      
    }

    #stacks_in_81914 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81914 {
      margin: 11px;      
    }

    #stacks_in_81914 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81919 {
      margin: 8px;      
    }

    #stacks_in_81919 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81919 {
      margin: 48px;      
    }

    #stacks_in_81919 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81919 {
      margin: 8px;      
    }

    #stacks_in_81919 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81919 {
      margin: 8px;      
    }

    #stacks_in_81919 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81919 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81920 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81922 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81900 article,
#stacks_in_81900 aside,
#stacks_in_81900 details,
#stacks_in_81900 figcaption,
#stacks_in_81900 figure,
#stacks_in_81900 footer,
#stacks_in_81900 header,
#stacks_in_81900 hgroup,
#stacks_in_81900 main,
#stacks_in_81900 nav,
#stacks_in_81900 section,
#stacks_in_81900 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81900 audio,
#stacks_in_81900 canvas,
#stacks_in_81900 progress,
#stacks_in_81900 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81900 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81900 [hidden],
#stacks_in_81900 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81900 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81900 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81900 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81900 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81900 code,
#stacks_in_81900 kbd,
#stacks_in_81900 pre,
#stacks_in_81900 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81900 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81900 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81900 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81900 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81900 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81900 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81900 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81900 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81900 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81900 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81900 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81900 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81900 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81900 .left {
  float: left !important; }

#stacks_in_81900 .right {
  float: right !important; }

#stacks_in_81900 .clearfix:before,
#stacks_in_81900 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81900 .clearfix:after {
  clear: both; }

#stacks_in_81900 .hide {
  display: none; }

#stacks_in_81900 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81900 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81900 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81900 select {
  width: 100%; }

#stacks_in_81900 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81900 .row:before,
#stacks_in_81900 .row:after {
  content: " ";
  display: table; }

#stacks_in_81900 .row:after {
  clear: both; }

#stacks_in_81900 .row.collapse > .column,
#stacks_in_81900 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81900 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81900 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81900 .row .row:before,
#stacks_in_81900 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81900 .row .row:after {
  clear: both; }

#stacks_in_81900 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81900 .row .row.collapse:before,
#stacks_in_81900 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81900 .row .row.collapse:after {
  clear: both; }

#stacks_in_81900 .column,
#stacks_in_81900 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81900 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81900 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81900 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81900 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81900 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81900 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81900 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81900 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81900 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81900 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81900 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81900 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81900 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81900 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81900 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81900 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81900 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81900 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81900 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81900 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81900 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81900 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81900 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81900 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81900 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81900 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81900 .column,
  #stacks_in_81900 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81900 .small-1 {
    width: 8.33333%; }

  #stacks_in_81900 .small-2 {
    width: 16.66667%; }

  #stacks_in_81900 .small-3 {
    width: 25%; }

  #stacks_in_81900 .small-4 {
    width: 33.33333%; }

  #stacks_in_81900 .small-5 {
    width: 41.66667%; }

  #stacks_in_81900 .small-6 {
    width: 50%; }

  #stacks_in_81900 .small-7 {
    width: 58.33333%; }

  #stacks_in_81900 .small-8 {
    width: 66.66667%; }

  #stacks_in_81900 .small-9 {
    width: 75%; }

  #stacks_in_81900 .small-10 {
    width: 83.33333%; }

  #stacks_in_81900 .small-11 {
    width: 91.66667%; }

  #stacks_in_81900 .small-12 {
    width: 100%; }

  #stacks_in_81900 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81900 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81900 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81900 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81900 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81900 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81900 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81900 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81900 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81900 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81900 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81900 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81900 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81900 .column.small-centered,
  #stacks_in_81900 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81900 .column.small-uncentered,
  #stacks_in_81900 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81900 .column.small-centered:last-child,
  #stacks_in_81900 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81900 .column.small-uncentered:last-child,
  #stacks_in_81900 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81900 .column.small-uncentered.opposite,
  #stacks_in_81900 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81900 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81900 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81900 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81900 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81900 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81900 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81900 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81900 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81900 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81900 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81900 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81900 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81900 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81900 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81900 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81900 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81900 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81900 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81900 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81900 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81900 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81900 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81900 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81900 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81900 .column,
  #stacks_in_81900 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81900 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81900 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81900 .medium-3 {
    width: 25%; }

  #stacks_in_81900 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81900 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81900 .medium-6 {
    width: 50%; }

  #stacks_in_81900 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81900 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81900 .medium-9 {
    width: 75%; }

  #stacks_in_81900 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81900 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81900 .medium-12 {
    width: 100%; }

  #stacks_in_81900 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81900 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81900 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81900 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81900 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81900 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81900 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81900 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81900 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81900 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81900 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81900 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81900 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81900 .column.medium-centered,
  #stacks_in_81900 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81900 .column.medium-uncentered,
  #stacks_in_81900 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81900 .column.medium-centered:last-child,
  #stacks_in_81900 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81900 .column.medium-uncentered:last-child,
  #stacks_in_81900 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81900 .column.medium-uncentered.opposite,
  #stacks_in_81900 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81900 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81900 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81900 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81900 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81900 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81900 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81900 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81900 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81900 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81900 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81900 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81900 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81900 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81900 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81900 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81900 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81900 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81900 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81900 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81900 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81900 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81900 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81900 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81900 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81900 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81900 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81900 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81900 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81900 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81900 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81900 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81900 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81900 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81900 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81900 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81900 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81900 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81900 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81900 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81900 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81900 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81900 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81900 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81900 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81900 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81900 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81900 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81900 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81900 .column,
  #stacks_in_81900 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81900 .large-1 {
    width: 8.33333%; }

  #stacks_in_81900 .large-2 {
    width: 16.66667%; }

  #stacks_in_81900 .large-3 {
    width: 25%; }

  #stacks_in_81900 .large-4 {
    width: 33.33333%; }

  #stacks_in_81900 .large-5 {
    width: 41.66667%; }

  #stacks_in_81900 .large-6 {
    width: 50%; }

  #stacks_in_81900 .large-7 {
    width: 58.33333%; }

  #stacks_in_81900 .large-8 {
    width: 66.66667%; }

  #stacks_in_81900 .large-9 {
    width: 75%; }

  #stacks_in_81900 .large-10 {
    width: 83.33333%; }

  #stacks_in_81900 .large-11 {
    width: 91.66667%; }

  #stacks_in_81900 .large-12 {
    width: 100%; }

  #stacks_in_81900 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81900 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81900 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81900 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81900 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81900 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81900 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81900 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81900 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81900 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81900 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81900 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81900 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81900 .column.large-centered,
  #stacks_in_81900 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81900 .column.large-uncentered,
  #stacks_in_81900 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81900 .column.large-centered:last-child,
  #stacks_in_81900 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81900 .column.large-uncentered:last-child,
  #stacks_in_81900 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81900 .column.large-uncentered.opposite,
  #stacks_in_81900 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81900 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81900 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81900 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81900 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81900 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81900 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81900 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81900 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81900 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81900 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81900 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81900 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81900 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81900 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81900 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81900 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81900 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81900 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81900 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81900 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81900 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81900 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81900 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81900 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81900 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81900 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81900 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81900 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81900 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81900 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81900 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81900 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81900 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81900 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81900 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81900 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81900 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81900 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81900 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81900 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81900 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81900 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81900 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81901 {
      margin: 11px;      
    }

    #stacks_in_81901 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81901 {
      margin: 11px;      
    }

    #stacks_in_81901 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81901 {
      margin: 11px;      
    }

    #stacks_in_81901 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81906 {
      margin: 8px;      
    }

    #stacks_in_81906 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81906 {
      margin: 48px;      
    }

    #stacks_in_81906 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81906 {
      margin: 8px;      
    }

    #stacks_in_81906 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81906 {
      margin: 8px;      
    }

    #stacks_in_81906 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81906 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81907 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81909 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81887 article,
#stacks_in_81887 aside,
#stacks_in_81887 details,
#stacks_in_81887 figcaption,
#stacks_in_81887 figure,
#stacks_in_81887 footer,
#stacks_in_81887 header,
#stacks_in_81887 hgroup,
#stacks_in_81887 main,
#stacks_in_81887 nav,
#stacks_in_81887 section,
#stacks_in_81887 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81887 audio,
#stacks_in_81887 canvas,
#stacks_in_81887 progress,
#stacks_in_81887 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81887 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81887 [hidden],
#stacks_in_81887 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81887 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81887 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81887 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81887 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81887 code,
#stacks_in_81887 kbd,
#stacks_in_81887 pre,
#stacks_in_81887 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81887 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81887 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81887 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81887 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81887 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81887 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81887 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81887 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81887 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81887 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81887 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81887 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81887 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81887 .left {
  float: left !important; }

#stacks_in_81887 .right {
  float: right !important; }

#stacks_in_81887 .clearfix:before,
#stacks_in_81887 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81887 .clearfix:after {
  clear: both; }

#stacks_in_81887 .hide {
  display: none; }

#stacks_in_81887 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81887 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81887 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81887 select {
  width: 100%; }

#stacks_in_81887 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81887 .row:before,
#stacks_in_81887 .row:after {
  content: " ";
  display: table; }

#stacks_in_81887 .row:after {
  clear: both; }

#stacks_in_81887 .row.collapse > .column,
#stacks_in_81887 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81887 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81887 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81887 .row .row:before,
#stacks_in_81887 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81887 .row .row:after {
  clear: both; }

#stacks_in_81887 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81887 .row .row.collapse:before,
#stacks_in_81887 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81887 .row .row.collapse:after {
  clear: both; }

#stacks_in_81887 .column,
#stacks_in_81887 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81887 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81887 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81887 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81887 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81887 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81887 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81887 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81887 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81887 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81887 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81887 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81887 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81887 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81887 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81887 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81887 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81887 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81887 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81887 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81887 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81887 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81887 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81887 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81887 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81887 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81887 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81887 .column,
  #stacks_in_81887 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81887 .small-1 {
    width: 8.33333%; }

  #stacks_in_81887 .small-2 {
    width: 16.66667%; }

  #stacks_in_81887 .small-3 {
    width: 25%; }

  #stacks_in_81887 .small-4 {
    width: 33.33333%; }

  #stacks_in_81887 .small-5 {
    width: 41.66667%; }

  #stacks_in_81887 .small-6 {
    width: 50%; }

  #stacks_in_81887 .small-7 {
    width: 58.33333%; }

  #stacks_in_81887 .small-8 {
    width: 66.66667%; }

  #stacks_in_81887 .small-9 {
    width: 75%; }

  #stacks_in_81887 .small-10 {
    width: 83.33333%; }

  #stacks_in_81887 .small-11 {
    width: 91.66667%; }

  #stacks_in_81887 .small-12 {
    width: 100%; }

  #stacks_in_81887 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81887 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81887 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81887 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81887 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81887 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81887 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81887 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81887 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81887 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81887 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81887 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81887 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81887 .column.small-centered,
  #stacks_in_81887 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81887 .column.small-uncentered,
  #stacks_in_81887 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81887 .column.small-centered:last-child,
  #stacks_in_81887 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81887 .column.small-uncentered:last-child,
  #stacks_in_81887 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81887 .column.small-uncentered.opposite,
  #stacks_in_81887 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81887 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81887 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81887 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81887 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81887 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81887 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81887 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81887 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81887 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81887 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81887 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81887 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81887 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81887 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81887 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81887 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81887 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81887 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81887 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81887 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81887 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81887 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81887 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81887 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81887 .column,
  #stacks_in_81887 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81887 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81887 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81887 .medium-3 {
    width: 25%; }

  #stacks_in_81887 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81887 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81887 .medium-6 {
    width: 50%; }

  #stacks_in_81887 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81887 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81887 .medium-9 {
    width: 75%; }

  #stacks_in_81887 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81887 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81887 .medium-12 {
    width: 100%; }

  #stacks_in_81887 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81887 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81887 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81887 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81887 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81887 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81887 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81887 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81887 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81887 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81887 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81887 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81887 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81887 .column.medium-centered,
  #stacks_in_81887 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81887 .column.medium-uncentered,
  #stacks_in_81887 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81887 .column.medium-centered:last-child,
  #stacks_in_81887 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81887 .column.medium-uncentered:last-child,
  #stacks_in_81887 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81887 .column.medium-uncentered.opposite,
  #stacks_in_81887 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81887 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81887 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81887 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81887 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81887 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81887 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81887 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81887 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81887 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81887 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81887 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81887 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81887 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81887 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81887 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81887 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81887 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81887 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81887 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81887 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81887 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81887 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81887 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81887 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81887 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81887 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81887 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81887 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81887 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81887 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81887 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81887 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81887 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81887 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81887 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81887 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81887 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81887 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81887 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81887 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81887 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81887 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81887 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81887 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81887 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81887 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81887 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81887 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81887 .column,
  #stacks_in_81887 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81887 .large-1 {
    width: 8.33333%; }

  #stacks_in_81887 .large-2 {
    width: 16.66667%; }

  #stacks_in_81887 .large-3 {
    width: 25%; }

  #stacks_in_81887 .large-4 {
    width: 33.33333%; }

  #stacks_in_81887 .large-5 {
    width: 41.66667%; }

  #stacks_in_81887 .large-6 {
    width: 50%; }

  #stacks_in_81887 .large-7 {
    width: 58.33333%; }

  #stacks_in_81887 .large-8 {
    width: 66.66667%; }

  #stacks_in_81887 .large-9 {
    width: 75%; }

  #stacks_in_81887 .large-10 {
    width: 83.33333%; }

  #stacks_in_81887 .large-11 {
    width: 91.66667%; }

  #stacks_in_81887 .large-12 {
    width: 100%; }

  #stacks_in_81887 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81887 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81887 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81887 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81887 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81887 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81887 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81887 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81887 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81887 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81887 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81887 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81887 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81887 .column.large-centered,
  #stacks_in_81887 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81887 .column.large-uncentered,
  #stacks_in_81887 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81887 .column.large-centered:last-child,
  #stacks_in_81887 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81887 .column.large-uncentered:last-child,
  #stacks_in_81887 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81887 .column.large-uncentered.opposite,
  #stacks_in_81887 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81887 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81887 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81887 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81887 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81887 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81887 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81887 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81887 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81887 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81887 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81887 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81887 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81887 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81887 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81887 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81887 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81887 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81887 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81887 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81887 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81887 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81887 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81887 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81887 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81887 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81887 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81887 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81887 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81887 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81887 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81887 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81887 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81887 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81887 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81887 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81887 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81887 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81887 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81887 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81887 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81887 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81887 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81887 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81888 {
      margin: 11px;      
    }

    #stacks_in_81888 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81888 {
      margin: 11px;      
    }

    #stacks_in_81888 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81888 {
      margin: 11px;      
    }

    #stacks_in_81888 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81893 {
      margin: 8px;      
    }

    #stacks_in_81893 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81893 {
      margin: 48px;      
    }

    #stacks_in_81893 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81893 {
      margin: 8px;      
    }

    #stacks_in_81893 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81893 {
      margin: 8px;      
    }

    #stacks_in_81893 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81893 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81894 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81896 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81874 article,
#stacks_in_81874 aside,
#stacks_in_81874 details,
#stacks_in_81874 figcaption,
#stacks_in_81874 figure,
#stacks_in_81874 footer,
#stacks_in_81874 header,
#stacks_in_81874 hgroup,
#stacks_in_81874 main,
#stacks_in_81874 nav,
#stacks_in_81874 section,
#stacks_in_81874 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81874 audio,
#stacks_in_81874 canvas,
#stacks_in_81874 progress,
#stacks_in_81874 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81874 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81874 [hidden],
#stacks_in_81874 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81874 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81874 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81874 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81874 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81874 code,
#stacks_in_81874 kbd,
#stacks_in_81874 pre,
#stacks_in_81874 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81874 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81874 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81874 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81874 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81874 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81874 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81874 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81874 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81874 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81874 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81874 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81874 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81874 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81874 .left {
  float: left !important; }

#stacks_in_81874 .right {
  float: right !important; }

#stacks_in_81874 .clearfix:before,
#stacks_in_81874 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81874 .clearfix:after {
  clear: both; }

#stacks_in_81874 .hide {
  display: none; }

#stacks_in_81874 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81874 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81874 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81874 select {
  width: 100%; }

#stacks_in_81874 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81874 .row:before,
#stacks_in_81874 .row:after {
  content: " ";
  display: table; }

#stacks_in_81874 .row:after {
  clear: both; }

#stacks_in_81874 .row.collapse > .column,
#stacks_in_81874 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81874 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81874 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81874 .row .row:before,
#stacks_in_81874 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81874 .row .row:after {
  clear: both; }

#stacks_in_81874 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81874 .row .row.collapse:before,
#stacks_in_81874 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81874 .row .row.collapse:after {
  clear: both; }

#stacks_in_81874 .column,
#stacks_in_81874 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81874 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81874 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81874 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81874 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81874 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81874 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81874 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81874 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81874 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81874 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81874 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81874 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81874 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81874 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81874 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81874 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81874 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81874 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81874 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81874 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81874 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81874 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81874 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81874 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81874 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81874 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81874 .column,
  #stacks_in_81874 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81874 .small-1 {
    width: 8.33333%; }

  #stacks_in_81874 .small-2 {
    width: 16.66667%; }

  #stacks_in_81874 .small-3 {
    width: 25%; }

  #stacks_in_81874 .small-4 {
    width: 33.33333%; }

  #stacks_in_81874 .small-5 {
    width: 41.66667%; }

  #stacks_in_81874 .small-6 {
    width: 50%; }

  #stacks_in_81874 .small-7 {
    width: 58.33333%; }

  #stacks_in_81874 .small-8 {
    width: 66.66667%; }

  #stacks_in_81874 .small-9 {
    width: 75%; }

  #stacks_in_81874 .small-10 {
    width: 83.33333%; }

  #stacks_in_81874 .small-11 {
    width: 91.66667%; }

  #stacks_in_81874 .small-12 {
    width: 100%; }

  #stacks_in_81874 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81874 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81874 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81874 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81874 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81874 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81874 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81874 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81874 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81874 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81874 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81874 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81874 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81874 .column.small-centered,
  #stacks_in_81874 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81874 .column.small-uncentered,
  #stacks_in_81874 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81874 .column.small-centered:last-child,
  #stacks_in_81874 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81874 .column.small-uncentered:last-child,
  #stacks_in_81874 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81874 .column.small-uncentered.opposite,
  #stacks_in_81874 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81874 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81874 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81874 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81874 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81874 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81874 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81874 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81874 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81874 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81874 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81874 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81874 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81874 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81874 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81874 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81874 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81874 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81874 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81874 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81874 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81874 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81874 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81874 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81874 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81874 .column,
  #stacks_in_81874 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81874 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81874 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81874 .medium-3 {
    width: 25%; }

  #stacks_in_81874 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81874 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81874 .medium-6 {
    width: 50%; }

  #stacks_in_81874 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81874 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81874 .medium-9 {
    width: 75%; }

  #stacks_in_81874 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81874 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81874 .medium-12 {
    width: 100%; }

  #stacks_in_81874 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81874 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81874 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81874 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81874 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81874 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81874 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81874 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81874 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81874 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81874 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81874 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81874 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81874 .column.medium-centered,
  #stacks_in_81874 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81874 .column.medium-uncentered,
  #stacks_in_81874 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81874 .column.medium-centered:last-child,
  #stacks_in_81874 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81874 .column.medium-uncentered:last-child,
  #stacks_in_81874 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81874 .column.medium-uncentered.opposite,
  #stacks_in_81874 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81874 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81874 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81874 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81874 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81874 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81874 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81874 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81874 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81874 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81874 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81874 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81874 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81874 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81874 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81874 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81874 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81874 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81874 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81874 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81874 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81874 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81874 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81874 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81874 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81874 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81874 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81874 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81874 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81874 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81874 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81874 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81874 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81874 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81874 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81874 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81874 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81874 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81874 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81874 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81874 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81874 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81874 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81874 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81874 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81874 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81874 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81874 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81874 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81874 .column,
  #stacks_in_81874 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81874 .large-1 {
    width: 8.33333%; }

  #stacks_in_81874 .large-2 {
    width: 16.66667%; }

  #stacks_in_81874 .large-3 {
    width: 25%; }

  #stacks_in_81874 .large-4 {
    width: 33.33333%; }

  #stacks_in_81874 .large-5 {
    width: 41.66667%; }

  #stacks_in_81874 .large-6 {
    width: 50%; }

  #stacks_in_81874 .large-7 {
    width: 58.33333%; }

  #stacks_in_81874 .large-8 {
    width: 66.66667%; }

  #stacks_in_81874 .large-9 {
    width: 75%; }

  #stacks_in_81874 .large-10 {
    width: 83.33333%; }

  #stacks_in_81874 .large-11 {
    width: 91.66667%; }

  #stacks_in_81874 .large-12 {
    width: 100%; }

  #stacks_in_81874 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81874 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81874 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81874 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81874 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81874 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81874 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81874 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81874 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81874 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81874 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81874 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81874 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81874 .column.large-centered,
  #stacks_in_81874 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81874 .column.large-uncentered,
  #stacks_in_81874 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81874 .column.large-centered:last-child,
  #stacks_in_81874 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81874 .column.large-uncentered:last-child,
  #stacks_in_81874 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81874 .column.large-uncentered.opposite,
  #stacks_in_81874 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81874 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81874 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81874 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81874 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81874 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81874 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81874 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81874 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81874 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81874 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81874 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81874 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81874 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81874 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81874 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81874 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81874 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81874 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81874 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81874 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81874 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81874 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81874 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81874 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81874 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81874 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81874 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81874 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81874 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81874 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81874 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81874 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81874 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81874 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81874 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81874 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81874 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81874 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81874 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81874 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81874 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81874 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81874 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81875 {
      margin: 11px;      
    }

    #stacks_in_81875 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81875 {
      margin: 11px;      
    }

    #stacks_in_81875 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81875 {
      margin: 11px;      
    }

    #stacks_in_81875 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81880 {
      margin: 8px;      
    }

    #stacks_in_81880 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81880 {
      margin: 48px;      
    }

    #stacks_in_81880 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81880 {
      margin: 8px;      
    }

    #stacks_in_81880 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81880 {
      margin: 8px;      
    }

    #stacks_in_81880 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81880 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81881 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81883 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81861 article,
#stacks_in_81861 aside,
#stacks_in_81861 details,
#stacks_in_81861 figcaption,
#stacks_in_81861 figure,
#stacks_in_81861 footer,
#stacks_in_81861 header,
#stacks_in_81861 hgroup,
#stacks_in_81861 main,
#stacks_in_81861 nav,
#stacks_in_81861 section,
#stacks_in_81861 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81861 audio,
#stacks_in_81861 canvas,
#stacks_in_81861 progress,
#stacks_in_81861 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81861 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81861 [hidden],
#stacks_in_81861 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81861 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81861 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81861 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81861 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81861 code,
#stacks_in_81861 kbd,
#stacks_in_81861 pre,
#stacks_in_81861 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81861 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81861 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81861 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81861 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81861 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81861 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81861 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81861 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81861 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81861 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81861 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81861 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81861 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81861 .left {
  float: left !important; }

#stacks_in_81861 .right {
  float: right !important; }

#stacks_in_81861 .clearfix:before,
#stacks_in_81861 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81861 .clearfix:after {
  clear: both; }

#stacks_in_81861 .hide {
  display: none; }

#stacks_in_81861 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81861 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81861 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81861 select {
  width: 100%; }

#stacks_in_81861 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81861 .row:before,
#stacks_in_81861 .row:after {
  content: " ";
  display: table; }

#stacks_in_81861 .row:after {
  clear: both; }

#stacks_in_81861 .row.collapse > .column,
#stacks_in_81861 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81861 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81861 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81861 .row .row:before,
#stacks_in_81861 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81861 .row .row:after {
  clear: both; }

#stacks_in_81861 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81861 .row .row.collapse:before,
#stacks_in_81861 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81861 .row .row.collapse:after {
  clear: both; }

#stacks_in_81861 .column,
#stacks_in_81861 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81861 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81861 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81861 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81861 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81861 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81861 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81861 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81861 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81861 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81861 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81861 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81861 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81861 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81861 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81861 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81861 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81861 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81861 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81861 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81861 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81861 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81861 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81861 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81861 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81861 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81861 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81861 .column,
  #stacks_in_81861 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81861 .small-1 {
    width: 8.33333%; }

  #stacks_in_81861 .small-2 {
    width: 16.66667%; }

  #stacks_in_81861 .small-3 {
    width: 25%; }

  #stacks_in_81861 .small-4 {
    width: 33.33333%; }

  #stacks_in_81861 .small-5 {
    width: 41.66667%; }

  #stacks_in_81861 .small-6 {
    width: 50%; }

  #stacks_in_81861 .small-7 {
    width: 58.33333%; }

  #stacks_in_81861 .small-8 {
    width: 66.66667%; }

  #stacks_in_81861 .small-9 {
    width: 75%; }

  #stacks_in_81861 .small-10 {
    width: 83.33333%; }

  #stacks_in_81861 .small-11 {
    width: 91.66667%; }

  #stacks_in_81861 .small-12 {
    width: 100%; }

  #stacks_in_81861 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81861 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81861 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81861 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81861 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81861 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81861 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81861 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81861 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81861 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81861 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81861 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81861 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81861 .column.small-centered,
  #stacks_in_81861 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81861 .column.small-uncentered,
  #stacks_in_81861 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81861 .column.small-centered:last-child,
  #stacks_in_81861 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81861 .column.small-uncentered:last-child,
  #stacks_in_81861 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81861 .column.small-uncentered.opposite,
  #stacks_in_81861 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81861 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81861 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81861 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81861 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81861 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81861 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81861 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81861 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81861 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81861 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81861 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81861 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81861 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81861 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81861 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81861 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81861 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81861 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81861 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81861 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81861 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81861 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81861 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81861 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81861 .column,
  #stacks_in_81861 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81861 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81861 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81861 .medium-3 {
    width: 25%; }

  #stacks_in_81861 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81861 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81861 .medium-6 {
    width: 50%; }

  #stacks_in_81861 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81861 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81861 .medium-9 {
    width: 75%; }

  #stacks_in_81861 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81861 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81861 .medium-12 {
    width: 100%; }

  #stacks_in_81861 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81861 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81861 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81861 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81861 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81861 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81861 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81861 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81861 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81861 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81861 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81861 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81861 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81861 .column.medium-centered,
  #stacks_in_81861 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81861 .column.medium-uncentered,
  #stacks_in_81861 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81861 .column.medium-centered:last-child,
  #stacks_in_81861 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81861 .column.medium-uncentered:last-child,
  #stacks_in_81861 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81861 .column.medium-uncentered.opposite,
  #stacks_in_81861 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81861 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81861 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81861 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81861 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81861 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81861 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81861 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81861 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81861 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81861 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81861 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81861 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81861 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81861 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81861 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81861 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81861 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81861 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81861 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81861 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81861 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81861 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81861 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81861 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81861 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81861 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81861 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81861 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81861 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81861 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81861 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81861 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81861 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81861 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81861 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81861 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81861 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81861 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81861 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81861 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81861 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81861 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81861 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81861 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81861 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81861 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81861 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81861 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81861 .column,
  #stacks_in_81861 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81861 .large-1 {
    width: 8.33333%; }

  #stacks_in_81861 .large-2 {
    width: 16.66667%; }

  #stacks_in_81861 .large-3 {
    width: 25%; }

  #stacks_in_81861 .large-4 {
    width: 33.33333%; }

  #stacks_in_81861 .large-5 {
    width: 41.66667%; }

  #stacks_in_81861 .large-6 {
    width: 50%; }

  #stacks_in_81861 .large-7 {
    width: 58.33333%; }

  #stacks_in_81861 .large-8 {
    width: 66.66667%; }

  #stacks_in_81861 .large-9 {
    width: 75%; }

  #stacks_in_81861 .large-10 {
    width: 83.33333%; }

  #stacks_in_81861 .large-11 {
    width: 91.66667%; }

  #stacks_in_81861 .large-12 {
    width: 100%; }

  #stacks_in_81861 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81861 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81861 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81861 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81861 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81861 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81861 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81861 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81861 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81861 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81861 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81861 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81861 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81861 .column.large-centered,
  #stacks_in_81861 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81861 .column.large-uncentered,
  #stacks_in_81861 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81861 .column.large-centered:last-child,
  #stacks_in_81861 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81861 .column.large-uncentered:last-child,
  #stacks_in_81861 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81861 .column.large-uncentered.opposite,
  #stacks_in_81861 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81861 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81861 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81861 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81861 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81861 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81861 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81861 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81861 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81861 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81861 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81861 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81861 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81861 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81861 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81861 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81861 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81861 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81861 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81861 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81861 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81861 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81861 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81861 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81861 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81861 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81861 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81861 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81861 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81861 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81861 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81861 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81861 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81861 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81861 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81861 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81861 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81861 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81861 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81861 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81861 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81861 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81861 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81861 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81862 {
      margin: 11px;      
    }

    #stacks_in_81862 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81862 {
      margin: 11px;      
    }

    #stacks_in_81862 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81862 {
      margin: 11px;      
    }

    #stacks_in_81862 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81867 {
      margin: 8px;      
    }

    #stacks_in_81867 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81867 {
      margin: 48px;      
    }

    #stacks_in_81867 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81867 {
      margin: 8px;      
    }

    #stacks_in_81867 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81867 {
      margin: 8px;      
    }

    #stacks_in_81867 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81867 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81868 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81870 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81848 article,
#stacks_in_81848 aside,
#stacks_in_81848 details,
#stacks_in_81848 figcaption,
#stacks_in_81848 figure,
#stacks_in_81848 footer,
#stacks_in_81848 header,
#stacks_in_81848 hgroup,
#stacks_in_81848 main,
#stacks_in_81848 nav,
#stacks_in_81848 section,
#stacks_in_81848 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81848 audio,
#stacks_in_81848 canvas,
#stacks_in_81848 progress,
#stacks_in_81848 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81848 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81848 [hidden],
#stacks_in_81848 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81848 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81848 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81848 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81848 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81848 code,
#stacks_in_81848 kbd,
#stacks_in_81848 pre,
#stacks_in_81848 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81848 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81848 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81848 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81848 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81848 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81848 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81848 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81848 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81848 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81848 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81848 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81848 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81848 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81848 .left {
  float: left !important; }

#stacks_in_81848 .right {
  float: right !important; }

#stacks_in_81848 .clearfix:before,
#stacks_in_81848 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81848 .clearfix:after {
  clear: both; }

#stacks_in_81848 .hide {
  display: none; }

#stacks_in_81848 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81848 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81848 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81848 select {
  width: 100%; }

#stacks_in_81848 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81848 .row:before,
#stacks_in_81848 .row:after {
  content: " ";
  display: table; }

#stacks_in_81848 .row:after {
  clear: both; }

#stacks_in_81848 .row.collapse > .column,
#stacks_in_81848 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81848 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81848 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81848 .row .row:before,
#stacks_in_81848 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81848 .row .row:after {
  clear: both; }

#stacks_in_81848 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81848 .row .row.collapse:before,
#stacks_in_81848 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81848 .row .row.collapse:after {
  clear: both; }

#stacks_in_81848 .column,
#stacks_in_81848 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81848 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81848 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81848 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81848 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81848 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81848 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81848 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81848 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81848 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81848 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81848 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81848 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81848 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81848 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81848 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81848 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81848 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81848 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81848 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81848 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81848 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81848 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81848 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81848 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81848 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81848 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81848 .column,
  #stacks_in_81848 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81848 .small-1 {
    width: 8.33333%; }

  #stacks_in_81848 .small-2 {
    width: 16.66667%; }

  #stacks_in_81848 .small-3 {
    width: 25%; }

  #stacks_in_81848 .small-4 {
    width: 33.33333%; }

  #stacks_in_81848 .small-5 {
    width: 41.66667%; }

  #stacks_in_81848 .small-6 {
    width: 50%; }

  #stacks_in_81848 .small-7 {
    width: 58.33333%; }

  #stacks_in_81848 .small-8 {
    width: 66.66667%; }

  #stacks_in_81848 .small-9 {
    width: 75%; }

  #stacks_in_81848 .small-10 {
    width: 83.33333%; }

  #stacks_in_81848 .small-11 {
    width: 91.66667%; }

  #stacks_in_81848 .small-12 {
    width: 100%; }

  #stacks_in_81848 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81848 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81848 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81848 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81848 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81848 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81848 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81848 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81848 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81848 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81848 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81848 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81848 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81848 .column.small-centered,
  #stacks_in_81848 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81848 .column.small-uncentered,
  #stacks_in_81848 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81848 .column.small-centered:last-child,
  #stacks_in_81848 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81848 .column.small-uncentered:last-child,
  #stacks_in_81848 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81848 .column.small-uncentered.opposite,
  #stacks_in_81848 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81848 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81848 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81848 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81848 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81848 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81848 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81848 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81848 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81848 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81848 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81848 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81848 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81848 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81848 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81848 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81848 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81848 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81848 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81848 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81848 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81848 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81848 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81848 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81848 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81848 .column,
  #stacks_in_81848 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81848 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81848 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81848 .medium-3 {
    width: 25%; }

  #stacks_in_81848 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81848 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81848 .medium-6 {
    width: 50%; }

  #stacks_in_81848 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81848 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81848 .medium-9 {
    width: 75%; }

  #stacks_in_81848 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81848 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81848 .medium-12 {
    width: 100%; }

  #stacks_in_81848 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81848 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81848 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81848 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81848 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81848 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81848 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81848 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81848 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81848 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81848 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81848 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81848 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81848 .column.medium-centered,
  #stacks_in_81848 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81848 .column.medium-uncentered,
  #stacks_in_81848 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81848 .column.medium-centered:last-child,
  #stacks_in_81848 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81848 .column.medium-uncentered:last-child,
  #stacks_in_81848 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81848 .column.medium-uncentered.opposite,
  #stacks_in_81848 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81848 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81848 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81848 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81848 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81848 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81848 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81848 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81848 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81848 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81848 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81848 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81848 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81848 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81848 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81848 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81848 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81848 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81848 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81848 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81848 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81848 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81848 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81848 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81848 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81848 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81848 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81848 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81848 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81848 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81848 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81848 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81848 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81848 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81848 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81848 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81848 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81848 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81848 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81848 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81848 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81848 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81848 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81848 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81848 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81848 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81848 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81848 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81848 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81848 .column,
  #stacks_in_81848 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81848 .large-1 {
    width: 8.33333%; }

  #stacks_in_81848 .large-2 {
    width: 16.66667%; }

  #stacks_in_81848 .large-3 {
    width: 25%; }

  #stacks_in_81848 .large-4 {
    width: 33.33333%; }

  #stacks_in_81848 .large-5 {
    width: 41.66667%; }

  #stacks_in_81848 .large-6 {
    width: 50%; }

  #stacks_in_81848 .large-7 {
    width: 58.33333%; }

  #stacks_in_81848 .large-8 {
    width: 66.66667%; }

  #stacks_in_81848 .large-9 {
    width: 75%; }

  #stacks_in_81848 .large-10 {
    width: 83.33333%; }

  #stacks_in_81848 .large-11 {
    width: 91.66667%; }

  #stacks_in_81848 .large-12 {
    width: 100%; }

  #stacks_in_81848 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81848 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81848 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81848 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81848 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81848 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81848 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81848 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81848 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81848 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81848 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81848 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81848 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81848 .column.large-centered,
  #stacks_in_81848 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81848 .column.large-uncentered,
  #stacks_in_81848 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81848 .column.large-centered:last-child,
  #stacks_in_81848 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81848 .column.large-uncentered:last-child,
  #stacks_in_81848 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81848 .column.large-uncentered.opposite,
  #stacks_in_81848 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81848 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81848 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81848 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81848 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81848 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81848 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81848 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81848 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81848 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81848 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81848 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81848 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81848 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81848 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81848 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81848 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81848 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81848 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81848 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81848 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81848 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81848 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81848 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81848 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81848 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81848 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81848 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81848 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81848 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81848 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81848 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81848 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81848 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81848 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81848 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81848 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81848 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81848 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81848 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81848 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81848 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81848 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81848 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81849 {
      margin: 11px;      
    }

    #stacks_in_81849 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81849 {
      margin: 11px;      
    }

    #stacks_in_81849 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81849 {
      margin: 11px;      
    }

    #stacks_in_81849 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81854 {
      margin: 8px;      
    }

    #stacks_in_81854 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81854 {
      margin: 48px;      
    }

    #stacks_in_81854 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81854 {
      margin: 8px;      
    }

    #stacks_in_81854 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81854 {
      margin: 8px;      
    }

    #stacks_in_81854 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81854 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81855 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81857 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81835 article,
#stacks_in_81835 aside,
#stacks_in_81835 details,
#stacks_in_81835 figcaption,
#stacks_in_81835 figure,
#stacks_in_81835 footer,
#stacks_in_81835 header,
#stacks_in_81835 hgroup,
#stacks_in_81835 main,
#stacks_in_81835 nav,
#stacks_in_81835 section,
#stacks_in_81835 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81835 audio,
#stacks_in_81835 canvas,
#stacks_in_81835 progress,
#stacks_in_81835 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81835 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81835 [hidden],
#stacks_in_81835 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81835 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81835 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81835 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81835 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81835 code,
#stacks_in_81835 kbd,
#stacks_in_81835 pre,
#stacks_in_81835 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81835 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81835 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81835 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81835 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81835 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81835 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81835 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81835 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81835 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81835 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81835 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81835 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81835 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81835 .left {
  float: left !important; }

#stacks_in_81835 .right {
  float: right !important; }

#stacks_in_81835 .clearfix:before,
#stacks_in_81835 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81835 .clearfix:after {
  clear: both; }

#stacks_in_81835 .hide {
  display: none; }

#stacks_in_81835 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81835 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81835 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81835 select {
  width: 100%; }

#stacks_in_81835 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81835 .row:before,
#stacks_in_81835 .row:after {
  content: " ";
  display: table; }

#stacks_in_81835 .row:after {
  clear: both; }

#stacks_in_81835 .row.collapse > .column,
#stacks_in_81835 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81835 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81835 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81835 .row .row:before,
#stacks_in_81835 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81835 .row .row:after {
  clear: both; }

#stacks_in_81835 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81835 .row .row.collapse:before,
#stacks_in_81835 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81835 .row .row.collapse:after {
  clear: both; }

#stacks_in_81835 .column,
#stacks_in_81835 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81835 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81835 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81835 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81835 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81835 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81835 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81835 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81835 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81835 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81835 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81835 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81835 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81835 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81835 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81835 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81835 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81835 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81835 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81835 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81835 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81835 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81835 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81835 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81835 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81835 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81835 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81835 .column,
  #stacks_in_81835 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81835 .small-1 {
    width: 8.33333%; }

  #stacks_in_81835 .small-2 {
    width: 16.66667%; }

  #stacks_in_81835 .small-3 {
    width: 25%; }

  #stacks_in_81835 .small-4 {
    width: 33.33333%; }

  #stacks_in_81835 .small-5 {
    width: 41.66667%; }

  #stacks_in_81835 .small-6 {
    width: 50%; }

  #stacks_in_81835 .small-7 {
    width: 58.33333%; }

  #stacks_in_81835 .small-8 {
    width: 66.66667%; }

  #stacks_in_81835 .small-9 {
    width: 75%; }

  #stacks_in_81835 .small-10 {
    width: 83.33333%; }

  #stacks_in_81835 .small-11 {
    width: 91.66667%; }

  #stacks_in_81835 .small-12 {
    width: 100%; }

  #stacks_in_81835 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81835 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81835 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81835 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81835 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81835 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81835 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81835 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81835 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81835 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81835 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81835 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81835 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81835 .column.small-centered,
  #stacks_in_81835 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81835 .column.small-uncentered,
  #stacks_in_81835 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81835 .column.small-centered:last-child,
  #stacks_in_81835 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81835 .column.small-uncentered:last-child,
  #stacks_in_81835 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81835 .column.small-uncentered.opposite,
  #stacks_in_81835 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81835 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81835 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81835 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81835 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81835 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81835 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81835 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81835 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81835 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81835 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81835 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81835 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81835 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81835 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81835 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81835 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81835 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81835 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81835 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81835 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81835 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81835 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81835 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81835 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81835 .column,
  #stacks_in_81835 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81835 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81835 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81835 .medium-3 {
    width: 25%; }

  #stacks_in_81835 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81835 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81835 .medium-6 {
    width: 50%; }

  #stacks_in_81835 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81835 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81835 .medium-9 {
    width: 75%; }

  #stacks_in_81835 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81835 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81835 .medium-12 {
    width: 100%; }

  #stacks_in_81835 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81835 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81835 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81835 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81835 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81835 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81835 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81835 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81835 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81835 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81835 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81835 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81835 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81835 .column.medium-centered,
  #stacks_in_81835 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81835 .column.medium-uncentered,
  #stacks_in_81835 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81835 .column.medium-centered:last-child,
  #stacks_in_81835 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81835 .column.medium-uncentered:last-child,
  #stacks_in_81835 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81835 .column.medium-uncentered.opposite,
  #stacks_in_81835 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81835 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81835 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81835 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81835 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81835 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81835 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81835 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81835 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81835 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81835 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81835 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81835 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81835 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81835 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81835 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81835 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81835 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81835 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81835 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81835 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81835 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81835 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81835 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81835 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81835 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81835 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81835 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81835 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81835 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81835 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81835 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81835 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81835 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81835 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81835 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81835 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81835 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81835 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81835 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81835 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81835 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81835 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81835 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81835 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81835 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81835 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81835 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81835 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81835 .column,
  #stacks_in_81835 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81835 .large-1 {
    width: 8.33333%; }

  #stacks_in_81835 .large-2 {
    width: 16.66667%; }

  #stacks_in_81835 .large-3 {
    width: 25%; }

  #stacks_in_81835 .large-4 {
    width: 33.33333%; }

  #stacks_in_81835 .large-5 {
    width: 41.66667%; }

  #stacks_in_81835 .large-6 {
    width: 50%; }

  #stacks_in_81835 .large-7 {
    width: 58.33333%; }

  #stacks_in_81835 .large-8 {
    width: 66.66667%; }

  #stacks_in_81835 .large-9 {
    width: 75%; }

  #stacks_in_81835 .large-10 {
    width: 83.33333%; }

  #stacks_in_81835 .large-11 {
    width: 91.66667%; }

  #stacks_in_81835 .large-12 {
    width: 100%; }

  #stacks_in_81835 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81835 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81835 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81835 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81835 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81835 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81835 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81835 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81835 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81835 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81835 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81835 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81835 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81835 .column.large-centered,
  #stacks_in_81835 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81835 .column.large-uncentered,
  #stacks_in_81835 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81835 .column.large-centered:last-child,
  #stacks_in_81835 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81835 .column.large-uncentered:last-child,
  #stacks_in_81835 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81835 .column.large-uncentered.opposite,
  #stacks_in_81835 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81835 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81835 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81835 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81835 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81835 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81835 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81835 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81835 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81835 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81835 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81835 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81835 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81835 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81835 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81835 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81835 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81835 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81835 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81835 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81835 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81835 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81835 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81835 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81835 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81835 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81835 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81835 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81835 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81835 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81835 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81835 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81835 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81835 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81835 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81835 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81835 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81835 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81835 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81835 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81835 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81835 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81835 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81835 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81836 {
      margin: 11px;      
    }

    #stacks_in_81836 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81836 {
      margin: 11px;      
    }

    #stacks_in_81836 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81836 {
      margin: 11px;      
    }

    #stacks_in_81836 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81841 {
      margin: 8px;      
    }

    #stacks_in_81841 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81841 {
      margin: 48px;      
    }

    #stacks_in_81841 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81841 {
      margin: 8px;      
    }

    #stacks_in_81841 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81841 {
      margin: 8px;      
    }

    #stacks_in_81841 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81841 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81842 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81844 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81822 article,
#stacks_in_81822 aside,
#stacks_in_81822 details,
#stacks_in_81822 figcaption,
#stacks_in_81822 figure,
#stacks_in_81822 footer,
#stacks_in_81822 header,
#stacks_in_81822 hgroup,
#stacks_in_81822 main,
#stacks_in_81822 nav,
#stacks_in_81822 section,
#stacks_in_81822 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81822 audio,
#stacks_in_81822 canvas,
#stacks_in_81822 progress,
#stacks_in_81822 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81822 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81822 [hidden],
#stacks_in_81822 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81822 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81822 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81822 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81822 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81822 code,
#stacks_in_81822 kbd,
#stacks_in_81822 pre,
#stacks_in_81822 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81822 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81822 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81822 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81822 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81822 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81822 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81822 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81822 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81822 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81822 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81822 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81822 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81822 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81822 .left {
  float: left !important; }

#stacks_in_81822 .right {
  float: right !important; }

#stacks_in_81822 .clearfix:before,
#stacks_in_81822 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81822 .clearfix:after {
  clear: both; }

#stacks_in_81822 .hide {
  display: none; }

#stacks_in_81822 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81822 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81822 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81822 select {
  width: 100%; }

#stacks_in_81822 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81822 .row:before,
#stacks_in_81822 .row:after {
  content: " ";
  display: table; }

#stacks_in_81822 .row:after {
  clear: both; }

#stacks_in_81822 .row.collapse > .column,
#stacks_in_81822 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81822 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81822 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81822 .row .row:before,
#stacks_in_81822 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81822 .row .row:after {
  clear: both; }

#stacks_in_81822 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81822 .row .row.collapse:before,
#stacks_in_81822 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81822 .row .row.collapse:after {
  clear: both; }

#stacks_in_81822 .column,
#stacks_in_81822 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81822 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81822 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81822 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81822 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81822 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81822 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81822 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81822 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81822 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81822 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81822 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81822 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81822 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81822 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81822 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81822 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81822 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81822 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81822 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81822 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81822 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81822 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81822 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81822 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81822 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81822 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81822 .column,
  #stacks_in_81822 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81822 .small-1 {
    width: 8.33333%; }

  #stacks_in_81822 .small-2 {
    width: 16.66667%; }

  #stacks_in_81822 .small-3 {
    width: 25%; }

  #stacks_in_81822 .small-4 {
    width: 33.33333%; }

  #stacks_in_81822 .small-5 {
    width: 41.66667%; }

  #stacks_in_81822 .small-6 {
    width: 50%; }

  #stacks_in_81822 .small-7 {
    width: 58.33333%; }

  #stacks_in_81822 .small-8 {
    width: 66.66667%; }

  #stacks_in_81822 .small-9 {
    width: 75%; }

  #stacks_in_81822 .small-10 {
    width: 83.33333%; }

  #stacks_in_81822 .small-11 {
    width: 91.66667%; }

  #stacks_in_81822 .small-12 {
    width: 100%; }

  #stacks_in_81822 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81822 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81822 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81822 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81822 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81822 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81822 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81822 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81822 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81822 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81822 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81822 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81822 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81822 .column.small-centered,
  #stacks_in_81822 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81822 .column.small-uncentered,
  #stacks_in_81822 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81822 .column.small-centered:last-child,
  #stacks_in_81822 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81822 .column.small-uncentered:last-child,
  #stacks_in_81822 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81822 .column.small-uncentered.opposite,
  #stacks_in_81822 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81822 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81822 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81822 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81822 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81822 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81822 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81822 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81822 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81822 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81822 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81822 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81822 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81822 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81822 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81822 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81822 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81822 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81822 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81822 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81822 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81822 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81822 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81822 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81822 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81822 .column,
  #stacks_in_81822 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81822 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81822 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81822 .medium-3 {
    width: 25%; }

  #stacks_in_81822 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81822 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81822 .medium-6 {
    width: 50%; }

  #stacks_in_81822 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81822 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81822 .medium-9 {
    width: 75%; }

  #stacks_in_81822 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81822 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81822 .medium-12 {
    width: 100%; }

  #stacks_in_81822 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81822 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81822 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81822 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81822 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81822 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81822 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81822 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81822 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81822 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81822 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81822 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81822 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81822 .column.medium-centered,
  #stacks_in_81822 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81822 .column.medium-uncentered,
  #stacks_in_81822 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81822 .column.medium-centered:last-child,
  #stacks_in_81822 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81822 .column.medium-uncentered:last-child,
  #stacks_in_81822 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81822 .column.medium-uncentered.opposite,
  #stacks_in_81822 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81822 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81822 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81822 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81822 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81822 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81822 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81822 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81822 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81822 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81822 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81822 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81822 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81822 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81822 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81822 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81822 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81822 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81822 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81822 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81822 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81822 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81822 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81822 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81822 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81822 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81822 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81822 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81822 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81822 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81822 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81822 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81822 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81822 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81822 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81822 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81822 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81822 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81822 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81822 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81822 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81822 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81822 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81822 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81822 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81822 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81822 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81822 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81822 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81822 .column,
  #stacks_in_81822 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81822 .large-1 {
    width: 8.33333%; }

  #stacks_in_81822 .large-2 {
    width: 16.66667%; }

  #stacks_in_81822 .large-3 {
    width: 25%; }

  #stacks_in_81822 .large-4 {
    width: 33.33333%; }

  #stacks_in_81822 .large-5 {
    width: 41.66667%; }

  #stacks_in_81822 .large-6 {
    width: 50%; }

  #stacks_in_81822 .large-7 {
    width: 58.33333%; }

  #stacks_in_81822 .large-8 {
    width: 66.66667%; }

  #stacks_in_81822 .large-9 {
    width: 75%; }

  #stacks_in_81822 .large-10 {
    width: 83.33333%; }

  #stacks_in_81822 .large-11 {
    width: 91.66667%; }

  #stacks_in_81822 .large-12 {
    width: 100%; }

  #stacks_in_81822 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81822 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81822 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81822 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81822 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81822 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81822 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81822 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81822 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81822 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81822 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81822 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81822 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81822 .column.large-centered,
  #stacks_in_81822 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81822 .column.large-uncentered,
  #stacks_in_81822 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81822 .column.large-centered:last-child,
  #stacks_in_81822 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81822 .column.large-uncentered:last-child,
  #stacks_in_81822 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81822 .column.large-uncentered.opposite,
  #stacks_in_81822 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81822 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81822 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81822 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81822 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81822 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81822 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81822 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81822 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81822 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81822 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81822 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81822 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81822 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81822 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81822 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81822 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81822 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81822 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81822 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81822 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81822 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81822 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81822 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81822 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81822 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81822 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81822 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81822 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81822 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81822 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81822 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81822 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81822 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81822 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81822 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81822 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81822 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81822 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81822 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81822 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81822 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81822 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81822 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81823 {
      margin: 11px;      
    }

    #stacks_in_81823 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81823 {
      margin: 11px;      
    }

    #stacks_in_81823 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81823 {
      margin: 11px;      
    }

    #stacks_in_81823 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81828 {
      margin: 8px;      
    }

    #stacks_in_81828 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81828 {
      margin: 48px;      
    }

    #stacks_in_81828 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81828 {
      margin: 8px;      
    }

    #stacks_in_81828 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81828 {
      margin: 8px;      
    }

    #stacks_in_81828 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81828 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81829 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81831 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81806 article,
#stacks_in_81806 aside,
#stacks_in_81806 details,
#stacks_in_81806 figcaption,
#stacks_in_81806 figure,
#stacks_in_81806 footer,
#stacks_in_81806 header,
#stacks_in_81806 hgroup,
#stacks_in_81806 main,
#stacks_in_81806 nav,
#stacks_in_81806 section,
#stacks_in_81806 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81806 audio,
#stacks_in_81806 canvas,
#stacks_in_81806 progress,
#stacks_in_81806 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81806 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81806 [hidden],
#stacks_in_81806 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81806 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81806 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81806 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81806 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81806 code,
#stacks_in_81806 kbd,
#stacks_in_81806 pre,
#stacks_in_81806 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81806 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81806 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81806 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81806 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81806 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81806 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81806 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81806 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81806 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81806 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81806 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81806 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81806 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81806 .left {
  float: left !important; }

#stacks_in_81806 .right {
  float: right !important; }

#stacks_in_81806 .clearfix:before,
#stacks_in_81806 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81806 .clearfix:after {
  clear: both; }

#stacks_in_81806 .hide {
  display: none; }

#stacks_in_81806 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81806 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81806 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81806 select {
  width: 100%; }

#stacks_in_81806 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81806 .row:before,
#stacks_in_81806 .row:after {
  content: " ";
  display: table; }

#stacks_in_81806 .row:after {
  clear: both; }

#stacks_in_81806 .row.collapse > .column,
#stacks_in_81806 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81806 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81806 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81806 .row .row:before,
#stacks_in_81806 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81806 .row .row:after {
  clear: both; }

#stacks_in_81806 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81806 .row .row.collapse:before,
#stacks_in_81806 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81806 .row .row.collapse:after {
  clear: both; }

#stacks_in_81806 .column,
#stacks_in_81806 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81806 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81806 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81806 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81806 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81806 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81806 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81806 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81806 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81806 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81806 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81806 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81806 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81806 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81806 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81806 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81806 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81806 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81806 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81806 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81806 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81806 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81806 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81806 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81806 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81806 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81806 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81806 .column,
  #stacks_in_81806 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81806 .small-1 {
    width: 8.33333%; }

  #stacks_in_81806 .small-2 {
    width: 16.66667%; }

  #stacks_in_81806 .small-3 {
    width: 25%; }

  #stacks_in_81806 .small-4 {
    width: 33.33333%; }

  #stacks_in_81806 .small-5 {
    width: 41.66667%; }

  #stacks_in_81806 .small-6 {
    width: 50%; }

  #stacks_in_81806 .small-7 {
    width: 58.33333%; }

  #stacks_in_81806 .small-8 {
    width: 66.66667%; }

  #stacks_in_81806 .small-9 {
    width: 75%; }

  #stacks_in_81806 .small-10 {
    width: 83.33333%; }

  #stacks_in_81806 .small-11 {
    width: 91.66667%; }

  #stacks_in_81806 .small-12 {
    width: 100%; }

  #stacks_in_81806 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81806 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81806 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81806 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81806 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81806 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81806 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81806 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81806 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81806 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81806 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81806 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81806 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81806 .column.small-centered,
  #stacks_in_81806 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81806 .column.small-uncentered,
  #stacks_in_81806 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81806 .column.small-centered:last-child,
  #stacks_in_81806 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81806 .column.small-uncentered:last-child,
  #stacks_in_81806 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81806 .column.small-uncentered.opposite,
  #stacks_in_81806 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81806 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81806 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81806 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81806 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81806 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81806 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81806 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81806 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81806 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81806 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81806 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81806 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81806 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81806 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81806 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81806 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81806 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81806 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81806 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81806 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81806 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81806 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81806 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81806 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81806 .column,
  #stacks_in_81806 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81806 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81806 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81806 .medium-3 {
    width: 25%; }

  #stacks_in_81806 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81806 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81806 .medium-6 {
    width: 50%; }

  #stacks_in_81806 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81806 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81806 .medium-9 {
    width: 75%; }

  #stacks_in_81806 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81806 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81806 .medium-12 {
    width: 100%; }

  #stacks_in_81806 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81806 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81806 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81806 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81806 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81806 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81806 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81806 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81806 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81806 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81806 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81806 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81806 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81806 .column.medium-centered,
  #stacks_in_81806 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81806 .column.medium-uncentered,
  #stacks_in_81806 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81806 .column.medium-centered:last-child,
  #stacks_in_81806 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81806 .column.medium-uncentered:last-child,
  #stacks_in_81806 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81806 .column.medium-uncentered.opposite,
  #stacks_in_81806 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81806 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81806 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81806 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81806 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81806 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81806 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81806 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81806 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81806 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81806 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81806 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81806 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81806 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81806 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81806 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81806 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81806 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81806 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81806 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81806 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81806 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81806 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81806 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81806 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81806 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81806 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81806 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81806 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81806 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81806 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81806 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81806 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81806 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81806 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81806 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81806 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81806 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81806 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81806 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81806 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81806 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81806 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81806 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81806 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81806 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81806 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81806 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81806 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81806 .column,
  #stacks_in_81806 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81806 .large-1 {
    width: 8.33333%; }

  #stacks_in_81806 .large-2 {
    width: 16.66667%; }

  #stacks_in_81806 .large-3 {
    width: 25%; }

  #stacks_in_81806 .large-4 {
    width: 33.33333%; }

  #stacks_in_81806 .large-5 {
    width: 41.66667%; }

  #stacks_in_81806 .large-6 {
    width: 50%; }

  #stacks_in_81806 .large-7 {
    width: 58.33333%; }

  #stacks_in_81806 .large-8 {
    width: 66.66667%; }

  #stacks_in_81806 .large-9 {
    width: 75%; }

  #stacks_in_81806 .large-10 {
    width: 83.33333%; }

  #stacks_in_81806 .large-11 {
    width: 91.66667%; }

  #stacks_in_81806 .large-12 {
    width: 100%; }

  #stacks_in_81806 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81806 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81806 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81806 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81806 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81806 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81806 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81806 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81806 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81806 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81806 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81806 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81806 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81806 .column.large-centered,
  #stacks_in_81806 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81806 .column.large-uncentered,
  #stacks_in_81806 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81806 .column.large-centered:last-child,
  #stacks_in_81806 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81806 .column.large-uncentered:last-child,
  #stacks_in_81806 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81806 .column.large-uncentered.opposite,
  #stacks_in_81806 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81806 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81806 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81806 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81806 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81806 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81806 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81806 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81806 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81806 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81806 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81806 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81806 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81806 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81806 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81806 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81806 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81806 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81806 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81806 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81806 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81806 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81806 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81806 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81806 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81806 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81806 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81806 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81806 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81806 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81806 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81806 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81806 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81806 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81806 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81806 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81806 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81806 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81806 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81806 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81806 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81806 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81806 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81806 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81807 {
      margin: 11px;      
    }

    #stacks_in_81807 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81807 {
      margin: 11px;      
    }

    #stacks_in_81807 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81807 {
      margin: 11px;      
    }

    #stacks_in_81807 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81812 {
      margin: 8px;      
    }

    #stacks_in_81812 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81812 {
      margin: 48px;      
    }

    #stacks_in_81812 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81812 {
      margin: 8px;      
    }

    #stacks_in_81812 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81812 {
      margin: 8px;      
    }

    #stacks_in_81812 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81812 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81813 {
	background-color: rgba(179, 203, 233, 1.00);
}

#stacks_in_81815 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81793 article,
#stacks_in_81793 aside,
#stacks_in_81793 details,
#stacks_in_81793 figcaption,
#stacks_in_81793 figure,
#stacks_in_81793 footer,
#stacks_in_81793 header,
#stacks_in_81793 hgroup,
#stacks_in_81793 main,
#stacks_in_81793 nav,
#stacks_in_81793 section,
#stacks_in_81793 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81793 audio,
#stacks_in_81793 canvas,
#stacks_in_81793 progress,
#stacks_in_81793 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81793 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81793 [hidden],
#stacks_in_81793 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81793 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81793 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81793 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81793 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81793 code,
#stacks_in_81793 kbd,
#stacks_in_81793 pre,
#stacks_in_81793 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81793 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81793 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81793 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81793 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81793 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81793 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81793 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81793 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81793 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81793 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81793 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81793 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81793 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81793 .left {
  float: left !important; }

#stacks_in_81793 .right {
  float: right !important; }

#stacks_in_81793 .clearfix:before,
#stacks_in_81793 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81793 .clearfix:after {
  clear: both; }

#stacks_in_81793 .hide {
  display: none; }

#stacks_in_81793 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81793 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81793 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81793 select {
  width: 100%; }

#stacks_in_81793 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81793 .row:before,
#stacks_in_81793 .row:after {
  content: " ";
  display: table; }

#stacks_in_81793 .row:after {
  clear: both; }

#stacks_in_81793 .row.collapse > .column,
#stacks_in_81793 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81793 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81793 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81793 .row .row:before,
#stacks_in_81793 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81793 .row .row:after {
  clear: both; }

#stacks_in_81793 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81793 .row .row.collapse:before,
#stacks_in_81793 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81793 .row .row.collapse:after {
  clear: both; }

#stacks_in_81793 .column,
#stacks_in_81793 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81793 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81793 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81793 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81793 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81793 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81793 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81793 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81793 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81793 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81793 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81793 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81793 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81793 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81793 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81793 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81793 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81793 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81793 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81793 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81793 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81793 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81793 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81793 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81793 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81793 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81793 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81793 .column,
  #stacks_in_81793 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81793 .small-1 {
    width: 8.33333%; }

  #stacks_in_81793 .small-2 {
    width: 16.66667%; }

  #stacks_in_81793 .small-3 {
    width: 25%; }

  #stacks_in_81793 .small-4 {
    width: 33.33333%; }

  #stacks_in_81793 .small-5 {
    width: 41.66667%; }

  #stacks_in_81793 .small-6 {
    width: 50%; }

  #stacks_in_81793 .small-7 {
    width: 58.33333%; }

  #stacks_in_81793 .small-8 {
    width: 66.66667%; }

  #stacks_in_81793 .small-9 {
    width: 75%; }

  #stacks_in_81793 .small-10 {
    width: 83.33333%; }

  #stacks_in_81793 .small-11 {
    width: 91.66667%; }

  #stacks_in_81793 .small-12 {
    width: 100%; }

  #stacks_in_81793 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81793 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81793 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81793 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81793 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81793 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81793 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81793 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81793 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81793 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81793 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81793 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81793 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81793 .column.small-centered,
  #stacks_in_81793 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81793 .column.small-uncentered,
  #stacks_in_81793 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81793 .column.small-centered:last-child,
  #stacks_in_81793 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81793 .column.small-uncentered:last-child,
  #stacks_in_81793 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81793 .column.small-uncentered.opposite,
  #stacks_in_81793 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81793 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81793 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81793 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81793 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81793 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81793 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81793 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81793 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81793 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81793 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81793 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81793 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81793 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81793 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81793 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81793 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81793 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81793 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81793 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81793 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81793 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81793 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81793 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81793 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81793 .column,
  #stacks_in_81793 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81793 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81793 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81793 .medium-3 {
    width: 25%; }

  #stacks_in_81793 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81793 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81793 .medium-6 {
    width: 50%; }

  #stacks_in_81793 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81793 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81793 .medium-9 {
    width: 75%; }

  #stacks_in_81793 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81793 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81793 .medium-12 {
    width: 100%; }

  #stacks_in_81793 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81793 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81793 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81793 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81793 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81793 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81793 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81793 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81793 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81793 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81793 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81793 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81793 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81793 .column.medium-centered,
  #stacks_in_81793 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81793 .column.medium-uncentered,
  #stacks_in_81793 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81793 .column.medium-centered:last-child,
  #stacks_in_81793 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81793 .column.medium-uncentered:last-child,
  #stacks_in_81793 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81793 .column.medium-uncentered.opposite,
  #stacks_in_81793 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81793 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81793 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81793 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81793 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81793 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81793 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81793 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81793 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81793 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81793 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81793 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81793 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81793 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81793 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81793 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81793 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81793 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81793 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81793 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81793 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81793 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81793 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81793 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81793 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81793 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81793 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81793 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81793 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81793 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81793 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81793 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81793 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81793 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81793 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81793 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81793 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81793 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81793 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81793 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81793 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81793 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81793 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81793 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81793 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81793 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81793 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81793 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81793 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81793 .column,
  #stacks_in_81793 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81793 .large-1 {
    width: 8.33333%; }

  #stacks_in_81793 .large-2 {
    width: 16.66667%; }

  #stacks_in_81793 .large-3 {
    width: 25%; }

  #stacks_in_81793 .large-4 {
    width: 33.33333%; }

  #stacks_in_81793 .large-5 {
    width: 41.66667%; }

  #stacks_in_81793 .large-6 {
    width: 50%; }

  #stacks_in_81793 .large-7 {
    width: 58.33333%; }

  #stacks_in_81793 .large-8 {
    width: 66.66667%; }

  #stacks_in_81793 .large-9 {
    width: 75%; }

  #stacks_in_81793 .large-10 {
    width: 83.33333%; }

  #stacks_in_81793 .large-11 {
    width: 91.66667%; }

  #stacks_in_81793 .large-12 {
    width: 100%; }

  #stacks_in_81793 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81793 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81793 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81793 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81793 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81793 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81793 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81793 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81793 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81793 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81793 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81793 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81793 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81793 .column.large-centered,
  #stacks_in_81793 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81793 .column.large-uncentered,
  #stacks_in_81793 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81793 .column.large-centered:last-child,
  #stacks_in_81793 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81793 .column.large-uncentered:last-child,
  #stacks_in_81793 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81793 .column.large-uncentered.opposite,
  #stacks_in_81793 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81793 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81793 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81793 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81793 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81793 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81793 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81793 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81793 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81793 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81793 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81793 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81793 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81793 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81793 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81793 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81793 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81793 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81793 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81793 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81793 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81793 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81793 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81793 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81793 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81793 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81793 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81793 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81793 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81793 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81793 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81793 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81793 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81793 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81793 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81793 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81793 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81793 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81793 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81793 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81793 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81793 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81793 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81793 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81794 {
      margin: 11px;      
    }

    #stacks_in_81794 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81794 {
      margin: 11px;      
    }

    #stacks_in_81794 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81794 {
      margin: 11px;      
    }

    #stacks_in_81794 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81799 {
      margin: 8px;      
    }

    #stacks_in_81799 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81799 {
      margin: 48px;      
    }

    #stacks_in_81799 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81799 {
      margin: 8px;      
    }

    #stacks_in_81799 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81799 {
      margin: 8px;      
    }

    #stacks_in_81799 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81799 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81802 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81780 article,
#stacks_in_81780 aside,
#stacks_in_81780 details,
#stacks_in_81780 figcaption,
#stacks_in_81780 figure,
#stacks_in_81780 footer,
#stacks_in_81780 header,
#stacks_in_81780 hgroup,
#stacks_in_81780 main,
#stacks_in_81780 nav,
#stacks_in_81780 section,
#stacks_in_81780 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81780 audio,
#stacks_in_81780 canvas,
#stacks_in_81780 progress,
#stacks_in_81780 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81780 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81780 [hidden],
#stacks_in_81780 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81780 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81780 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81780 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81780 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81780 code,
#stacks_in_81780 kbd,
#stacks_in_81780 pre,
#stacks_in_81780 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81780 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81780 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81780 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81780 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81780 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81780 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81780 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81780 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81780 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81780 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81780 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81780 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81780 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81780 .left {
  float: left !important; }

#stacks_in_81780 .right {
  float: right !important; }

#stacks_in_81780 .clearfix:before,
#stacks_in_81780 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81780 .clearfix:after {
  clear: both; }

#stacks_in_81780 .hide {
  display: none; }

#stacks_in_81780 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81780 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81780 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81780 select {
  width: 100%; }

#stacks_in_81780 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81780 .row:before,
#stacks_in_81780 .row:after {
  content: " ";
  display: table; }

#stacks_in_81780 .row:after {
  clear: both; }

#stacks_in_81780 .row.collapse > .column,
#stacks_in_81780 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81780 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81780 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81780 .row .row:before,
#stacks_in_81780 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81780 .row .row:after {
  clear: both; }

#stacks_in_81780 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81780 .row .row.collapse:before,
#stacks_in_81780 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81780 .row .row.collapse:after {
  clear: both; }

#stacks_in_81780 .column,
#stacks_in_81780 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81780 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81780 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81780 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81780 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81780 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81780 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81780 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81780 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81780 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81780 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81780 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81780 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81780 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81780 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81780 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81780 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81780 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81780 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81780 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81780 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81780 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81780 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81780 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81780 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81780 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81780 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81780 .column,
  #stacks_in_81780 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81780 .small-1 {
    width: 8.33333%; }

  #stacks_in_81780 .small-2 {
    width: 16.66667%; }

  #stacks_in_81780 .small-3 {
    width: 25%; }

  #stacks_in_81780 .small-4 {
    width: 33.33333%; }

  #stacks_in_81780 .small-5 {
    width: 41.66667%; }

  #stacks_in_81780 .small-6 {
    width: 50%; }

  #stacks_in_81780 .small-7 {
    width: 58.33333%; }

  #stacks_in_81780 .small-8 {
    width: 66.66667%; }

  #stacks_in_81780 .small-9 {
    width: 75%; }

  #stacks_in_81780 .small-10 {
    width: 83.33333%; }

  #stacks_in_81780 .small-11 {
    width: 91.66667%; }

  #stacks_in_81780 .small-12 {
    width: 100%; }

  #stacks_in_81780 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81780 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81780 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81780 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81780 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81780 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81780 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81780 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81780 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81780 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81780 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81780 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81780 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81780 .column.small-centered,
  #stacks_in_81780 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81780 .column.small-uncentered,
  #stacks_in_81780 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81780 .column.small-centered:last-child,
  #stacks_in_81780 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81780 .column.small-uncentered:last-child,
  #stacks_in_81780 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81780 .column.small-uncentered.opposite,
  #stacks_in_81780 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81780 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81780 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81780 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81780 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81780 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81780 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81780 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81780 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81780 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81780 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81780 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81780 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81780 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81780 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81780 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81780 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81780 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81780 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81780 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81780 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81780 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81780 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81780 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81780 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81780 .column,
  #stacks_in_81780 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81780 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81780 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81780 .medium-3 {
    width: 25%; }

  #stacks_in_81780 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81780 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81780 .medium-6 {
    width: 50%; }

  #stacks_in_81780 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81780 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81780 .medium-9 {
    width: 75%; }

  #stacks_in_81780 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81780 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81780 .medium-12 {
    width: 100%; }

  #stacks_in_81780 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81780 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81780 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81780 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81780 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81780 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81780 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81780 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81780 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81780 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81780 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81780 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81780 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81780 .column.medium-centered,
  #stacks_in_81780 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81780 .column.medium-uncentered,
  #stacks_in_81780 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81780 .column.medium-centered:last-child,
  #stacks_in_81780 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81780 .column.medium-uncentered:last-child,
  #stacks_in_81780 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81780 .column.medium-uncentered.opposite,
  #stacks_in_81780 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81780 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81780 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81780 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81780 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81780 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81780 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81780 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81780 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81780 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81780 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81780 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81780 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81780 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81780 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81780 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81780 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81780 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81780 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81780 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81780 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81780 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81780 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81780 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81780 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81780 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81780 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81780 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81780 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81780 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81780 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81780 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81780 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81780 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81780 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81780 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81780 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81780 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81780 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81780 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81780 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81780 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81780 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81780 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81780 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81780 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81780 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81780 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81780 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81780 .column,
  #stacks_in_81780 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81780 .large-1 {
    width: 8.33333%; }

  #stacks_in_81780 .large-2 {
    width: 16.66667%; }

  #stacks_in_81780 .large-3 {
    width: 25%; }

  #stacks_in_81780 .large-4 {
    width: 33.33333%; }

  #stacks_in_81780 .large-5 {
    width: 41.66667%; }

  #stacks_in_81780 .large-6 {
    width: 50%; }

  #stacks_in_81780 .large-7 {
    width: 58.33333%; }

  #stacks_in_81780 .large-8 {
    width: 66.66667%; }

  #stacks_in_81780 .large-9 {
    width: 75%; }

  #stacks_in_81780 .large-10 {
    width: 83.33333%; }

  #stacks_in_81780 .large-11 {
    width: 91.66667%; }

  #stacks_in_81780 .large-12 {
    width: 100%; }

  #stacks_in_81780 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81780 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81780 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81780 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81780 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81780 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81780 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81780 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81780 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81780 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81780 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81780 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81780 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81780 .column.large-centered,
  #stacks_in_81780 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81780 .column.large-uncentered,
  #stacks_in_81780 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81780 .column.large-centered:last-child,
  #stacks_in_81780 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81780 .column.large-uncentered:last-child,
  #stacks_in_81780 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81780 .column.large-uncentered.opposite,
  #stacks_in_81780 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81780 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81780 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81780 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81780 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81780 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81780 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81780 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81780 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81780 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81780 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81780 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81780 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81780 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81780 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81780 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81780 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81780 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81780 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81780 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81780 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81780 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81780 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81780 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81780 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81780 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81780 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81780 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81780 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81780 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81780 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81780 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81780 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81780 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81780 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81780 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81780 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81780 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81780 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81780 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81780 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81780 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81780 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81780 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81781 {
      margin: 11px;      
    }

    #stacks_in_81781 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81781 {
      margin: 11px;      
    }

    #stacks_in_81781 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81781 {
      margin: 11px;      
    }

    #stacks_in_81781 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81786 {
      margin: 8px;      
    }

    #stacks_in_81786 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81786 {
      margin: 48px;      
    }

    #stacks_in_81786 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81786 {
      margin: 8px;      
    }

    #stacks_in_81786 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81786 {
      margin: 8px;      
    }

    #stacks_in_81786 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81786 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81789 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81767 article,
#stacks_in_81767 aside,
#stacks_in_81767 details,
#stacks_in_81767 figcaption,
#stacks_in_81767 figure,
#stacks_in_81767 footer,
#stacks_in_81767 header,
#stacks_in_81767 hgroup,
#stacks_in_81767 main,
#stacks_in_81767 nav,
#stacks_in_81767 section,
#stacks_in_81767 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81767 audio,
#stacks_in_81767 canvas,
#stacks_in_81767 progress,
#stacks_in_81767 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81767 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81767 [hidden],
#stacks_in_81767 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81767 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81767 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81767 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81767 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81767 code,
#stacks_in_81767 kbd,
#stacks_in_81767 pre,
#stacks_in_81767 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81767 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81767 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81767 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81767 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81767 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81767 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81767 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81767 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81767 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81767 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81767 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81767 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81767 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81767 .left {
  float: left !important; }

#stacks_in_81767 .right {
  float: right !important; }

#stacks_in_81767 .clearfix:before,
#stacks_in_81767 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81767 .clearfix:after {
  clear: both; }

#stacks_in_81767 .hide {
  display: none; }

#stacks_in_81767 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81767 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81767 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81767 select {
  width: 100%; }

#stacks_in_81767 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81767 .row:before,
#stacks_in_81767 .row:after {
  content: " ";
  display: table; }

#stacks_in_81767 .row:after {
  clear: both; }

#stacks_in_81767 .row.collapse > .column,
#stacks_in_81767 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81767 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81767 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81767 .row .row:before,
#stacks_in_81767 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81767 .row .row:after {
  clear: both; }

#stacks_in_81767 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81767 .row .row.collapse:before,
#stacks_in_81767 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81767 .row .row.collapse:after {
  clear: both; }

#stacks_in_81767 .column,
#stacks_in_81767 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81767 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81767 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81767 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81767 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81767 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81767 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81767 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81767 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81767 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81767 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81767 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81767 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81767 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81767 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81767 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81767 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81767 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81767 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81767 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81767 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81767 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81767 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81767 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81767 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81767 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81767 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81767 .column,
  #stacks_in_81767 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81767 .small-1 {
    width: 8.33333%; }

  #stacks_in_81767 .small-2 {
    width: 16.66667%; }

  #stacks_in_81767 .small-3 {
    width: 25%; }

  #stacks_in_81767 .small-4 {
    width: 33.33333%; }

  #stacks_in_81767 .small-5 {
    width: 41.66667%; }

  #stacks_in_81767 .small-6 {
    width: 50%; }

  #stacks_in_81767 .small-7 {
    width: 58.33333%; }

  #stacks_in_81767 .small-8 {
    width: 66.66667%; }

  #stacks_in_81767 .small-9 {
    width: 75%; }

  #stacks_in_81767 .small-10 {
    width: 83.33333%; }

  #stacks_in_81767 .small-11 {
    width: 91.66667%; }

  #stacks_in_81767 .small-12 {
    width: 100%; }

  #stacks_in_81767 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81767 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81767 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81767 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81767 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81767 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81767 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81767 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81767 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81767 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81767 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81767 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81767 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81767 .column.small-centered,
  #stacks_in_81767 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81767 .column.small-uncentered,
  #stacks_in_81767 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81767 .column.small-centered:last-child,
  #stacks_in_81767 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81767 .column.small-uncentered:last-child,
  #stacks_in_81767 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81767 .column.small-uncentered.opposite,
  #stacks_in_81767 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81767 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81767 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81767 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81767 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81767 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81767 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81767 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81767 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81767 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81767 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81767 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81767 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81767 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81767 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81767 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81767 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81767 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81767 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81767 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81767 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81767 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81767 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81767 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81767 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81767 .column,
  #stacks_in_81767 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81767 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81767 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81767 .medium-3 {
    width: 25%; }

  #stacks_in_81767 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81767 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81767 .medium-6 {
    width: 50%; }

  #stacks_in_81767 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81767 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81767 .medium-9 {
    width: 75%; }

  #stacks_in_81767 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81767 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81767 .medium-12 {
    width: 100%; }

  #stacks_in_81767 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81767 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81767 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81767 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81767 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81767 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81767 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81767 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81767 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81767 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81767 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81767 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81767 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81767 .column.medium-centered,
  #stacks_in_81767 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81767 .column.medium-uncentered,
  #stacks_in_81767 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81767 .column.medium-centered:last-child,
  #stacks_in_81767 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81767 .column.medium-uncentered:last-child,
  #stacks_in_81767 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81767 .column.medium-uncentered.opposite,
  #stacks_in_81767 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81767 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81767 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81767 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81767 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81767 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81767 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81767 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81767 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81767 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81767 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81767 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81767 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81767 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81767 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81767 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81767 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81767 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81767 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81767 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81767 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81767 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81767 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81767 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81767 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81767 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81767 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81767 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81767 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81767 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81767 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81767 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81767 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81767 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81767 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81767 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81767 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81767 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81767 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81767 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81767 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81767 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81767 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81767 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81767 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81767 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81767 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81767 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81767 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81767 .column,
  #stacks_in_81767 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81767 .large-1 {
    width: 8.33333%; }

  #stacks_in_81767 .large-2 {
    width: 16.66667%; }

  #stacks_in_81767 .large-3 {
    width: 25%; }

  #stacks_in_81767 .large-4 {
    width: 33.33333%; }

  #stacks_in_81767 .large-5 {
    width: 41.66667%; }

  #stacks_in_81767 .large-6 {
    width: 50%; }

  #stacks_in_81767 .large-7 {
    width: 58.33333%; }

  #stacks_in_81767 .large-8 {
    width: 66.66667%; }

  #stacks_in_81767 .large-9 {
    width: 75%; }

  #stacks_in_81767 .large-10 {
    width: 83.33333%; }

  #stacks_in_81767 .large-11 {
    width: 91.66667%; }

  #stacks_in_81767 .large-12 {
    width: 100%; }

  #stacks_in_81767 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81767 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81767 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81767 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81767 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81767 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81767 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81767 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81767 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81767 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81767 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81767 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81767 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81767 .column.large-centered,
  #stacks_in_81767 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81767 .column.large-uncentered,
  #stacks_in_81767 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81767 .column.large-centered:last-child,
  #stacks_in_81767 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81767 .column.large-uncentered:last-child,
  #stacks_in_81767 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81767 .column.large-uncentered.opposite,
  #stacks_in_81767 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81767 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81767 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81767 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81767 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81767 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81767 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81767 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81767 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81767 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81767 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81767 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81767 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81767 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81767 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81767 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81767 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81767 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81767 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81767 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81767 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81767 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81767 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81767 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81767 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81767 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81767 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81767 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81767 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81767 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81767 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81767 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81767 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81767 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81767 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81767 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81767 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81767 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81767 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81767 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81767 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81767 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81767 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81767 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81768 {
      margin: 11px;      
    }

    #stacks_in_81768 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81768 {
      margin: 11px;      
    }

    #stacks_in_81768 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81768 {
      margin: 11px;      
    }

    #stacks_in_81768 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81773 {
      margin: 8px;      
    }

    #stacks_in_81773 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81773 {
      margin: 48px;      
    }

    #stacks_in_81773 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81773 {
      margin: 8px;      
    }

    #stacks_in_81773 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81773 {
      margin: 8px;      
    }

    #stacks_in_81773 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81773 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81776 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81754 article,
#stacks_in_81754 aside,
#stacks_in_81754 details,
#stacks_in_81754 figcaption,
#stacks_in_81754 figure,
#stacks_in_81754 footer,
#stacks_in_81754 header,
#stacks_in_81754 hgroup,
#stacks_in_81754 main,
#stacks_in_81754 nav,
#stacks_in_81754 section,
#stacks_in_81754 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81754 audio,
#stacks_in_81754 canvas,
#stacks_in_81754 progress,
#stacks_in_81754 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81754 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81754 [hidden],
#stacks_in_81754 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81754 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81754 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81754 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81754 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81754 code,
#stacks_in_81754 kbd,
#stacks_in_81754 pre,
#stacks_in_81754 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81754 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81754 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81754 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81754 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81754 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81754 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81754 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81754 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81754 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81754 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81754 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81754 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81754 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81754 .left {
  float: left !important; }

#stacks_in_81754 .right {
  float: right !important; }

#stacks_in_81754 .clearfix:before,
#stacks_in_81754 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81754 .clearfix:after {
  clear: both; }

#stacks_in_81754 .hide {
  display: none; }

#stacks_in_81754 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81754 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81754 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81754 select {
  width: 100%; }

#stacks_in_81754 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81754 .row:before,
#stacks_in_81754 .row:after {
  content: " ";
  display: table; }

#stacks_in_81754 .row:after {
  clear: both; }

#stacks_in_81754 .row.collapse > .column,
#stacks_in_81754 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81754 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81754 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81754 .row .row:before,
#stacks_in_81754 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81754 .row .row:after {
  clear: both; }

#stacks_in_81754 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81754 .row .row.collapse:before,
#stacks_in_81754 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81754 .row .row.collapse:after {
  clear: both; }

#stacks_in_81754 .column,
#stacks_in_81754 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81754 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81754 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81754 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81754 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81754 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81754 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81754 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81754 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81754 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81754 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81754 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81754 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81754 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81754 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81754 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81754 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81754 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81754 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81754 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81754 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81754 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81754 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81754 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81754 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81754 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81754 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81754 .column,
  #stacks_in_81754 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81754 .small-1 {
    width: 8.33333%; }

  #stacks_in_81754 .small-2 {
    width: 16.66667%; }

  #stacks_in_81754 .small-3 {
    width: 25%; }

  #stacks_in_81754 .small-4 {
    width: 33.33333%; }

  #stacks_in_81754 .small-5 {
    width: 41.66667%; }

  #stacks_in_81754 .small-6 {
    width: 50%; }

  #stacks_in_81754 .small-7 {
    width: 58.33333%; }

  #stacks_in_81754 .small-8 {
    width: 66.66667%; }

  #stacks_in_81754 .small-9 {
    width: 75%; }

  #stacks_in_81754 .small-10 {
    width: 83.33333%; }

  #stacks_in_81754 .small-11 {
    width: 91.66667%; }

  #stacks_in_81754 .small-12 {
    width: 100%; }

  #stacks_in_81754 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81754 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81754 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81754 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81754 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81754 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81754 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81754 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81754 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81754 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81754 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81754 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81754 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81754 .column.small-centered,
  #stacks_in_81754 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81754 .column.small-uncentered,
  #stacks_in_81754 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81754 .column.small-centered:last-child,
  #stacks_in_81754 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81754 .column.small-uncentered:last-child,
  #stacks_in_81754 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81754 .column.small-uncentered.opposite,
  #stacks_in_81754 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81754 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81754 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81754 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81754 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81754 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81754 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81754 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81754 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81754 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81754 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81754 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81754 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81754 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81754 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81754 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81754 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81754 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81754 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81754 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81754 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81754 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81754 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81754 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81754 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81754 .column,
  #stacks_in_81754 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81754 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81754 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81754 .medium-3 {
    width: 25%; }

  #stacks_in_81754 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81754 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81754 .medium-6 {
    width: 50%; }

  #stacks_in_81754 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81754 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81754 .medium-9 {
    width: 75%; }

  #stacks_in_81754 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81754 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81754 .medium-12 {
    width: 100%; }

  #stacks_in_81754 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81754 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81754 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81754 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81754 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81754 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81754 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81754 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81754 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81754 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81754 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81754 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81754 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81754 .column.medium-centered,
  #stacks_in_81754 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81754 .column.medium-uncentered,
  #stacks_in_81754 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81754 .column.medium-centered:last-child,
  #stacks_in_81754 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81754 .column.medium-uncentered:last-child,
  #stacks_in_81754 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81754 .column.medium-uncentered.opposite,
  #stacks_in_81754 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81754 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81754 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81754 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81754 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81754 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81754 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81754 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81754 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81754 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81754 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81754 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81754 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81754 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81754 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81754 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81754 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81754 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81754 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81754 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81754 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81754 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81754 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81754 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81754 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81754 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81754 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81754 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81754 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81754 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81754 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81754 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81754 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81754 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81754 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81754 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81754 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81754 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81754 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81754 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81754 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81754 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81754 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81754 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81754 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81754 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81754 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81754 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81754 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81754 .column,
  #stacks_in_81754 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81754 .large-1 {
    width: 8.33333%; }

  #stacks_in_81754 .large-2 {
    width: 16.66667%; }

  #stacks_in_81754 .large-3 {
    width: 25%; }

  #stacks_in_81754 .large-4 {
    width: 33.33333%; }

  #stacks_in_81754 .large-5 {
    width: 41.66667%; }

  #stacks_in_81754 .large-6 {
    width: 50%; }

  #stacks_in_81754 .large-7 {
    width: 58.33333%; }

  #stacks_in_81754 .large-8 {
    width: 66.66667%; }

  #stacks_in_81754 .large-9 {
    width: 75%; }

  #stacks_in_81754 .large-10 {
    width: 83.33333%; }

  #stacks_in_81754 .large-11 {
    width: 91.66667%; }

  #stacks_in_81754 .large-12 {
    width: 100%; }

  #stacks_in_81754 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81754 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81754 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81754 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81754 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81754 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81754 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81754 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81754 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81754 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81754 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81754 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81754 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81754 .column.large-centered,
  #stacks_in_81754 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81754 .column.large-uncentered,
  #stacks_in_81754 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81754 .column.large-centered:last-child,
  #stacks_in_81754 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81754 .column.large-uncentered:last-child,
  #stacks_in_81754 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81754 .column.large-uncentered.opposite,
  #stacks_in_81754 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81754 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81754 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81754 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81754 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81754 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81754 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81754 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81754 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81754 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81754 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81754 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81754 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81754 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81754 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81754 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81754 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81754 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81754 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81754 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81754 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81754 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81754 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81754 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81754 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81754 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81754 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81754 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81754 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81754 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81754 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81754 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81754 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81754 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81754 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81754 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81754 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81754 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81754 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81754 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81754 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81754 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81754 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81754 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81755 {
      margin: 11px;      
    }

    #stacks_in_81755 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81755 {
      margin: 11px;      
    }

    #stacks_in_81755 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81755 {
      margin: 11px;      
    }

    #stacks_in_81755 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81760 {
      margin: 8px;      
    }

    #stacks_in_81760 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81760 {
      margin: 48px;      
    }

    #stacks_in_81760 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81760 {
      margin: 8px;      
    }

    #stacks_in_81760 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81760 {
      margin: 8px;      
    }

    #stacks_in_81760 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81760 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81763 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81741 article,
#stacks_in_81741 aside,
#stacks_in_81741 details,
#stacks_in_81741 figcaption,
#stacks_in_81741 figure,
#stacks_in_81741 footer,
#stacks_in_81741 header,
#stacks_in_81741 hgroup,
#stacks_in_81741 main,
#stacks_in_81741 nav,
#stacks_in_81741 section,
#stacks_in_81741 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81741 audio,
#stacks_in_81741 canvas,
#stacks_in_81741 progress,
#stacks_in_81741 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81741 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81741 [hidden],
#stacks_in_81741 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81741 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81741 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81741 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81741 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81741 code,
#stacks_in_81741 kbd,
#stacks_in_81741 pre,
#stacks_in_81741 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81741 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81741 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81741 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81741 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81741 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81741 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81741 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81741 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81741 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81741 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81741 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81741 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81741 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81741 .left {
  float: left !important; }

#stacks_in_81741 .right {
  float: right !important; }

#stacks_in_81741 .clearfix:before,
#stacks_in_81741 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81741 .clearfix:after {
  clear: both; }

#stacks_in_81741 .hide {
  display: none; }

#stacks_in_81741 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81741 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81741 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81741 select {
  width: 100%; }

#stacks_in_81741 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81741 .row:before,
#stacks_in_81741 .row:after {
  content: " ";
  display: table; }

#stacks_in_81741 .row:after {
  clear: both; }

#stacks_in_81741 .row.collapse > .column,
#stacks_in_81741 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81741 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81741 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81741 .row .row:before,
#stacks_in_81741 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81741 .row .row:after {
  clear: both; }

#stacks_in_81741 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81741 .row .row.collapse:before,
#stacks_in_81741 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81741 .row .row.collapse:after {
  clear: both; }

#stacks_in_81741 .column,
#stacks_in_81741 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81741 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81741 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81741 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81741 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81741 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81741 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81741 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81741 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81741 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81741 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81741 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81741 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81741 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81741 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81741 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81741 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81741 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81741 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81741 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81741 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81741 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81741 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81741 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81741 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81741 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81741 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81741 .column,
  #stacks_in_81741 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81741 .small-1 {
    width: 8.33333%; }

  #stacks_in_81741 .small-2 {
    width: 16.66667%; }

  #stacks_in_81741 .small-3 {
    width: 25%; }

  #stacks_in_81741 .small-4 {
    width: 33.33333%; }

  #stacks_in_81741 .small-5 {
    width: 41.66667%; }

  #stacks_in_81741 .small-6 {
    width: 50%; }

  #stacks_in_81741 .small-7 {
    width: 58.33333%; }

  #stacks_in_81741 .small-8 {
    width: 66.66667%; }

  #stacks_in_81741 .small-9 {
    width: 75%; }

  #stacks_in_81741 .small-10 {
    width: 83.33333%; }

  #stacks_in_81741 .small-11 {
    width: 91.66667%; }

  #stacks_in_81741 .small-12 {
    width: 100%; }

  #stacks_in_81741 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81741 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81741 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81741 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81741 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81741 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81741 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81741 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81741 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81741 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81741 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81741 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81741 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81741 .column.small-centered,
  #stacks_in_81741 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81741 .column.small-uncentered,
  #stacks_in_81741 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81741 .column.small-centered:last-child,
  #stacks_in_81741 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81741 .column.small-uncentered:last-child,
  #stacks_in_81741 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81741 .column.small-uncentered.opposite,
  #stacks_in_81741 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81741 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81741 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81741 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81741 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81741 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81741 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81741 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81741 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81741 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81741 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81741 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81741 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81741 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81741 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81741 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81741 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81741 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81741 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81741 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81741 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81741 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81741 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81741 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81741 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81741 .column,
  #stacks_in_81741 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81741 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81741 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81741 .medium-3 {
    width: 25%; }

  #stacks_in_81741 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81741 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81741 .medium-6 {
    width: 50%; }

  #stacks_in_81741 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81741 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81741 .medium-9 {
    width: 75%; }

  #stacks_in_81741 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81741 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81741 .medium-12 {
    width: 100%; }

  #stacks_in_81741 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81741 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81741 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81741 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81741 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81741 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81741 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81741 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81741 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81741 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81741 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81741 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81741 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81741 .column.medium-centered,
  #stacks_in_81741 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81741 .column.medium-uncentered,
  #stacks_in_81741 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81741 .column.medium-centered:last-child,
  #stacks_in_81741 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81741 .column.medium-uncentered:last-child,
  #stacks_in_81741 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81741 .column.medium-uncentered.opposite,
  #stacks_in_81741 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81741 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81741 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81741 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81741 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81741 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81741 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81741 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81741 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81741 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81741 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81741 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81741 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81741 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81741 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81741 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81741 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81741 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81741 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81741 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81741 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81741 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81741 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81741 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81741 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81741 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81741 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81741 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81741 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81741 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81741 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81741 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81741 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81741 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81741 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81741 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81741 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81741 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81741 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81741 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81741 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81741 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81741 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81741 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81741 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81741 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81741 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81741 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81741 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81741 .column,
  #stacks_in_81741 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81741 .large-1 {
    width: 8.33333%; }

  #stacks_in_81741 .large-2 {
    width: 16.66667%; }

  #stacks_in_81741 .large-3 {
    width: 25%; }

  #stacks_in_81741 .large-4 {
    width: 33.33333%; }

  #stacks_in_81741 .large-5 {
    width: 41.66667%; }

  #stacks_in_81741 .large-6 {
    width: 50%; }

  #stacks_in_81741 .large-7 {
    width: 58.33333%; }

  #stacks_in_81741 .large-8 {
    width: 66.66667%; }

  #stacks_in_81741 .large-9 {
    width: 75%; }

  #stacks_in_81741 .large-10 {
    width: 83.33333%; }

  #stacks_in_81741 .large-11 {
    width: 91.66667%; }

  #stacks_in_81741 .large-12 {
    width: 100%; }

  #stacks_in_81741 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81741 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81741 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81741 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81741 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81741 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81741 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81741 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81741 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81741 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81741 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81741 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81741 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81741 .column.large-centered,
  #stacks_in_81741 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81741 .column.large-uncentered,
  #stacks_in_81741 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81741 .column.large-centered:last-child,
  #stacks_in_81741 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81741 .column.large-uncentered:last-child,
  #stacks_in_81741 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81741 .column.large-uncentered.opposite,
  #stacks_in_81741 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81741 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81741 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81741 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81741 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81741 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81741 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81741 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81741 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81741 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81741 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81741 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81741 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81741 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81741 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81741 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81741 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81741 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81741 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81741 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81741 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81741 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81741 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81741 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81741 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81741 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81741 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81741 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81741 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81741 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81741 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81741 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81741 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81741 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81741 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81741 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81741 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81741 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81741 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81741 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81741 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81741 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81741 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81741 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81742 {
      margin: 11px;      
    }

    #stacks_in_81742 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81742 {
      margin: 11px;      
    }

    #stacks_in_81742 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81742 {
      margin: 11px;      
    }

    #stacks_in_81742 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81747 {
      margin: 8px;      
    }

    #stacks_in_81747 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81747 {
      margin: 48px;      
    }

    #stacks_in_81747 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81747 {
      margin: 8px;      
    }

    #stacks_in_81747 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81747 {
      margin: 8px;      
    }

    #stacks_in_81747 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81747 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81750 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81728 article,
#stacks_in_81728 aside,
#stacks_in_81728 details,
#stacks_in_81728 figcaption,
#stacks_in_81728 figure,
#stacks_in_81728 footer,
#stacks_in_81728 header,
#stacks_in_81728 hgroup,
#stacks_in_81728 main,
#stacks_in_81728 nav,
#stacks_in_81728 section,
#stacks_in_81728 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81728 audio,
#stacks_in_81728 canvas,
#stacks_in_81728 progress,
#stacks_in_81728 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81728 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81728 [hidden],
#stacks_in_81728 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81728 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81728 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81728 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81728 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81728 code,
#stacks_in_81728 kbd,
#stacks_in_81728 pre,
#stacks_in_81728 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81728 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81728 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81728 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81728 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81728 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81728 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81728 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81728 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81728 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81728 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81728 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81728 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81728 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81728 .left {
  float: left !important; }

#stacks_in_81728 .right {
  float: right !important; }

#stacks_in_81728 .clearfix:before,
#stacks_in_81728 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81728 .clearfix:after {
  clear: both; }

#stacks_in_81728 .hide {
  display: none; }

#stacks_in_81728 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81728 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81728 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81728 select {
  width: 100%; }

#stacks_in_81728 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81728 .row:before,
#stacks_in_81728 .row:after {
  content: " ";
  display: table; }

#stacks_in_81728 .row:after {
  clear: both; }

#stacks_in_81728 .row.collapse > .column,
#stacks_in_81728 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81728 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81728 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81728 .row .row:before,
#stacks_in_81728 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81728 .row .row:after {
  clear: both; }

#stacks_in_81728 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81728 .row .row.collapse:before,
#stacks_in_81728 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81728 .row .row.collapse:after {
  clear: both; }

#stacks_in_81728 .column,
#stacks_in_81728 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81728 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81728 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81728 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81728 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81728 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81728 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81728 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81728 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81728 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81728 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81728 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81728 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81728 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81728 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81728 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81728 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81728 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81728 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81728 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81728 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81728 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81728 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81728 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81728 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81728 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81728 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81728 .column,
  #stacks_in_81728 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81728 .small-1 {
    width: 8.33333%; }

  #stacks_in_81728 .small-2 {
    width: 16.66667%; }

  #stacks_in_81728 .small-3 {
    width: 25%; }

  #stacks_in_81728 .small-4 {
    width: 33.33333%; }

  #stacks_in_81728 .small-5 {
    width: 41.66667%; }

  #stacks_in_81728 .small-6 {
    width: 50%; }

  #stacks_in_81728 .small-7 {
    width: 58.33333%; }

  #stacks_in_81728 .small-8 {
    width: 66.66667%; }

  #stacks_in_81728 .small-9 {
    width: 75%; }

  #stacks_in_81728 .small-10 {
    width: 83.33333%; }

  #stacks_in_81728 .small-11 {
    width: 91.66667%; }

  #stacks_in_81728 .small-12 {
    width: 100%; }

  #stacks_in_81728 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81728 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81728 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81728 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81728 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81728 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81728 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81728 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81728 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81728 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81728 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81728 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81728 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81728 .column.small-centered,
  #stacks_in_81728 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81728 .column.small-uncentered,
  #stacks_in_81728 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81728 .column.small-centered:last-child,
  #stacks_in_81728 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81728 .column.small-uncentered:last-child,
  #stacks_in_81728 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81728 .column.small-uncentered.opposite,
  #stacks_in_81728 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81728 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81728 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81728 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81728 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81728 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81728 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81728 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81728 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81728 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81728 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81728 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81728 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81728 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81728 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81728 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81728 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81728 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81728 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81728 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81728 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81728 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81728 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81728 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81728 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81728 .column,
  #stacks_in_81728 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81728 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81728 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81728 .medium-3 {
    width: 25%; }

  #stacks_in_81728 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81728 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81728 .medium-6 {
    width: 50%; }

  #stacks_in_81728 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81728 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81728 .medium-9 {
    width: 75%; }

  #stacks_in_81728 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81728 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81728 .medium-12 {
    width: 100%; }

  #stacks_in_81728 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81728 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81728 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81728 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81728 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81728 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81728 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81728 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81728 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81728 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81728 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81728 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81728 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81728 .column.medium-centered,
  #stacks_in_81728 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81728 .column.medium-uncentered,
  #stacks_in_81728 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81728 .column.medium-centered:last-child,
  #stacks_in_81728 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81728 .column.medium-uncentered:last-child,
  #stacks_in_81728 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81728 .column.medium-uncentered.opposite,
  #stacks_in_81728 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81728 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81728 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81728 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81728 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81728 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81728 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81728 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81728 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81728 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81728 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81728 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81728 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81728 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81728 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81728 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81728 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81728 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81728 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81728 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81728 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81728 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81728 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81728 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81728 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81728 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81728 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81728 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81728 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81728 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81728 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81728 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81728 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81728 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81728 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81728 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81728 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81728 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81728 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81728 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81728 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81728 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81728 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81728 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81728 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81728 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81728 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81728 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81728 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81728 .column,
  #stacks_in_81728 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81728 .large-1 {
    width: 8.33333%; }

  #stacks_in_81728 .large-2 {
    width: 16.66667%; }

  #stacks_in_81728 .large-3 {
    width: 25%; }

  #stacks_in_81728 .large-4 {
    width: 33.33333%; }

  #stacks_in_81728 .large-5 {
    width: 41.66667%; }

  #stacks_in_81728 .large-6 {
    width: 50%; }

  #stacks_in_81728 .large-7 {
    width: 58.33333%; }

  #stacks_in_81728 .large-8 {
    width: 66.66667%; }

  #stacks_in_81728 .large-9 {
    width: 75%; }

  #stacks_in_81728 .large-10 {
    width: 83.33333%; }

  #stacks_in_81728 .large-11 {
    width: 91.66667%; }

  #stacks_in_81728 .large-12 {
    width: 100%; }

  #stacks_in_81728 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81728 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81728 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81728 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81728 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81728 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81728 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81728 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81728 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81728 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81728 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81728 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81728 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81728 .column.large-centered,
  #stacks_in_81728 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81728 .column.large-uncentered,
  #stacks_in_81728 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81728 .column.large-centered:last-child,
  #stacks_in_81728 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81728 .column.large-uncentered:last-child,
  #stacks_in_81728 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81728 .column.large-uncentered.opposite,
  #stacks_in_81728 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81728 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81728 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81728 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81728 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81728 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81728 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81728 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81728 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81728 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81728 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81728 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81728 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81728 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81728 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81728 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81728 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81728 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81728 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81728 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81728 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81728 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81728 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81728 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81728 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81728 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81728 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81728 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81728 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81728 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81728 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81728 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81728 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81728 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81728 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81728 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81728 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81728 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81728 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81728 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81728 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81728 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81728 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81728 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81730 {
      margin: 11px;      
    }

    #stacks_in_81730 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81730 {
      margin: 11px;      
    }

    #stacks_in_81730 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81730 {
      margin: 11px;      
    }

    #stacks_in_81730 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81735 {
      margin: 8px;      
    }

    #stacks_in_81735 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81735 {
      margin: 48px;      
    }

    #stacks_in_81735 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81735 {
      margin: 8px;      
    }

    #stacks_in_81735 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81735 {
      margin: 8px;      
    }

    #stacks_in_81735 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81735 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81738 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81713 article,
#stacks_in_81713 aside,
#stacks_in_81713 details,
#stacks_in_81713 figcaption,
#stacks_in_81713 figure,
#stacks_in_81713 footer,
#stacks_in_81713 header,
#stacks_in_81713 hgroup,
#stacks_in_81713 main,
#stacks_in_81713 nav,
#stacks_in_81713 section,
#stacks_in_81713 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81713 audio,
#stacks_in_81713 canvas,
#stacks_in_81713 progress,
#stacks_in_81713 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81713 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81713 [hidden],
#stacks_in_81713 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81713 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81713 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81713 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81713 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81713 code,
#stacks_in_81713 kbd,
#stacks_in_81713 pre,
#stacks_in_81713 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81713 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81713 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81713 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81713 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81713 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81713 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81713 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81713 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81713 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81713 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81713 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81713 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81713 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81713 .left {
  float: left !important; }

#stacks_in_81713 .right {
  float: right !important; }

#stacks_in_81713 .clearfix:before,
#stacks_in_81713 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81713 .clearfix:after {
  clear: both; }

#stacks_in_81713 .hide {
  display: none; }

#stacks_in_81713 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81713 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81713 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81713 select {
  width: 100%; }

#stacks_in_81713 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81713 .row:before,
#stacks_in_81713 .row:after {
  content: " ";
  display: table; }

#stacks_in_81713 .row:after {
  clear: both; }

#stacks_in_81713 .row.collapse > .column,
#stacks_in_81713 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81713 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81713 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81713 .row .row:before,
#stacks_in_81713 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81713 .row .row:after {
  clear: both; }

#stacks_in_81713 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81713 .row .row.collapse:before,
#stacks_in_81713 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81713 .row .row.collapse:after {
  clear: both; }

#stacks_in_81713 .column,
#stacks_in_81713 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81713 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81713 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81713 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81713 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81713 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81713 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81713 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81713 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81713 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81713 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81713 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81713 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81713 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81713 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81713 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81713 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81713 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81713 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81713 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81713 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81713 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81713 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81713 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81713 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81713 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81713 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81713 .column,
  #stacks_in_81713 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81713 .small-1 {
    width: 8.33333%; }

  #stacks_in_81713 .small-2 {
    width: 16.66667%; }

  #stacks_in_81713 .small-3 {
    width: 25%; }

  #stacks_in_81713 .small-4 {
    width: 33.33333%; }

  #stacks_in_81713 .small-5 {
    width: 41.66667%; }

  #stacks_in_81713 .small-6 {
    width: 50%; }

  #stacks_in_81713 .small-7 {
    width: 58.33333%; }

  #stacks_in_81713 .small-8 {
    width: 66.66667%; }

  #stacks_in_81713 .small-9 {
    width: 75%; }

  #stacks_in_81713 .small-10 {
    width: 83.33333%; }

  #stacks_in_81713 .small-11 {
    width: 91.66667%; }

  #stacks_in_81713 .small-12 {
    width: 100%; }

  #stacks_in_81713 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81713 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81713 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81713 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81713 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81713 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81713 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81713 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81713 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81713 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81713 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81713 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81713 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81713 .column.small-centered,
  #stacks_in_81713 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81713 .column.small-uncentered,
  #stacks_in_81713 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81713 .column.small-centered:last-child,
  #stacks_in_81713 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81713 .column.small-uncentered:last-child,
  #stacks_in_81713 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81713 .column.small-uncentered.opposite,
  #stacks_in_81713 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81713 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81713 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81713 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81713 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81713 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81713 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81713 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81713 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81713 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81713 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81713 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81713 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81713 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81713 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81713 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81713 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81713 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81713 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81713 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81713 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81713 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81713 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81713 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81713 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81713 .column,
  #stacks_in_81713 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81713 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81713 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81713 .medium-3 {
    width: 25%; }

  #stacks_in_81713 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81713 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81713 .medium-6 {
    width: 50%; }

  #stacks_in_81713 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81713 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81713 .medium-9 {
    width: 75%; }

  #stacks_in_81713 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81713 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81713 .medium-12 {
    width: 100%; }

  #stacks_in_81713 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81713 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81713 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81713 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81713 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81713 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81713 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81713 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81713 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81713 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81713 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81713 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81713 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81713 .column.medium-centered,
  #stacks_in_81713 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81713 .column.medium-uncentered,
  #stacks_in_81713 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81713 .column.medium-centered:last-child,
  #stacks_in_81713 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81713 .column.medium-uncentered:last-child,
  #stacks_in_81713 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81713 .column.medium-uncentered.opposite,
  #stacks_in_81713 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81713 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81713 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81713 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81713 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81713 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81713 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81713 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81713 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81713 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81713 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81713 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81713 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81713 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81713 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81713 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81713 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81713 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81713 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81713 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81713 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81713 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81713 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81713 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81713 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81713 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81713 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81713 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81713 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81713 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81713 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81713 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81713 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81713 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81713 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81713 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81713 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81713 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81713 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81713 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81713 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81713 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81713 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81713 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81713 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81713 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81713 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81713 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81713 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81713 .column,
  #stacks_in_81713 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81713 .large-1 {
    width: 8.33333%; }

  #stacks_in_81713 .large-2 {
    width: 16.66667%; }

  #stacks_in_81713 .large-3 {
    width: 25%; }

  #stacks_in_81713 .large-4 {
    width: 33.33333%; }

  #stacks_in_81713 .large-5 {
    width: 41.66667%; }

  #stacks_in_81713 .large-6 {
    width: 50%; }

  #stacks_in_81713 .large-7 {
    width: 58.33333%; }

  #stacks_in_81713 .large-8 {
    width: 66.66667%; }

  #stacks_in_81713 .large-9 {
    width: 75%; }

  #stacks_in_81713 .large-10 {
    width: 83.33333%; }

  #stacks_in_81713 .large-11 {
    width: 91.66667%; }

  #stacks_in_81713 .large-12 {
    width: 100%; }

  #stacks_in_81713 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81713 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81713 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81713 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81713 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81713 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81713 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81713 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81713 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81713 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81713 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81713 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81713 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81713 .column.large-centered,
  #stacks_in_81713 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81713 .column.large-uncentered,
  #stacks_in_81713 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81713 .column.large-centered:last-child,
  #stacks_in_81713 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81713 .column.large-uncentered:last-child,
  #stacks_in_81713 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81713 .column.large-uncentered.opposite,
  #stacks_in_81713 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81713 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81713 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81713 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81713 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81713 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81713 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81713 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81713 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81713 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81713 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81713 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81713 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81713 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81713 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81713 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81713 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81713 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81713 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81713 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81713 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81713 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81713 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81713 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81713 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81713 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81713 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81713 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81713 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81713 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81713 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81713 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81713 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81713 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81713 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81713 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81713 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81713 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81713 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81713 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81713 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81713 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81713 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81713 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81715 {
      margin: 11px;      
    }

    #stacks_in_81715 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81715 {
      margin: 11px;      
    }

    #stacks_in_81715 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81715 {
      margin: 11px;      
    }

    #stacks_in_81715 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81720 {
      margin: 8px;      
    }

    #stacks_in_81720 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81720 {
      margin: 48px;      
    }

    #stacks_in_81720 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81720 {
      margin: 8px;      
    }

    #stacks_in_81720 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81720 {
      margin: 8px;      
    }

    #stacks_in_81720 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81720 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81723 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81677 article,
#stacks_in_81677 aside,
#stacks_in_81677 details,
#stacks_in_81677 figcaption,
#stacks_in_81677 figure,
#stacks_in_81677 footer,
#stacks_in_81677 header,
#stacks_in_81677 hgroup,
#stacks_in_81677 main,
#stacks_in_81677 nav,
#stacks_in_81677 section,
#stacks_in_81677 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81677 audio,
#stacks_in_81677 canvas,
#stacks_in_81677 progress,
#stacks_in_81677 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81677 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81677 [hidden],
#stacks_in_81677 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81677 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81677 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81677 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81677 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81677 code,
#stacks_in_81677 kbd,
#stacks_in_81677 pre,
#stacks_in_81677 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81677 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81677 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81677 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81677 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81677 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81677 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81677 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81677 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81677 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81677 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81677 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81677 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81677 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81677 .left {
  float: left !important; }

#stacks_in_81677 .right {
  float: right !important; }

#stacks_in_81677 .clearfix:before,
#stacks_in_81677 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81677 .clearfix:after {
  clear: both; }

#stacks_in_81677 .hide {
  display: none; }

#stacks_in_81677 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81677 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81677 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81677 select {
  width: 100%; }

#stacks_in_81677 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81677 .row:before,
#stacks_in_81677 .row:after {
  content: " ";
  display: table; }

#stacks_in_81677 .row:after {
  clear: both; }

#stacks_in_81677 .row.collapse > .column,
#stacks_in_81677 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81677 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81677 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81677 .row .row:before,
#stacks_in_81677 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81677 .row .row:after {
  clear: both; }

#stacks_in_81677 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81677 .row .row.collapse:before,
#stacks_in_81677 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81677 .row .row.collapse:after {
  clear: both; }

#stacks_in_81677 .column,
#stacks_in_81677 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81677 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81677 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81677 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81677 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81677 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81677 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81677 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81677 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81677 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81677 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81677 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81677 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81677 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81677 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81677 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81677 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81677 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81677 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81677 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81677 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81677 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81677 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81677 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81677 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81677 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81677 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81677 .column,
  #stacks_in_81677 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81677 .small-1 {
    width: 8.33333%; }

  #stacks_in_81677 .small-2 {
    width: 16.66667%; }

  #stacks_in_81677 .small-3 {
    width: 25%; }

  #stacks_in_81677 .small-4 {
    width: 33.33333%; }

  #stacks_in_81677 .small-5 {
    width: 41.66667%; }

  #stacks_in_81677 .small-6 {
    width: 50%; }

  #stacks_in_81677 .small-7 {
    width: 58.33333%; }

  #stacks_in_81677 .small-8 {
    width: 66.66667%; }

  #stacks_in_81677 .small-9 {
    width: 75%; }

  #stacks_in_81677 .small-10 {
    width: 83.33333%; }

  #stacks_in_81677 .small-11 {
    width: 91.66667%; }

  #stacks_in_81677 .small-12 {
    width: 100%; }

  #stacks_in_81677 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81677 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81677 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81677 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81677 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81677 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81677 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81677 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81677 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81677 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81677 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81677 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81677 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81677 .column.small-centered,
  #stacks_in_81677 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81677 .column.small-uncentered,
  #stacks_in_81677 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81677 .column.small-centered:last-child,
  #stacks_in_81677 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81677 .column.small-uncentered:last-child,
  #stacks_in_81677 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81677 .column.small-uncentered.opposite,
  #stacks_in_81677 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81677 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81677 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81677 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81677 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81677 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81677 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81677 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81677 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81677 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81677 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81677 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81677 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81677 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81677 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81677 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81677 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81677 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81677 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81677 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81677 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81677 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81677 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81677 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81677 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81677 .column,
  #stacks_in_81677 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81677 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81677 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81677 .medium-3 {
    width: 25%; }

  #stacks_in_81677 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81677 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81677 .medium-6 {
    width: 50%; }

  #stacks_in_81677 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81677 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81677 .medium-9 {
    width: 75%; }

  #stacks_in_81677 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81677 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81677 .medium-12 {
    width: 100%; }

  #stacks_in_81677 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81677 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81677 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81677 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81677 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81677 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81677 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81677 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81677 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81677 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81677 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81677 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81677 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81677 .column.medium-centered,
  #stacks_in_81677 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81677 .column.medium-uncentered,
  #stacks_in_81677 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81677 .column.medium-centered:last-child,
  #stacks_in_81677 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81677 .column.medium-uncentered:last-child,
  #stacks_in_81677 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81677 .column.medium-uncentered.opposite,
  #stacks_in_81677 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81677 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81677 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81677 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81677 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81677 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81677 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81677 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81677 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81677 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81677 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81677 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81677 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81677 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81677 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81677 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81677 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81677 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81677 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81677 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81677 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81677 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81677 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81677 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81677 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81677 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81677 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81677 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81677 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81677 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81677 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81677 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81677 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81677 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81677 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81677 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81677 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81677 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81677 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81677 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81677 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81677 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81677 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81677 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81677 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81677 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81677 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81677 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81677 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81677 .column,
  #stacks_in_81677 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81677 .large-1 {
    width: 8.33333%; }

  #stacks_in_81677 .large-2 {
    width: 16.66667%; }

  #stacks_in_81677 .large-3 {
    width: 25%; }

  #stacks_in_81677 .large-4 {
    width: 33.33333%; }

  #stacks_in_81677 .large-5 {
    width: 41.66667%; }

  #stacks_in_81677 .large-6 {
    width: 50%; }

  #stacks_in_81677 .large-7 {
    width: 58.33333%; }

  #stacks_in_81677 .large-8 {
    width: 66.66667%; }

  #stacks_in_81677 .large-9 {
    width: 75%; }

  #stacks_in_81677 .large-10 {
    width: 83.33333%; }

  #stacks_in_81677 .large-11 {
    width: 91.66667%; }

  #stacks_in_81677 .large-12 {
    width: 100%; }

  #stacks_in_81677 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81677 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81677 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81677 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81677 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81677 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81677 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81677 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81677 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81677 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81677 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81677 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81677 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81677 .column.large-centered,
  #stacks_in_81677 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81677 .column.large-uncentered,
  #stacks_in_81677 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81677 .column.large-centered:last-child,
  #stacks_in_81677 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81677 .column.large-uncentered:last-child,
  #stacks_in_81677 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81677 .column.large-uncentered.opposite,
  #stacks_in_81677 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81677 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81677 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81677 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81677 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81677 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81677 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81677 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81677 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81677 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81677 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81677 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81677 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81677 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81677 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81677 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81677 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81677 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81677 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81677 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81677 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81677 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81677 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81677 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81677 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81677 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81677 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81677 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81677 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81677 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81677 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81677 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81677 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81677 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81677 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81677 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81677 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81677 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81677 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81677 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81677 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81677 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81677 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81677 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81679 {
      margin: 11px;      
    }

    #stacks_in_81679 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81679 {
      margin: 11px;      
    }

    #stacks_in_81679 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81679 {
      margin: 11px;      
    }

    #stacks_in_81679 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81684 {
      margin: 8px;      
    }

    #stacks_in_81684 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81684 {
      margin: 48px;      
    }

    #stacks_in_81684 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81684 {
      margin: 8px;      
    }

    #stacks_in_81684 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81684 {
      margin: 8px;      
    }

    #stacks_in_81684 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81684 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81687 {
	font-size: 151%;
}
/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_81433 article,
#stacks_in_81433 aside,
#stacks_in_81433 details,
#stacks_in_81433 figcaption,
#stacks_in_81433 figure,
#stacks_in_81433 footer,
#stacks_in_81433 header,
#stacks_in_81433 hgroup,
#stacks_in_81433 main,
#stacks_in_81433 nav,
#stacks_in_81433 section,
#stacks_in_81433 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_81433 audio,
#stacks_in_81433 canvas,
#stacks_in_81433 progress,
#stacks_in_81433 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_81433 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_81433 [hidden],
#stacks_in_81433 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_81433 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_81433 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_81433 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_81433 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_81433 code,
#stacks_in_81433 kbd,
#stacks_in_81433 pre,
#stacks_in_81433 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


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


#stacks_in_81433 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_81433 .column_base_margin {
    margin-bottom: 0px;
  }
}

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

  #stacks_in_81433 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_81433 .column_base_margin {
    margin-bottom: 40px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_81433 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_81433 img {
  max-width: 100%;
  height: auto;
}

/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

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.

*/


#stacks_in_81433 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_81433 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_81433 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_81433 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_81433 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_81433 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_81433 meta.foundation-data-attribute-namespace {
  font-family: false; }

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

#stacks_in_81433 .left {
  float: left !important; }

#stacks_in_81433 .right {
  float: right !important; }

#stacks_in_81433 .clearfix:before,
#stacks_in_81433 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_81433 .clearfix:after {
  clear: both; }

#stacks_in_81433 .hide {
  display: none; }

#stacks_in_81433 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_81433 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_81433 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_81433 select {
  width: 100%; }

#stacks_in_81433 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_81433 .row:before,
#stacks_in_81433 .row:after {
  content: " ";
  display: table; }

#stacks_in_81433 .row:after {
  clear: both; }

#stacks_in_81433 .row.collapse > .column,
#stacks_in_81433 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_81433 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_81433 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_81433 .row .row:before,
#stacks_in_81433 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_81433 .row .row:after {
  clear: both; }

#stacks_in_81433 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_81433 .row .row.collapse:before,
#stacks_in_81433 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_81433 .row .row.collapse:after {
  clear: both; }

#stacks_in_81433 .column,
#stacks_in_81433 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-right: 0;   /* Fixes comaptiblity with some themes using skeleton.css */
  margin-left: 0;    /* Fixes comaptiblity with some themes using skeleton.css */
  width: 100%;
  float: left; }

#stacks_in_81433 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_81433 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_81433 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81433 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81433 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81433 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81433 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81433 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81433 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81433 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81433 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81433 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81433 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81433 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81433 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81433 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81433 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81433 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81433 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81433 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81433 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81433 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81433 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81433 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81433 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81433 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81433 .column,
  #stacks_in_81433 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81433 .small-1 {
    width: 8.33333%; }

  #stacks_in_81433 .small-2 {
    width: 16.66667%; }

  #stacks_in_81433 .small-3 {
    width: 25%; }

  #stacks_in_81433 .small-4 {
    width: 33.33333%; }

  #stacks_in_81433 .small-5 {
    width: 41.66667%; }

  #stacks_in_81433 .small-6 {
    width: 50%; }

  #stacks_in_81433 .small-7 {
    width: 58.33333%; }

  #stacks_in_81433 .small-8 {
    width: 66.66667%; }

  #stacks_in_81433 .small-9 {
    width: 75%; }

  #stacks_in_81433 .small-10 {
    width: 83.33333%; }

  #stacks_in_81433 .small-11 {
    width: 91.66667%; }

  #stacks_in_81433 .small-12 {
    width: 100%; }

  #stacks_in_81433 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81433 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81433 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81433 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81433 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81433 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81433 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81433 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81433 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81433 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81433 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81433 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81433 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81433 .column.small-centered,
  #stacks_in_81433 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81433 .column.small-uncentered,
  #stacks_in_81433 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81433 .column.small-centered:last-child,
  #stacks_in_81433 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_81433 .column.small-uncentered:last-child,
  #stacks_in_81433 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_81433 .column.small-uncentered.opposite,
  #stacks_in_81433 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_81433 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81433 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81433 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81433 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81433 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81433 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81433 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81433 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81433 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81433 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81433 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81433 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81433 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81433 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81433 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81433 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81433 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81433 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81433 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81433 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81433 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81433 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81433 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81433 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81433 .column,
  #stacks_in_81433 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81433 .medium-1 {
    width: 8.33333%; }

  #stacks_in_81433 .medium-2 {
    width: 16.66667%; }

  #stacks_in_81433 .medium-3 {
    width: 25%; }

  #stacks_in_81433 .medium-4 {
    width: 33.33333%; }

  #stacks_in_81433 .medium-5 {
    width: 41.66667%; }

  #stacks_in_81433 .medium-6 {
    width: 50%; }

  #stacks_in_81433 .medium-7 {
    width: 58.33333%; }

  #stacks_in_81433 .medium-8 {
    width: 66.66667%; }

  #stacks_in_81433 .medium-9 {
    width: 75%; }

  #stacks_in_81433 .medium-10 {
    width: 83.33333%; }

  #stacks_in_81433 .medium-11 {
    width: 91.66667%; }

  #stacks_in_81433 .medium-12 {
    width: 100%; }

  #stacks_in_81433 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81433 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81433 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81433 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81433 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81433 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81433 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81433 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81433 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81433 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81433 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81433 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81433 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81433 .column.medium-centered,
  #stacks_in_81433 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81433 .column.medium-uncentered,
  #stacks_in_81433 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81433 .column.medium-centered:last-child,
  #stacks_in_81433 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_81433 .column.medium-uncentered:last-child,
  #stacks_in_81433 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_81433 .column.medium-uncentered.opposite,
  #stacks_in_81433 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_81433 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81433 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81433 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81433 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81433 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81433 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81433 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81433 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81433 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81433 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81433 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81433 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81433 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81433 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81433 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81433 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81433 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81433 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81433 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81433 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81433 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81433 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81433 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81433 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_81433 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81433 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81433 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81433 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81433 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81433 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81433 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81433 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81433 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81433 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81433 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81433 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81433 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81433 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81433 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81433 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81433 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81433 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81433 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81433 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81433 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81433 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81433 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81433 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_81433 .column,
  #stacks_in_81433 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_81433 .large-1 {
    width: 8.33333%; }

  #stacks_in_81433 .large-2 {
    width: 16.66667%; }

  #stacks_in_81433 .large-3 {
    width: 25%; }

  #stacks_in_81433 .large-4 {
    width: 33.33333%; }

  #stacks_in_81433 .large-5 {
    width: 41.66667%; }

  #stacks_in_81433 .large-6 {
    width: 50%; }

  #stacks_in_81433 .large-7 {
    width: 58.33333%; }

  #stacks_in_81433 .large-8 {
    width: 66.66667%; }

  #stacks_in_81433 .large-9 {
    width: 75%; }

  #stacks_in_81433 .large-10 {
    width: 83.33333%; }

  #stacks_in_81433 .large-11 {
    width: 91.66667%; }

  #stacks_in_81433 .large-12 {
    width: 100%; }

  #stacks_in_81433 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_81433 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_81433 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_81433 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_81433 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_81433 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_81433 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_81433 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_81433 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_81433 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_81433 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_81433 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_81433 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_81433 .column.large-centered,
  #stacks_in_81433 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_81433 .column.large-uncentered,
  #stacks_in_81433 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_81433 .column.large-centered:last-child,
  #stacks_in_81433 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_81433 .column.large-uncentered:last-child,
  #stacks_in_81433 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_81433 .column.large-uncentered.opposite,
  #stacks_in_81433 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_81433 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_81433 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_81433 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_81433 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_81433 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_81433 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_81433 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_81433 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_81433 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_81433 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_81433 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_81433 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_81433 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_81433 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_81433 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_81433 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_81433 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_81433 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_81433 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_81433 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_81433 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_81433 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_81433 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_81433 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_81433 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_81433 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_81433 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_81433 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_81433 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_81433 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_81433 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_81433 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81433 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81433 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_81433 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81433 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81433 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_81433 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_81433 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_81433 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_81433 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_81433 {
    background-image: url("F0F3B85B-C9AF-4572-9092-12C91914EB12.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

#stacks_out_81433 {
	width: 84%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81434 {
      margin: 11px;      
    }

    #stacks_in_81434 {
      padding: 6px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81434 {
      margin: 11px;      
    }

    #stacks_in_81434 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81434 {
      margin: 11px;      
    }

    #stacks_in_81434 {
      padding: 6px;      
    }


    

    
  

}


/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_81438 {
      margin: 8px;      
    }

    #stacks_in_81438 {
      padding: 6px;      
    }


    

    
  


 


 
    #stacks_in_81438 {
      margin: 48px;      
    }

    #stacks_in_81438 {
      padding: 60px;      
    }


    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_81438 {
      margin: 8px;      
    }

    #stacks_in_81438 {
      padding: 6px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_81438 {
      margin: 8px;      
    }

    #stacks_in_81438 {
      padding: 6px;      
    }


    

    
  

}


#stacks_in_81438 {
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_81440 {
	font-size: 151%;
}
