
@font-face {
    font-family: 'FlatButtonLato';
    src: url('../index_files/font/lato-light-webfont.eot');
    src: url('../index_files/font/lato-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../index_files/font/lato-light-webfont.woff') format('woff'),
         url('../index_files/font/lato-light-webfont.ttf') format('truetype'),
         url('../index_files/font/lato-light-webfont.svg#latolight') format('svg');
    font-weight: 100;
    font-style: normal;
}


@font-face {
    font-family: 'FlatButtonOpenSans';
    src: url('../index_files/font/opensans-regular-webfont.eot');
    src: url('../index_files/font/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../index_files/font/opensans-regular-webfont.woff') format('woff'),
         url('../index_files/font/opensans-regular-webfont.ttf') format('truetype'),
         url('../index_files/font/opensans-regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'FlatButtonNoto';
    src: url('../index_files/font/notoserif-regular-webfont.eot');
    src: url('../index_files/font/notoserif-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../index_files/font/notoserif-regular-webfont.woff') format('woff'),
         url('../index_files/font/notoserif-regular-webfont.ttf') format('truetype'),
         url('../index_files/font/notoserif-regular-webfont.svg#noto_serifregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.elxr_bounce {
  -webkit-animation-name: elxr_bounce;
  animation-name: elxr_bounce;
}

@-webkit-keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.elxr_flash {
  -webkit-animation-name: elxr_flash;
  animation-name: elxr_flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_pulse {
  -webkit-animation-name: elxr_pulse;
  animation-name: elxr_pulse;
}

@-webkit-keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_rubberBand {
  -webkit-animation-name: elxr_rubberBand;
  animation-name: elxr_rubberBand;
}

@-webkit-keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.elxr_shake {
  -webkit-animation-name: elxr_shake;
  animation-name: elxr_shake;
}

@-webkit-keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.elxr_swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: elxr_swing;
  animation-name: elxr_swing;
}

@-webkit-keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.elxr_tada {
  -webkit-animation-name: elxr_tada;
  animation-name: elxr_tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.elxr_wobble {
  -webkit-animation-name: elxr_wobble;
  animation-name: elxr_wobble;
}

@-webkit-keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_bounceIn {
  -webkit-animation-name: elxr_bounceIn;
  animation-name: elxr_bounceIn;
}

@-webkit-keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bounceInDown {
  -webkit-animation-name: elxr_bounceInDown;
  animation-name: elxr_bounceInDown;
}

@-webkit-keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bounceInLeft {
  -webkit-animation-name: elxr_bounceInLeft;
  animation-name: elxr_bounceInLeft;
}

@-webkit-keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bounceInRight {
  -webkit-animation-name: elxr_bounceInRight;
  animation-name: elxr_bounceInRight;
}

@-webkit-keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bounceInUp {
  -webkit-animation-name: elxr_bounceInUp;
  animation-name: elxr_bounceInUp;
}

@-webkit-keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.elxr_bounceOut {
  -webkit-animation-name: elxr_bounceOut;
  animation-name: elxr_bounceOut;
}

@-webkit-keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_bounceOutDown {
  -webkit-animation-name: elxr_bounceOutDown;
  animation-name: elxr_bounceOutDown;
}

@-webkit-keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_bounceOutLeft {
  -webkit-animation-name: elxr_bounceOutLeft;
  animation-name: elxr_bounceOutLeft;
}

@-webkit-keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_bounceOutRight {
  -webkit-animation-name: elxr_bounceOutRight;
  animation-name: elxr_bounceOutRight;
}

@-webkit-keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_bounceOutUp {
  -webkit-animation-name: elxr_bounceOutUp;
  animation-name: elxr_bounceOutUp;
}

@-webkit-keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.elxr_fadeIn {
  -webkit-animation-name: elxr_fadeIn;
  animation-name: elxr_fadeIn;
}

@-webkit-keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInDown {
  -webkit-animation-name: elxr_fadeInDown;
  animation-name: elxr_fadeInDown;
}

@-webkit-keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInDownBig {
  -webkit-animation-name: elxr_fadeInDownBig;
  animation-name: elxr_fadeInDownBig;
}

@-webkit-keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInLeft {
  -webkit-animation-name: elxr_fadeInLeft;
  animation-name: elxr_fadeInLeft;
}

@-webkit-keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInLeftBig {
  -webkit-animation-name: elxr_fadeInLeftBig;
  animation-name: elxr_fadeInLeftBig;
}

@-webkit-keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInRight {
  -webkit-animation-name: elxr_fadeInRight;
  animation-name: elxr_fadeInRight;
}

@-webkit-keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInRightBig {
  -webkit-animation-name: elxr_fadeInRightBig;
  animation-name: elxr_fadeInRightBig;
}

@-webkit-keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInUp {
  -webkit-animation-name: elxr_fadeInUp;
  animation-name: elxr_fadeInUp;
}

@-webkit-keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInUpBig {
  -webkit-animation-name: elxr_fadeInUpBig;
  animation-name: elxr_fadeInUpBig;
}

@-webkit-keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.elxr_fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.elxr_fadeOutDown {
  -webkit-animation-name: elxr_fadeOutDown;
  animation-name: elxr_fadeOutDown;
}

@-webkit-keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_fadeOutDownBig {
  -webkit-animation-name: elxr_fadeOutDownBig;
  animation-name: elxr_fadeOutDownBig;
}

@-webkit-keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.elxr_fadeOutLeft {
  -webkit-animation-name: elxr_fadeOutLeft;
  animation-name: elxr_fadeOutLeft;
}

@-webkit-keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_fadeOutLeftBig {
  -webkit-animation-name: elxr_fadeOutLeftBig;
  animation-name: elxr_fadeOutLeftBig;
}

@-webkit-keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.elxr_fadeOutRight {
  -webkit-animation-name: elxr_fadeOutRight;
  animation-name: elxr_fadeOutRight;
}

@-webkit-keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_fadeOutRightBig {
  -webkit-animation-name: elxr_fadeOutRightBig;
  animation-name: elxr_fadeOutRightBig;
}

@-webkit-keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.elxr_fadeOutUp {
  -webkit-animation-name: elxr_fadeOutUp;
  animation-name: elxr_fadeOutUp;
}

@-webkit-keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_fadeOutUpBig {
  -webkit-animation-name: elxr_fadeOutUpBig;
  animation-name: elxr_fadeOutUpBig;
}

@-webkit-keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.elxr_flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: elxr_flip;
  animation-name: elxr_flip;
}

@-webkit-keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.elxr_flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipInX;
  animation-name: elxr_flipInX;
}

@-webkit-keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.elxr_flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipInY;
  animation-name: elxr_flipInY;
}

@-webkit-keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.elxr_flipOutX {
  -webkit-animation-name: elxr_flipOutX;
  animation-name: elxr_flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.elxr_flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_flipOutY;
  animation-name: elxr_flipOutY;
}

@-webkit-keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.elxr_lightSpeedIn {
  -webkit-animation-name: elxr_lightSpeedIn;
  animation-name: elxr_lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.elxr_lightSpeedOut {
  -webkit-animation-name: elxr_lightSpeedOut;
  animation-name: elxr_lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateIn {
  -webkit-animation-name: elxr_rotateIn;
  animation-name: elxr_rotateIn;
}

@-webkit-keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInDownLeft {
  -webkit-animation-name: elxr_rotateInDownLeft;
  animation-name: elxr_rotateInDownLeft;
}

@-webkit-keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInDownRight {
  -webkit-animation-name: elxr_rotateInDownRight;
  animation-name: elxr_rotateInDownRight;
}

@-webkit-keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInUpLeft {
  -webkit-animation-name: elxr_rotateInUpLeft;
  animation-name: elxr_rotateInUpLeft;
}

@-webkit-keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInUpRight {
  -webkit-animation-name: elxr_rotateInUpRight;
  animation-name: elxr_rotateInUpRight;
}

@-webkit-keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.elxr_rotateOut {
  -webkit-animation-name: elxr_rotateOut;
  animation-name: elxr_rotateOut;
}

@-webkit-keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.elxr_rotateOutDownLeft {
  -webkit-animation-name: elxr_rotateOutDownLeft;
  animation-name: elxr_rotateOutDownLeft;
}

@-webkit-keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.elxr_rotateOutDownRight {
  -webkit-animation-name: elxr_rotateOutDownRight;
  animation-name: elxr_rotateOutDownRight;
}

@-webkit-keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.elxr_rotateOutUpLeft {
  -webkit-animation-name: elxr_rotateOutUpLeft;
  animation-name: elxr_rotateOutUpLeft;
}

@-webkit-keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.elxr_rotateOutUpRight {
  -webkit-animation-name: elxr_rotateOutUpRight;
  animation-name: elxr_rotateOutUpRight;
}

@-webkit-keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_slideInDown {
  -webkit-animation-name: elxr_slideInDown;
  animation-name: elxr_slideInDown;
}

@-webkit-keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_slideInLeft {
  -webkit-animation-name: elxr_slideInLeft;
  animation-name: elxr_slideInLeft;
}

@-webkit-keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_slideInRight {
  -webkit-animation-name: elxr_slideInRight;
  animation-name: elxr_slideInRight;
}

@-webkit-keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_slideOutLeft {
  -webkit-animation-name: elxr_slideOutLeft;
  animation-name: elxr_slideOutLeft;
}

@-webkit-keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_slideOutRight {
  -webkit-animation-name: elxr_slideOutRight;
  animation-name: elxr_slideOutRight;
}

@-webkit-keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_slideOutUp {
  -webkit-animation-name: elxr_slideOutUp;
  animation-name: elxr_slideOutUp;
}

@-webkit-keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_slideInUp {
  -webkit-animation-name: elxr_slideInUp;
  animation-name: elxr_slideInUp;
}

@-webkit-keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_slideOutDown {
  -webkit-animation-name: elxr_slideOutDown;
  animation-name: elxr_slideOutDown;
}

@-webkit-keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.elxr_hinge {
  -webkit-animation-name: elxr_hinge;
  animation-name: elxr_hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.elxr_rollIn {
  -webkit-animation-name: elxr_rollIn;
  animation-name: elxr_rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.elxr_rollOut {
  -webkit-animation-name: elxr_rollOut;
  animation-name: elxr_rollOut;
}

@-webkit-keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.elxr_zoomIn {
  -webkit-animation-name: elxr_zoomIn;
  animation-name: elxr_zoomIn;
}

@-webkit-keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInDown {
  -webkit-animation-name: elxr_zoomInDown;
  animation-name: elxr_zoomInDown;
}

@-webkit-keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInLeft {
  -webkit-animation-name: elxr_zoomInLeft;
  animation-name: elxr_zoomInLeft;
}

@-webkit-keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInRight {
  -webkit-animation-name: elxr_zoomInRight;
  animation-name: elxr_zoomInRight;
}

@-webkit-keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInUp {
  -webkit-animation-name: elxr_zoomInUp;
  animation-name: elxr_zoomInUp;
}

@-webkit-keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.elxr_zoomOut {
  -webkit-animation-name: elxr_zoomOut;
  animation-name: elxr_zoomOut;
}

@-webkit-keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.elxr_zoomOutDown {
  -webkit-animation-name: elxr_zoomOutDown;
  animation-name: elxr_zoomOutDown;
}

@-webkit-keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.elxr_zoomOutLeft {
  -webkit-animation-name: elxr_zoomOutLeft;
  animation-name: elxr_zoomOutLeft;
}

@-webkit-keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.elxr_zoomOutRight {
  -webkit-animation-name: elxr_zoomOutRight;
  animation-name: elxr_zoomOutRight;
}

@-webkit-keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.elxr_zoomOutUp {
  -webkit-animation-name: elxr_zoomOutUp;
  animation-name: elxr_zoomOutUp;
}



@charset "UTF-8";/*!
Magic - http://minimamente.com
Licensed under the MIT license

Copyright (c) 2014 Christian Pucci

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.magictime {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.elxr_elxr_perspectiveDownRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveDownRetourn;
  -moz-animation-name: elxr_perspectiveDownRetourn;
  -ms-animation-name: elxr_perspectiveDownRetourn;
  -o-animation-name: elxr_perspectiveDownRetourn;
  animation-name: elxr_perspectiveDownRetourn;
}
.elxr_elxr_perspectiveLeftRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveLeftRetourn;
  -moz-animation-name: elxr_perspectiveLeftRetourn;
  -ms-animation-name: elxr_perspectiveLeftRetourn;
  -o-animation-name: elxr_perspectiveLeftRetourn;
  animation-name: elxr_perspectiveLeftRetourn;
}
.elxr_elxr_perspectiveRightRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveRightRetourn;
  -moz-animation-name: elxr_perspectiveRightRetourn;
  -ms-animation-name: elxr_perspectiveRightRetourn;
  -o-animation-name: elxr_perspectiveRightRetourn;
  animation-name: elxr_perspectiveRightRetourn;
}
.elxr_elxr_perspectiveUpRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveUpRetourn;
  -moz-animation-name: elxr_perspectiveUpRetourn;
  -ms-animation-name: elxr_perspectiveUpRetourn;
  -o-animation-name: elxr_perspectiveUpRetourn;
  animation-name: elxr_perspectiveUpRetourn;
}
.elxr_elxr_puffIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
  -webkit-animation-fill-mode: none;
  -moz-animation-fill-mode: none;
  -ms-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  animation-fill-mode: none;
}
.elxr_elxr_twisterInUp {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_twisterInUp;
  -moz-animation-name: elxr_twisterInUp;
  -ms-animation-name: elxr_twisterInUp;
  -o-animation-name: elxr_twisterInUp;
  animation-name: elxr_twisterInUp;
}
.elxr_elxr_vanishIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_vanishIn;
  -moz-animation-name: elxr_vanishIn;
  -ms-animation-name: elxr_vanishIn;
  -o-animation-name: elxr_vanishIn;
  animation-name: elxr_vanishIn;
}
.elxr_elxr_tinRightIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinRightIn;
  -moz-animation-name: elxr_tinRightIn;
  -ms-animation-name: elxr_tinRightIn;
  -o-animation-name: elxr_tinRightIn;
  animation-name: elxr_tinRightIn;
}
.elxr_elxr_tinLeftIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinLeftIn;
  -moz-animation-name: elxr_tinLeftIn;
  -ms-animation-name: elxr_tinLeftIn;
  -o-animation-name: elxr_tinLeftIn;
  animation-name: elxr_tinLeftIn;
}


@-moz-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@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);
  }
}
#stacks_in_8735 {
	font-size: 149%;
	font-weight: bold;
}

#stacks_in_8728 {
	margin: 40px 0px 50px 0px;
}
/* ********* */
/* 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_8623 article,
#stacks_in_8623 aside,
#stacks_in_8623 details,
#stacks_in_8623 figcaption,
#stacks_in_8623 figure,
#stacks_in_8623 footer,
#stacks_in_8623 header,
#stacks_in_8623 hgroup,
#stacks_in_8623 main,
#stacks_in_8623 nav,
#stacks_in_8623 section,
#stacks_in_8623 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_8623 audio,
#stacks_in_8623 canvas,
#stacks_in_8623 progress,
#stacks_in_8623 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_8623 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_8623 [hidden],
#stacks_in_8623 template {
  display: none;
}


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

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

#stacks_in_8623 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_8623 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_8623 .wow {
  visibility: hidden;
}



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


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

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

  #stacks_in_8623 .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_8623 .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_8623 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8623 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_8623 meta.foundation-version {
  font-family: "/5.3.1/"; }

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_8623 .hide {
  display: none; }

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


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


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

#stacks_in_8623 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_8623 .column,
#stacks_in_8623 .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_8623 [class*="column"] + [class*="column"]:last-child {
  float: right; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_8623 {
	margin: 0px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8642{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8642overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8642leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8642leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8642leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8642leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8642posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8642rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8642rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8642theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8642overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8642leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8642leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8642leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8642leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8642rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8642rightcolContent{		margin: auto;	}}	.stacks_in_8642posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8642posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8642posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8642posterWrapper img:hover{	cursor: pointer;}.stacks_in_8642rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8642 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_8625 *,
#stacks_in_8625 *:before,
#stacks_in_8625 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8627 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8629 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8630 {
	font-weight: bold;
}

#stacks_in_8631 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8632 {
	font-size: 90%;
}

#stacks_in_8633 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8634 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9034 .stacks_in_9034-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9034 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9034 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9034 .stacks_in_9034-button,
#stacks_in_9034 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9034 {
		text-align: center;
	}

	#stacks_in_9034 .stacks_in_9034-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9034 a.stacks_in_9034-button, #stacks_in_9034 a.stacks_in_9034-button:visited, #stacks_in_9034 a.stacks_in_9034-button:hover, #stacks_in_9034 a.stacks_in_9034-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9034 .stacks_in_9034-button {
		
			background-color: none;
			border: 1px solid #C9CCCC;
		
	}

	#stacks_in_9034 a.stacks_in_9034-button, #stacks_in_9034 a.stacks_in_9034-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9034 a.stacks_in_9034-button:hover, #stacks_in_9034 a.stacks_in_9034-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #C9CCCC;
		
	}

	
	#stacks_in_9034 .button_icon {
		
			background-color: none;
			border-right: 1px solid #C9CCCC;
		
	}

	#stacks_in_9034 a.stacks_in_9034-button:hover .button_icon, #stacks_in_9034 a.stacks_in_9034-button:active .button_icon {
		
			background-color: #C9CCCC;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9034 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_8648 article,
#stacks_in_8648 aside,
#stacks_in_8648 details,
#stacks_in_8648 figcaption,
#stacks_in_8648 figure,
#stacks_in_8648 footer,
#stacks_in_8648 header,
#stacks_in_8648 hgroup,
#stacks_in_8648 main,
#stacks_in_8648 nav,
#stacks_in_8648 section,
#stacks_in_8648 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_8648 audio,
#stacks_in_8648 canvas,
#stacks_in_8648 progress,
#stacks_in_8648 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_8648 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_8648 [hidden],
#stacks_in_8648 template {
  display: none;
}


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

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

#stacks_in_8648 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_8648 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_8648 .wow {
  visibility: hidden;
}



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


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

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

  #stacks_in_8648 .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_8648 .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_8648 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8648 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_8648 meta.foundation-version {
  font-family: "/5.3.1/"; }

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_8648 .hide {
  display: none; }

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


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


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

#stacks_in_8648 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_8648 .column,
#stacks_in_8648 .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_8648 [class*="column"] + [class*="column"]:last-child {
  float: right; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_8648 {
	margin: 50px 0px 20px 0px;
}
#stacks_in_8650 *,
#stacks_in_8650 *:before,
#stacks_in_8650 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8652 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 6px 0px 6px;
}

#stacks_in_8654 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8655 {
	font-weight: bold;
}

#stacks_in_8656 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8657 {
	font-size: 90%;
}

#stacks_in_8658 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8659 {
	font-size: 89%;
	font-weight: lighter;
}
#stacks_in_9035 .stacks_in_9035-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9035 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9035 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9035 .stacks_in_9035-button,
#stacks_in_9035 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9035 {
		text-align: center;
	}

	#stacks_in_9035 .stacks_in_9035-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9035 a.stacks_in_9035-button, #stacks_in_9035 a.stacks_in_9035-button:visited, #stacks_in_9035 a.stacks_in_9035-button:hover, #stacks_in_9035 a.stacks_in_9035-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9035 .stacks_in_9035-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9035 a.stacks_in_9035-button, #stacks_in_9035 a.stacks_in_9035-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9035 a.stacks_in_9035-button:hover, #stacks_in_9035 a.stacks_in_9035-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9035 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9035 a.stacks_in_9035-button:hover .button_icon, #stacks_in_9035 a.stacks_in_9035-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9035 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8661{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8661overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8661leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8661leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8661leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8661leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8661posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8661rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8661rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8661theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8661overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8661leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8661leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8661leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8661leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8661rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8661rightcolContent{		margin: auto;	}}	.stacks_in_8661posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8661posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8661posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8661posterWrapper img:hover{	cursor: pointer;}.stacks_in_8661rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8661 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
/* ********* */
/* 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_8878 article,
#stacks_in_8878 aside,
#stacks_in_8878 details,
#stacks_in_8878 figcaption,
#stacks_in_8878 figure,
#stacks_in_8878 footer,
#stacks_in_8878 header,
#stacks_in_8878 hgroup,
#stacks_in_8878 main,
#stacks_in_8878 nav,
#stacks_in_8878 section,
#stacks_in_8878 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_8878 audio,
#stacks_in_8878 canvas,
#stacks_in_8878 progress,
#stacks_in_8878 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_8878 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_8878 [hidden],
#stacks_in_8878 template {
  display: none;
}


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

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

#stacks_in_8878 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_8878 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_8878 .wow {
  visibility: hidden;
}



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


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

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

  #stacks_in_8878 .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_8878 .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_8878 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8878 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_8878 meta.foundation-version {
  font-family: "/5.3.1/"; }

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_8878 .hide {
  display: none; }

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


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


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

#stacks_in_8878 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_8878 .column,
#stacks_in_8878 .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_8878 [class*="column"] + [class*="column"]:last-child {
  float: right; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  #stacks_in_8878 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8878 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8878 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8878 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8878 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8878 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8878 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8878 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8878 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8878 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8878 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8878 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8878 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8878 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8878 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8878 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8878 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8878 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8878 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8878 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8878 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8878 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8878 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8878 .column,
  #stacks_in_8878 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8878 .large-1 {
    width: 8.33333%; }

  #stacks_in_8878 .large-2 {
    width: 16.66667%; }

  #stacks_in_8878 .large-3 {
    width: 25%; }

  #stacks_in_8878 .large-4 {
    width: 33.33333%; }

  #stacks_in_8878 .large-5 {
    width: 41.66667%; }

  #stacks_in_8878 .large-6 {
    width: 50%; }

  #stacks_in_8878 .large-7 {
    width: 58.33333%; }

  #stacks_in_8878 .large-8 {
    width: 66.66667%; }

  #stacks_in_8878 .large-9 {
    width: 75%; }

  #stacks_in_8878 .large-10 {
    width: 83.33333%; }

  #stacks_in_8878 .large-11 {
    width: 91.66667%; }

  #stacks_in_8878 .large-12 {
    width: 100%; }

  #stacks_in_8878 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8878 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8878 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8878 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8878 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8878 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8878 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8878 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8878 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8878 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8878 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8878 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8878 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8878 .column.large-centered,
  #stacks_in_8878 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8878 .column.large-uncentered,
  #stacks_in_8878 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8878 .column.large-centered:last-child,
  #stacks_in_8878 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8878 .column.large-uncentered:last-child,
  #stacks_in_8878 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8878 .column.large-uncentered.opposite,
  #stacks_in_8878 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8878 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8878 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8878 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8878 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8878 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8878 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8878 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8878 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8878 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8878 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8878 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8878 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8878 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8878 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8878 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8878 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8878 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8878 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8878 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8878 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8878 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8878 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8878 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8878 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8878 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8878 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8878 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8878 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8878 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8878 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8878 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8878 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8878 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8878 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8878 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8878 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8878 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8878 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8878 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8878 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8878 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8878 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8891{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8891overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8891leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8891leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8891leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8891leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8891posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8891rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8891rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8891theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8891overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8891leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8891leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8891leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8891leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8891rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8891rightcolContent{		margin: auto;	}}	.stacks_in_8891posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8891posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8891posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8891posterWrapper img:hover{	cursor: pointer;}.stacks_in_8891rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8891 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_8880 *,
#stacks_in_8880 *:before,
#stacks_in_8880 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8882 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8884 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8885 {
	font-weight: bold;
}

#stacks_in_8886 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8887 {
	font-size: 90%;
}

#stacks_in_8888 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8889 {
	font-size: 89%;
	font-weight: lighter;
}
#stacks_in_9036 .stacks_in_9036-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9036 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9036 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9036 .stacks_in_9036-button,
#stacks_in_9036 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9036 {
		text-align: center;
	}

	#stacks_in_9036 .stacks_in_9036-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9036 a.stacks_in_9036-button, #stacks_in_9036 a.stacks_in_9036-button:visited, #stacks_in_9036 a.stacks_in_9036-button:hover, #stacks_in_9036 a.stacks_in_9036-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9036 .stacks_in_9036-button {
		
			background-color: none;
			border: 1px solid #CCCCCC;
		
	}

	#stacks_in_9036 a.stacks_in_9036-button, #stacks_in_9036 a.stacks_in_9036-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9036 a.stacks_in_9036-button:hover, #stacks_in_9036 a.stacks_in_9036-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #CCCCCC;
		
	}

	
	#stacks_in_9036 .button_icon {
		
			background-color: none;
			border-right: 1px solid #CCCCCC;
		
	}

	#stacks_in_9036 a.stacks_in_9036-button:hover .button_icon, #stacks_in_9036 a.stacks_in_9036-button:active .button_icon {
		
			background-color: #CCCCCC;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9036 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_8667 article,
#stacks_in_8667 aside,
#stacks_in_8667 details,
#stacks_in_8667 figcaption,
#stacks_in_8667 figure,
#stacks_in_8667 footer,
#stacks_in_8667 header,
#stacks_in_8667 hgroup,
#stacks_in_8667 main,
#stacks_in_8667 nav,
#stacks_in_8667 section,
#stacks_in_8667 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_8667 audio,
#stacks_in_8667 canvas,
#stacks_in_8667 progress,
#stacks_in_8667 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_8667 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_8667 [hidden],
#stacks_in_8667 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8667 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8667 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8667 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8667 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8667 code,
#stacks_in_8667 kbd,
#stacks_in_8667 pre,
#stacks_in_8667 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8667 *,
#stacks_in_8667 *:before,
#stacks_in_8667 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8667 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8667 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8667 .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_8667 .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_8667 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8667 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_8667 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8667 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8667 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8667 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8667 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8667 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8667 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8667 *,
#stacks_in_8667 *:before,
#stacks_in_8667 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8667 .left {
  float: left !important; }

#stacks_in_8667 .right {
  float: right !important; }

#stacks_in_8667 .clearfix:before,
#stacks_in_8667 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8667 .clearfix:after {
  clear: both; }

#stacks_in_8667 .hide {
  display: none; }

#stacks_in_8667 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8667 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8667 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8667 select {
  width: 100%; }

#stacks_in_8667 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8667 .row:before,
#stacks_in_8667 .row:after {
  content: " ";
  display: table; }

#stacks_in_8667 .row:after {
  clear: both; }

#stacks_in_8667 .row.collapse > .column,
#stacks_in_8667 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8667 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8667 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8667 .row .row:before,
#stacks_in_8667 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8667 .row .row:after {
  clear: both; }

#stacks_in_8667 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8667 .row .row.collapse:before,
#stacks_in_8667 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8667 .row .row.collapse:after {
  clear: both; }

#stacks_in_8667 .column,
#stacks_in_8667 .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_8667 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8667 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8667 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8667 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8667 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8667 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8667 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8667 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8667 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8667 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8667 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8667 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8667 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8667 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8667 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8667 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8667 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8667 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8667 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8667 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8667 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8667 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8667 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8667 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8667 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8667 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8667 .column,
  #stacks_in_8667 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8667 .small-1 {
    width: 8.33333%; }

  #stacks_in_8667 .small-2 {
    width: 16.66667%; }

  #stacks_in_8667 .small-3 {
    width: 25%; }

  #stacks_in_8667 .small-4 {
    width: 33.33333%; }

  #stacks_in_8667 .small-5 {
    width: 41.66667%; }

  #stacks_in_8667 .small-6 {
    width: 50%; }

  #stacks_in_8667 .small-7 {
    width: 58.33333%; }

  #stacks_in_8667 .small-8 {
    width: 66.66667%; }

  #stacks_in_8667 .small-9 {
    width: 75%; }

  #stacks_in_8667 .small-10 {
    width: 83.33333%; }

  #stacks_in_8667 .small-11 {
    width: 91.66667%; }

  #stacks_in_8667 .small-12 {
    width: 100%; }

  #stacks_in_8667 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8667 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8667 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8667 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8667 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8667 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8667 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8667 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8667 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8667 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8667 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8667 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8667 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8667 .column.small-centered,
  #stacks_in_8667 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8667 .column.small-uncentered,
  #stacks_in_8667 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8667 .column.small-centered:last-child,
  #stacks_in_8667 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8667 .column.small-uncentered:last-child,
  #stacks_in_8667 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8667 .column.small-uncentered.opposite,
  #stacks_in_8667 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8667 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8667 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8667 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8667 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8667 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8667 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8667 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8667 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8667 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8667 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8667 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8667 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8667 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8667 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8667 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8667 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8667 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8667 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8667 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8667 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8667 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8667 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8667 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8667 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8667 .column,
  #stacks_in_8667 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8667 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8667 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8667 .medium-3 {
    width: 25%; }

  #stacks_in_8667 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8667 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8667 .medium-6 {
    width: 50%; }

  #stacks_in_8667 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8667 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8667 .medium-9 {
    width: 75%; }

  #stacks_in_8667 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8667 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8667 .medium-12 {
    width: 100%; }

  #stacks_in_8667 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8667 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8667 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8667 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8667 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8667 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8667 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8667 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8667 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8667 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8667 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8667 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8667 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8667 .column.medium-centered,
  #stacks_in_8667 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8667 .column.medium-uncentered,
  #stacks_in_8667 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8667 .column.medium-centered:last-child,
  #stacks_in_8667 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8667 .column.medium-uncentered:last-child,
  #stacks_in_8667 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8667 .column.medium-uncentered.opposite,
  #stacks_in_8667 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8667 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8667 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8667 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8667 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8667 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8667 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8667 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8667 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8667 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8667 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8667 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8667 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8667 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8667 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8667 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8667 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8667 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8667 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8667 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8667 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8667 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8667 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8667 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8667 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8667 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8667 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8667 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8667 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8667 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8667 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8667 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8667 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8667 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8667 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8667 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8667 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8667 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8667 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8667 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8667 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8667 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8667 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8667 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8667 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8667 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8667 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8667 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8667 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8667 .column,
  #stacks_in_8667 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8667 .large-1 {
    width: 8.33333%; }

  #stacks_in_8667 .large-2 {
    width: 16.66667%; }

  #stacks_in_8667 .large-3 {
    width: 25%; }

  #stacks_in_8667 .large-4 {
    width: 33.33333%; }

  #stacks_in_8667 .large-5 {
    width: 41.66667%; }

  #stacks_in_8667 .large-6 {
    width: 50%; }

  #stacks_in_8667 .large-7 {
    width: 58.33333%; }

  #stacks_in_8667 .large-8 {
    width: 66.66667%; }

  #stacks_in_8667 .large-9 {
    width: 75%; }

  #stacks_in_8667 .large-10 {
    width: 83.33333%; }

  #stacks_in_8667 .large-11 {
    width: 91.66667%; }

  #stacks_in_8667 .large-12 {
    width: 100%; }

  #stacks_in_8667 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8667 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8667 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8667 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8667 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8667 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8667 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8667 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8667 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8667 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8667 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8667 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8667 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8667 .column.large-centered,
  #stacks_in_8667 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8667 .column.large-uncentered,
  #stacks_in_8667 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8667 .column.large-centered:last-child,
  #stacks_in_8667 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8667 .column.large-uncentered:last-child,
  #stacks_in_8667 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8667 .column.large-uncentered.opposite,
  #stacks_in_8667 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8667 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8667 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8667 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8667 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8667 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8667 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8667 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8667 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8667 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8667 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8667 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8667 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8667 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8667 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8667 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8667 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8667 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8667 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8667 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8667 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8667 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8667 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8667 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8667 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8667 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8667 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8667 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8667 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8667 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8667 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8667 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8667 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8667 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8667 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8667 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8667 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8667 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8667 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8667 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8667 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8667 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8667 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8680{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8680overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8680leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8680leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8680leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8680leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8680posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8680rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8680rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8680theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8680overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8680leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8680leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8680leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8680leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8680rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8680rightcolContent{		margin: auto;	}}	.stacks_in_8680posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8680posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8680posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8680posterWrapper img:hover{	cursor: pointer;}.stacks_in_8680rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8680 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_8669 *,
#stacks_in_8669 *:before,
#stacks_in_8669 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8671 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8673 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8674 {
	font-weight: bold;
}

#stacks_in_8675 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8676 {
	font-size: 90%;
}

#stacks_in_8677 {
	margin:  7px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8678 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9037 .stacks_in_9037-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9037 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9037 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9037 .stacks_in_9037-button,
#stacks_in_9037 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9037 {
		text-align: center;
	}

	#stacks_in_9037 .stacks_in_9037-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9037 a.stacks_in_9037-button, #stacks_in_9037 a.stacks_in_9037-button:visited, #stacks_in_9037 a.stacks_in_9037-button:hover, #stacks_in_9037 a.stacks_in_9037-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9037 .stacks_in_9037-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9037 a.stacks_in_9037-button, #stacks_in_9037 a.stacks_in_9037-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9037 a.stacks_in_9037-button:hover, #stacks_in_9037 a.stacks_in_9037-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9037 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9037 a.stacks_in_9037-button:hover .button_icon, #stacks_in_9037 a.stacks_in_9037-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9037 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_1300 article,
#stacks_in_1300 aside,
#stacks_in_1300 details,
#stacks_in_1300 figcaption,
#stacks_in_1300 figure,
#stacks_in_1300 footer,
#stacks_in_1300 header,
#stacks_in_1300 hgroup,
#stacks_in_1300 main,
#stacks_in_1300 nav,
#stacks_in_1300 section,
#stacks_in_1300 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_1300 audio,
#stacks_in_1300 canvas,
#stacks_in_1300 progress,
#stacks_in_1300 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_1300 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_1300 [hidden],
#stacks_in_1300 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_1300 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_1300 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_1300 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_1300 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_1300 code,
#stacks_in_1300 kbd,
#stacks_in_1300 pre,
#stacks_in_1300 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_1300 *,
#stacks_in_1300 *:before,
#stacks_in_1300 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_1300 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_1300 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_1300 .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_1300 .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_1300 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_1300 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_1300 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_1300 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_1300 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_1300 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_1300 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_1300 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_1300 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_1300 *,
#stacks_in_1300 *:before,
#stacks_in_1300 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_1300 .left {
  float: left !important; }

#stacks_in_1300 .right {
  float: right !important; }

#stacks_in_1300 .clearfix:before,
#stacks_in_1300 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_1300 .clearfix:after {
  clear: both; }

#stacks_in_1300 .hide {
  display: none; }

#stacks_in_1300 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_1300 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_1300 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_1300 select {
  width: 100%; }

#stacks_in_1300 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_1300 .row:before,
#stacks_in_1300 .row:after {
  content: " ";
  display: table; }

#stacks_in_1300 .row:after {
  clear: both; }

#stacks_in_1300 .row.collapse > .column,
#stacks_in_1300 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_1300 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_1300 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_1300 .row .row:before,
#stacks_in_1300 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_1300 .row .row:after {
  clear: both; }

#stacks_in_1300 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_1300 .row .row.collapse:before,
#stacks_in_1300 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_1300 .row .row.collapse:after {
  clear: both; }

#stacks_in_1300 .column,
#stacks_in_1300 .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_1300 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_1300 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_1300 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_1300 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_1300 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_1300 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_1300 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_1300 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_1300 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_1300 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_1300 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_1300 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_1300 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_1300 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_1300 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_1300 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_1300 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_1300 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_1300 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_1300 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_1300 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_1300 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_1300 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_1300 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_1300 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_1300 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_1300 .column,
  #stacks_in_1300 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_1300 .small-1 {
    width: 8.33333%; }

  #stacks_in_1300 .small-2 {
    width: 16.66667%; }

  #stacks_in_1300 .small-3 {
    width: 25%; }

  #stacks_in_1300 .small-4 {
    width: 33.33333%; }

  #stacks_in_1300 .small-5 {
    width: 41.66667%; }

  #stacks_in_1300 .small-6 {
    width: 50%; }

  #stacks_in_1300 .small-7 {
    width: 58.33333%; }

  #stacks_in_1300 .small-8 {
    width: 66.66667%; }

  #stacks_in_1300 .small-9 {
    width: 75%; }

  #stacks_in_1300 .small-10 {
    width: 83.33333%; }

  #stacks_in_1300 .small-11 {
    width: 91.66667%; }

  #stacks_in_1300 .small-12 {
    width: 100%; }

  #stacks_in_1300 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_1300 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_1300 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_1300 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_1300 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_1300 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_1300 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_1300 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_1300 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_1300 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_1300 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_1300 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_1300 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_1300 .column.small-centered,
  #stacks_in_1300 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_1300 .column.small-uncentered,
  #stacks_in_1300 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_1300 .column.small-centered:last-child,
  #stacks_in_1300 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_1300 .column.small-uncentered:last-child,
  #stacks_in_1300 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_1300 .column.small-uncentered.opposite,
  #stacks_in_1300 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_1300 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_1300 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_1300 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_1300 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_1300 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_1300 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_1300 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_1300 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_1300 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_1300 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_1300 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_1300 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_1300 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_1300 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_1300 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_1300 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_1300 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_1300 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_1300 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_1300 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_1300 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_1300 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_1300 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_1300 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_1300 .column,
  #stacks_in_1300 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_1300 .medium-1 {
    width: 8.33333%; }

  #stacks_in_1300 .medium-2 {
    width: 16.66667%; }

  #stacks_in_1300 .medium-3 {
    width: 25%; }

  #stacks_in_1300 .medium-4 {
    width: 33.33333%; }

  #stacks_in_1300 .medium-5 {
    width: 41.66667%; }

  #stacks_in_1300 .medium-6 {
    width: 50%; }

  #stacks_in_1300 .medium-7 {
    width: 58.33333%; }

  #stacks_in_1300 .medium-8 {
    width: 66.66667%; }

  #stacks_in_1300 .medium-9 {
    width: 75%; }

  #stacks_in_1300 .medium-10 {
    width: 83.33333%; }

  #stacks_in_1300 .medium-11 {
    width: 91.66667%; }

  #stacks_in_1300 .medium-12 {
    width: 100%; }

  #stacks_in_1300 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_1300 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_1300 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_1300 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_1300 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_1300 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_1300 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_1300 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_1300 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_1300 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_1300 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_1300 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_1300 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_1300 .column.medium-centered,
  #stacks_in_1300 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_1300 .column.medium-uncentered,
  #stacks_in_1300 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_1300 .column.medium-centered:last-child,
  #stacks_in_1300 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_1300 .column.medium-uncentered:last-child,
  #stacks_in_1300 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_1300 .column.medium-uncentered.opposite,
  #stacks_in_1300 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_1300 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_1300 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_1300 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_1300 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_1300 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_1300 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_1300 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_1300 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_1300 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_1300 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_1300 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_1300 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_1300 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_1300 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_1300 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_1300 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_1300 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_1300 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_1300 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_1300 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_1300 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_1300 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_1300 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_1300 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_1300 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_1300 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_1300 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_1300 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_1300 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_1300 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_1300 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_1300 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_1300 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_1300 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_1300 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_1300 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_1300 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_1300 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_1300 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_1300 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_1300 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_1300 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_1300 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_1300 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_1300 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_1300 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_1300 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_1300 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_1300 .column,
  #stacks_in_1300 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_1300 .large-1 {
    width: 8.33333%; }

  #stacks_in_1300 .large-2 {
    width: 16.66667%; }

  #stacks_in_1300 .large-3 {
    width: 25%; }

  #stacks_in_1300 .large-4 {
    width: 33.33333%; }

  #stacks_in_1300 .large-5 {
    width: 41.66667%; }

  #stacks_in_1300 .large-6 {
    width: 50%; }

  #stacks_in_1300 .large-7 {
    width: 58.33333%; }

  #stacks_in_1300 .large-8 {
    width: 66.66667%; }

  #stacks_in_1300 .large-9 {
    width: 75%; }

  #stacks_in_1300 .large-10 {
    width: 83.33333%; }

  #stacks_in_1300 .large-11 {
    width: 91.66667%; }

  #stacks_in_1300 .large-12 {
    width: 100%; }

  #stacks_in_1300 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_1300 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_1300 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_1300 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_1300 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_1300 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_1300 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_1300 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_1300 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_1300 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_1300 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_1300 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_1300 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_1300 .column.large-centered,
  #stacks_in_1300 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_1300 .column.large-uncentered,
  #stacks_in_1300 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_1300 .column.large-centered:last-child,
  #stacks_in_1300 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_1300 .column.large-uncentered:last-child,
  #stacks_in_1300 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_1300 .column.large-uncentered.opposite,
  #stacks_in_1300 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_1300 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_1300 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_1300 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_1300 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_1300 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_1300 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_1300 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_1300 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_1300 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_1300 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_1300 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_1300 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_1300 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_1300 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_1300 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_1300 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_1300 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_1300 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_1300 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_1300 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_1300 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_1300 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_1300 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_1300 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_1300 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_1300 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_1300 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_1300 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_1300 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_1300 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_1300 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_1300 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_1300 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_1300 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_1300 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_1300 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_1300 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_1300 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_1300 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_1300 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_1300 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_1300 {
	margin: 50px 0px 20px 0px;
}
#stacks_in_1491 *,
#stacks_in_1491 *:before,
#stacks_in_1491 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1302 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 6px 0px 6px;
}

#stacks_in_1304 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_1305 {
	font-weight: bold;
}

#stacks_in_1306 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_1307 {
	font-size: 90%;
}

#stacks_in_8611 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8612 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9038 .stacks_in_9038-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9038 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9038 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9038 .stacks_in_9038-button,
#stacks_in_9038 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9038 {
		text-align: center;
	}

	#stacks_in_9038 .stacks_in_9038-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9038 a.stacks_in_9038-button, #stacks_in_9038 a.stacks_in_9038-button:visited, #stacks_in_9038 a.stacks_in_9038-button:hover, #stacks_in_9038 a.stacks_in_9038-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9038 .stacks_in_9038-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9038 a.stacks_in_9038-button, #stacks_in_9038 a.stacks_in_9038-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9038 a.stacks_in_9038-button:hover, #stacks_in_9038 a.stacks_in_9038-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9038 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9038 a.stacks_in_9038-button:hover .button_icon, #stacks_in_9038 a.stacks_in_9038-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9038 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8599{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8599overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8599leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8599leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8599leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8599leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8599posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8599rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8599rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8599theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8599overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8599leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8599leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8599leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8599leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8599rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8599rightcolContent{		margin: auto;	}}	.stacks_in_8599posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8599posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8599posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8599posterWrapper img:hover{	cursor: pointer;}.stacks_in_8599rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8599 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
}
/* ********* */
/* 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_8897 article,
#stacks_in_8897 aside,
#stacks_in_8897 details,
#stacks_in_8897 figcaption,
#stacks_in_8897 figure,
#stacks_in_8897 footer,
#stacks_in_8897 header,
#stacks_in_8897 hgroup,
#stacks_in_8897 main,
#stacks_in_8897 nav,
#stacks_in_8897 section,
#stacks_in_8897 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_8897 audio,
#stacks_in_8897 canvas,
#stacks_in_8897 progress,
#stacks_in_8897 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_8897 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_8897 [hidden],
#stacks_in_8897 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8897 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8897 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8897 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8897 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8897 code,
#stacks_in_8897 kbd,
#stacks_in_8897 pre,
#stacks_in_8897 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8897 *,
#stacks_in_8897 *:before,
#stacks_in_8897 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8897 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8897 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8897 .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_8897 .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_8897 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8897 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_8897 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8897 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8897 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8897 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8897 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8897 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8897 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8897 *,
#stacks_in_8897 *:before,
#stacks_in_8897 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8897 .left {
  float: left !important; }

#stacks_in_8897 .right {
  float: right !important; }

#stacks_in_8897 .clearfix:before,
#stacks_in_8897 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8897 .clearfix:after {
  clear: both; }

#stacks_in_8897 .hide {
  display: none; }

#stacks_in_8897 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8897 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8897 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8897 select {
  width: 100%; }

#stacks_in_8897 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8897 .row:before,
#stacks_in_8897 .row:after {
  content: " ";
  display: table; }

#stacks_in_8897 .row:after {
  clear: both; }

#stacks_in_8897 .row.collapse > .column,
#stacks_in_8897 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8897 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8897 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8897 .row .row:before,
#stacks_in_8897 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8897 .row .row:after {
  clear: both; }

#stacks_in_8897 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8897 .row .row.collapse:before,
#stacks_in_8897 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8897 .row .row.collapse:after {
  clear: both; }

#stacks_in_8897 .column,
#stacks_in_8897 .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_8897 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8897 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8897 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8897 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8897 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8897 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8897 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8897 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8897 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8897 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8897 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8897 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8897 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8897 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8897 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8897 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8897 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8897 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8897 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8897 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8897 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8897 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8897 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8897 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8897 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8897 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8897 .column,
  #stacks_in_8897 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8897 .small-1 {
    width: 8.33333%; }

  #stacks_in_8897 .small-2 {
    width: 16.66667%; }

  #stacks_in_8897 .small-3 {
    width: 25%; }

  #stacks_in_8897 .small-4 {
    width: 33.33333%; }

  #stacks_in_8897 .small-5 {
    width: 41.66667%; }

  #stacks_in_8897 .small-6 {
    width: 50%; }

  #stacks_in_8897 .small-7 {
    width: 58.33333%; }

  #stacks_in_8897 .small-8 {
    width: 66.66667%; }

  #stacks_in_8897 .small-9 {
    width: 75%; }

  #stacks_in_8897 .small-10 {
    width: 83.33333%; }

  #stacks_in_8897 .small-11 {
    width: 91.66667%; }

  #stacks_in_8897 .small-12 {
    width: 100%; }

  #stacks_in_8897 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8897 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8897 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8897 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8897 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8897 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8897 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8897 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8897 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8897 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8897 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8897 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8897 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8897 .column.small-centered,
  #stacks_in_8897 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8897 .column.small-uncentered,
  #stacks_in_8897 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8897 .column.small-centered:last-child,
  #stacks_in_8897 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8897 .column.small-uncentered:last-child,
  #stacks_in_8897 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8897 .column.small-uncentered.opposite,
  #stacks_in_8897 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8897 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8897 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8897 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8897 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8897 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8897 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8897 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8897 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8897 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8897 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8897 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8897 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8897 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8897 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8897 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8897 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8897 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8897 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8897 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8897 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8897 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8897 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8897 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8897 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8897 .column,
  #stacks_in_8897 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8897 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8897 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8897 .medium-3 {
    width: 25%; }

  #stacks_in_8897 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8897 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8897 .medium-6 {
    width: 50%; }

  #stacks_in_8897 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8897 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8897 .medium-9 {
    width: 75%; }

  #stacks_in_8897 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8897 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8897 .medium-12 {
    width: 100%; }

  #stacks_in_8897 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8897 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8897 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8897 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8897 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8897 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8897 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8897 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8897 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8897 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8897 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8897 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8897 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8897 .column.medium-centered,
  #stacks_in_8897 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8897 .column.medium-uncentered,
  #stacks_in_8897 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8897 .column.medium-centered:last-child,
  #stacks_in_8897 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8897 .column.medium-uncentered:last-child,
  #stacks_in_8897 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8897 .column.medium-uncentered.opposite,
  #stacks_in_8897 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8897 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8897 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8897 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8897 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8897 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8897 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8897 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8897 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8897 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8897 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8897 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8897 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8897 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8897 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8897 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8897 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8897 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8897 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8897 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8897 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8897 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8897 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8897 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8897 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8897 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8897 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8897 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8897 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8897 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8897 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8897 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8897 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8897 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8897 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8897 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8897 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8897 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8897 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8897 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8897 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8897 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8897 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8897 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8897 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8897 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8897 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8897 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8897 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8897 .column,
  #stacks_in_8897 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8897 .large-1 {
    width: 8.33333%; }

  #stacks_in_8897 .large-2 {
    width: 16.66667%; }

  #stacks_in_8897 .large-3 {
    width: 25%; }

  #stacks_in_8897 .large-4 {
    width: 33.33333%; }

  #stacks_in_8897 .large-5 {
    width: 41.66667%; }

  #stacks_in_8897 .large-6 {
    width: 50%; }

  #stacks_in_8897 .large-7 {
    width: 58.33333%; }

  #stacks_in_8897 .large-8 {
    width: 66.66667%; }

  #stacks_in_8897 .large-9 {
    width: 75%; }

  #stacks_in_8897 .large-10 {
    width: 83.33333%; }

  #stacks_in_8897 .large-11 {
    width: 91.66667%; }

  #stacks_in_8897 .large-12 {
    width: 100%; }

  #stacks_in_8897 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8897 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8897 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8897 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8897 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8897 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8897 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8897 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8897 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8897 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8897 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8897 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8897 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8897 .column.large-centered,
  #stacks_in_8897 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8897 .column.large-uncentered,
  #stacks_in_8897 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8897 .column.large-centered:last-child,
  #stacks_in_8897 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8897 .column.large-uncentered:last-child,
  #stacks_in_8897 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8897 .column.large-uncentered.opposite,
  #stacks_in_8897 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8897 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8897 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8897 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8897 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8897 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8897 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8897 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8897 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8897 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8897 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8897 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8897 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8897 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8897 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8897 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8897 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8897 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8897 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8897 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8897 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8897 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8897 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8897 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8897 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8897 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8897 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8897 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8897 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8897 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8897 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8897 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8897 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8897 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8897 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8897 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8897 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8897 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8897 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8897 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8897 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8897 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8897 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8910{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8910overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8910leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8910leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8910leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8910leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8910posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8910rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8910rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8910theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8910overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8910leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8910leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8910leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8910leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8910rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8910rightcolContent{		margin: auto;	}}	.stacks_in_8910posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8910posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8910posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8910posterWrapper img:hover{	cursor: pointer;}.stacks_in_8910rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8910 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
}
#stacks_in_8899 *,
#stacks_in_8899 *:before,
#stacks_in_8899 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8901 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8903 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8904 {
	font-weight: bold;
}

#stacks_in_8905 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8906 {
	font-size: 90%;
}

#stacks_in_8907 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8908 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9039 .stacks_in_9039-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9039 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9039 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9039 .stacks_in_9039-button,
#stacks_in_9039 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9039 {
		text-align: center;
	}

	#stacks_in_9039 .stacks_in_9039-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9039 a.stacks_in_9039-button, #stacks_in_9039 a.stacks_in_9039-button:visited, #stacks_in_9039 a.stacks_in_9039-button:hover, #stacks_in_9039 a.stacks_in_9039-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9039 .stacks_in_9039-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9039 a.stacks_in_9039-button, #stacks_in_9039 a.stacks_in_9039-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9039 a.stacks_in_9039-button:hover, #stacks_in_9039 a.stacks_in_9039-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9039 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9039 a.stacks_in_9039-button:hover .button_icon, #stacks_in_9039 a.stacks_in_9039-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9039 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_8742 article,
#stacks_in_8742 aside,
#stacks_in_8742 details,
#stacks_in_8742 figcaption,
#stacks_in_8742 figure,
#stacks_in_8742 footer,
#stacks_in_8742 header,
#stacks_in_8742 hgroup,
#stacks_in_8742 main,
#stacks_in_8742 nav,
#stacks_in_8742 section,
#stacks_in_8742 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_8742 audio,
#stacks_in_8742 canvas,
#stacks_in_8742 progress,
#stacks_in_8742 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_8742 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_8742 [hidden],
#stacks_in_8742 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8742 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8742 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8742 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8742 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8742 code,
#stacks_in_8742 kbd,
#stacks_in_8742 pre,
#stacks_in_8742 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8742 *,
#stacks_in_8742 *:before,
#stacks_in_8742 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8742 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8742 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8742 .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_8742 .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_8742 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8742 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_8742 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8742 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8742 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8742 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8742 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8742 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8742 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8742 *,
#stacks_in_8742 *:before,
#stacks_in_8742 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8742 .left {
  float: left !important; }

#stacks_in_8742 .right {
  float: right !important; }

#stacks_in_8742 .clearfix:before,
#stacks_in_8742 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8742 .clearfix:after {
  clear: both; }

#stacks_in_8742 .hide {
  display: none; }

#stacks_in_8742 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8742 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8742 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8742 select {
  width: 100%; }

#stacks_in_8742 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8742 .row:before,
#stacks_in_8742 .row:after {
  content: " ";
  display: table; }

#stacks_in_8742 .row:after {
  clear: both; }

#stacks_in_8742 .row.collapse > .column,
#stacks_in_8742 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8742 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8742 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8742 .row .row:before,
#stacks_in_8742 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8742 .row .row:after {
  clear: both; }

#stacks_in_8742 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8742 .row .row.collapse:before,
#stacks_in_8742 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8742 .row .row.collapse:after {
  clear: both; }

#stacks_in_8742 .column,
#stacks_in_8742 .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_8742 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8742 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8742 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8742 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8742 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8742 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8742 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8742 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8742 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8742 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8742 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8742 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8742 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8742 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8742 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8742 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8742 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8742 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8742 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8742 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8742 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8742 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8742 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8742 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8742 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8742 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8742 .column,
  #stacks_in_8742 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8742 .small-1 {
    width: 8.33333%; }

  #stacks_in_8742 .small-2 {
    width: 16.66667%; }

  #stacks_in_8742 .small-3 {
    width: 25%; }

  #stacks_in_8742 .small-4 {
    width: 33.33333%; }

  #stacks_in_8742 .small-5 {
    width: 41.66667%; }

  #stacks_in_8742 .small-6 {
    width: 50%; }

  #stacks_in_8742 .small-7 {
    width: 58.33333%; }

  #stacks_in_8742 .small-8 {
    width: 66.66667%; }

  #stacks_in_8742 .small-9 {
    width: 75%; }

  #stacks_in_8742 .small-10 {
    width: 83.33333%; }

  #stacks_in_8742 .small-11 {
    width: 91.66667%; }

  #stacks_in_8742 .small-12 {
    width: 100%; }

  #stacks_in_8742 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8742 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8742 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8742 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8742 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8742 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8742 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8742 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8742 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8742 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8742 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8742 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8742 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8742 .column.small-centered,
  #stacks_in_8742 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8742 .column.small-uncentered,
  #stacks_in_8742 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8742 .column.small-centered:last-child,
  #stacks_in_8742 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8742 .column.small-uncentered:last-child,
  #stacks_in_8742 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8742 .column.small-uncentered.opposite,
  #stacks_in_8742 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8742 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8742 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8742 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8742 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8742 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8742 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8742 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8742 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8742 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8742 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8742 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8742 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8742 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8742 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8742 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8742 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8742 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8742 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8742 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8742 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8742 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8742 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8742 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8742 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8742 .column,
  #stacks_in_8742 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8742 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8742 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8742 .medium-3 {
    width: 25%; }

  #stacks_in_8742 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8742 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8742 .medium-6 {
    width: 50%; }

  #stacks_in_8742 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8742 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8742 .medium-9 {
    width: 75%; }

  #stacks_in_8742 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8742 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8742 .medium-12 {
    width: 100%; }

  #stacks_in_8742 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8742 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8742 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8742 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8742 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8742 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8742 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8742 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8742 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8742 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8742 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8742 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8742 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8742 .column.medium-centered,
  #stacks_in_8742 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8742 .column.medium-uncentered,
  #stacks_in_8742 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8742 .column.medium-centered:last-child,
  #stacks_in_8742 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8742 .column.medium-uncentered:last-child,
  #stacks_in_8742 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8742 .column.medium-uncentered.opposite,
  #stacks_in_8742 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8742 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8742 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8742 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8742 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8742 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8742 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8742 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8742 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8742 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8742 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8742 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8742 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8742 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8742 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8742 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8742 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8742 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8742 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8742 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8742 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8742 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8742 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8742 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8742 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8742 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8742 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8742 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8742 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8742 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8742 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8742 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8742 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8742 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8742 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8742 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8742 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8742 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8742 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8742 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8742 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8742 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8742 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8742 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8742 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8742 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8742 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8742 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8742 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8742 .column,
  #stacks_in_8742 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8742 .large-1 {
    width: 8.33333%; }

  #stacks_in_8742 .large-2 {
    width: 16.66667%; }

  #stacks_in_8742 .large-3 {
    width: 25%; }

  #stacks_in_8742 .large-4 {
    width: 33.33333%; }

  #stacks_in_8742 .large-5 {
    width: 41.66667%; }

  #stacks_in_8742 .large-6 {
    width: 50%; }

  #stacks_in_8742 .large-7 {
    width: 58.33333%; }

  #stacks_in_8742 .large-8 {
    width: 66.66667%; }

  #stacks_in_8742 .large-9 {
    width: 75%; }

  #stacks_in_8742 .large-10 {
    width: 83.33333%; }

  #stacks_in_8742 .large-11 {
    width: 91.66667%; }

  #stacks_in_8742 .large-12 {
    width: 100%; }

  #stacks_in_8742 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8742 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8742 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8742 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8742 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8742 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8742 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8742 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8742 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8742 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8742 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8742 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8742 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8742 .column.large-centered,
  #stacks_in_8742 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8742 .column.large-uncentered,
  #stacks_in_8742 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8742 .column.large-centered:last-child,
  #stacks_in_8742 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8742 .column.large-uncentered:last-child,
  #stacks_in_8742 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8742 .column.large-uncentered.opposite,
  #stacks_in_8742 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8742 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8742 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8742 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8742 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8742 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8742 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8742 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8742 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8742 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8742 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8742 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8742 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8742 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8742 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8742 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8742 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8742 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8742 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8742 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8742 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8742 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8742 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8742 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8742 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8742 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8742 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8742 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8742 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8742 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8742 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8742 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8742 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8742 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8742 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8742 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8742 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8742 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8742 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8742 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8742 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8742 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8742 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8761{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8761overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8761leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8761leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8761leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8761leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8761posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8761rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8761rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8761theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8761overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8761leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8761leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8761leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8761leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8761rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8761rightcolContent{		margin: auto;	}}	.stacks_in_8761posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8761posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8761posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8761posterWrapper img:hover{	cursor: pointer;}.stacks_in_8761rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */#stacks_in_8744 *,
#stacks_in_8744 *:before,
#stacks_in_8744 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8746 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8748 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8749 {
	font-weight: bold;
}

#stacks_in_8750 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8751 {
	font-size: 90%;
}

#stacks_in_8752 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8753 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9040 .stacks_in_9040-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9040 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9040 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9040 .stacks_in_9040-button,
#stacks_in_9040 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9040 {
		text-align: center;
	}

	#stacks_in_9040 .stacks_in_9040-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9040 a.stacks_in_9040-button, #stacks_in_9040 a.stacks_in_9040-button:visited, #stacks_in_9040 a.stacks_in_9040-button:hover, #stacks_in_9040 a.stacks_in_9040-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9040 .stacks_in_9040-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9040 a.stacks_in_9040-button, #stacks_in_9040 a.stacks_in_9040-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9040 a.stacks_in_9040-button:hover, #stacks_in_9040 a.stacks_in_9040-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9040 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9040 a.stacks_in_9040-button:hover .button_icon, #stacks_in_9040 a.stacks_in_9040-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9040 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_8792 article,
#stacks_in_8792 aside,
#stacks_in_8792 details,
#stacks_in_8792 figcaption,
#stacks_in_8792 figure,
#stacks_in_8792 footer,
#stacks_in_8792 header,
#stacks_in_8792 hgroup,
#stacks_in_8792 main,
#stacks_in_8792 nav,
#stacks_in_8792 section,
#stacks_in_8792 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_8792 audio,
#stacks_in_8792 canvas,
#stacks_in_8792 progress,
#stacks_in_8792 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_8792 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_8792 [hidden],
#stacks_in_8792 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8792 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8792 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8792 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8792 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8792 code,
#stacks_in_8792 kbd,
#stacks_in_8792 pre,
#stacks_in_8792 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8792 *,
#stacks_in_8792 *:before,
#stacks_in_8792 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8792 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8792 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8792 .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_8792 .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_8792 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8792 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_8792 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8792 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8792 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8792 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8792 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8792 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8792 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8792 *,
#stacks_in_8792 *:before,
#stacks_in_8792 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8792 .left {
  float: left !important; }

#stacks_in_8792 .right {
  float: right !important; }

#stacks_in_8792 .clearfix:before,
#stacks_in_8792 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8792 .clearfix:after {
  clear: both; }

#stacks_in_8792 .hide {
  display: none; }

#stacks_in_8792 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8792 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8792 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8792 select {
  width: 100%; }

#stacks_in_8792 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8792 .row:before,
#stacks_in_8792 .row:after {
  content: " ";
  display: table; }

#stacks_in_8792 .row:after {
  clear: both; }

#stacks_in_8792 .row.collapse > .column,
#stacks_in_8792 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8792 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8792 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8792 .row .row:before,
#stacks_in_8792 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8792 .row .row:after {
  clear: both; }

#stacks_in_8792 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8792 .row .row.collapse:before,
#stacks_in_8792 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8792 .row .row.collapse:after {
  clear: both; }

#stacks_in_8792 .column,
#stacks_in_8792 .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_8792 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8792 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8792 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8792 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8792 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8792 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8792 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8792 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8792 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8792 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8792 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8792 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8792 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8792 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8792 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8792 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8792 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8792 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8792 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8792 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8792 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8792 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8792 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8792 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8792 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8792 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8792 .column,
  #stacks_in_8792 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8792 .small-1 {
    width: 8.33333%; }

  #stacks_in_8792 .small-2 {
    width: 16.66667%; }

  #stacks_in_8792 .small-3 {
    width: 25%; }

  #stacks_in_8792 .small-4 {
    width: 33.33333%; }

  #stacks_in_8792 .small-5 {
    width: 41.66667%; }

  #stacks_in_8792 .small-6 {
    width: 50%; }

  #stacks_in_8792 .small-7 {
    width: 58.33333%; }

  #stacks_in_8792 .small-8 {
    width: 66.66667%; }

  #stacks_in_8792 .small-9 {
    width: 75%; }

  #stacks_in_8792 .small-10 {
    width: 83.33333%; }

  #stacks_in_8792 .small-11 {
    width: 91.66667%; }

  #stacks_in_8792 .small-12 {
    width: 100%; }

  #stacks_in_8792 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8792 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8792 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8792 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8792 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8792 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8792 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8792 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8792 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8792 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8792 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8792 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8792 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8792 .column.small-centered,
  #stacks_in_8792 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8792 .column.small-uncentered,
  #stacks_in_8792 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8792 .column.small-centered:last-child,
  #stacks_in_8792 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8792 .column.small-uncentered:last-child,
  #stacks_in_8792 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8792 .column.small-uncentered.opposite,
  #stacks_in_8792 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8792 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8792 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8792 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8792 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8792 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8792 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8792 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8792 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8792 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8792 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8792 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8792 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8792 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8792 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8792 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8792 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8792 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8792 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8792 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8792 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8792 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8792 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8792 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8792 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8792 .column,
  #stacks_in_8792 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8792 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8792 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8792 .medium-3 {
    width: 25%; }

  #stacks_in_8792 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8792 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8792 .medium-6 {
    width: 50%; }

  #stacks_in_8792 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8792 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8792 .medium-9 {
    width: 75%; }

  #stacks_in_8792 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8792 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8792 .medium-12 {
    width: 100%; }

  #stacks_in_8792 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8792 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8792 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8792 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8792 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8792 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8792 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8792 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8792 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8792 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8792 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8792 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8792 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8792 .column.medium-centered,
  #stacks_in_8792 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8792 .column.medium-uncentered,
  #stacks_in_8792 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8792 .column.medium-centered:last-child,
  #stacks_in_8792 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8792 .column.medium-uncentered:last-child,
  #stacks_in_8792 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8792 .column.medium-uncentered.opposite,
  #stacks_in_8792 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8792 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8792 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8792 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8792 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8792 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8792 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8792 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8792 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8792 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8792 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8792 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8792 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8792 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8792 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8792 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8792 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8792 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8792 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8792 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8792 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8792 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8792 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8792 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8792 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8792 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8792 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8792 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8792 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8792 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8792 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8792 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8792 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8792 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8792 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8792 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8792 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8792 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8792 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8792 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8792 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8792 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8792 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8792 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8792 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8792 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8792 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8792 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8792 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8792 .column,
  #stacks_in_8792 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8792 .large-1 {
    width: 8.33333%; }

  #stacks_in_8792 .large-2 {
    width: 16.66667%; }

  #stacks_in_8792 .large-3 {
    width: 25%; }

  #stacks_in_8792 .large-4 {
    width: 33.33333%; }

  #stacks_in_8792 .large-5 {
    width: 41.66667%; }

  #stacks_in_8792 .large-6 {
    width: 50%; }

  #stacks_in_8792 .large-7 {
    width: 58.33333%; }

  #stacks_in_8792 .large-8 {
    width: 66.66667%; }

  #stacks_in_8792 .large-9 {
    width: 75%; }

  #stacks_in_8792 .large-10 {
    width: 83.33333%; }

  #stacks_in_8792 .large-11 {
    width: 91.66667%; }

  #stacks_in_8792 .large-12 {
    width: 100%; }

  #stacks_in_8792 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8792 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8792 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8792 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8792 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8792 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8792 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8792 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8792 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8792 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8792 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8792 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8792 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8792 .column.large-centered,
  #stacks_in_8792 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8792 .column.large-uncentered,
  #stacks_in_8792 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8792 .column.large-centered:last-child,
  #stacks_in_8792 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8792 .column.large-uncentered:last-child,
  #stacks_in_8792 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8792 .column.large-uncentered.opposite,
  #stacks_in_8792 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8792 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8792 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8792 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8792 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8792 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8792 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8792 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8792 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8792 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8792 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8792 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8792 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8792 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8792 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8792 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8792 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8792 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8792 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8792 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8792 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8792 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8792 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8792 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8792 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8792 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8792 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8792 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8792 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8792 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8792 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8792 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8792 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8792 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8792 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8792 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8792 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8792 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8792 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8792 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8792 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8792 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8792 {
	margin: 50px 0px 20px 0px;
}
#stacks_in_8801 *,
#stacks_in_8801 *:before,
#stacks_in_8801 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8803 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8805 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8806 {
	font-weight: bold;
}

#stacks_in_8807 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8808 {
	font-size: 90%;
}

#stacks_in_8809 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8810 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9041 .stacks_in_9041-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9041 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9041 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9041 .stacks_in_9041-button,
#stacks_in_9041 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9041 {
		text-align: center;
	}

	#stacks_in_9041 .stacks_in_9041-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9041 a.stacks_in_9041-button, #stacks_in_9041 a.stacks_in_9041-button:visited, #stacks_in_9041 a.stacks_in_9041-button:hover, #stacks_in_9041 a.stacks_in_9041-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9041 .stacks_in_9041-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9041 a.stacks_in_9041-button, #stacks_in_9041 a.stacks_in_9041-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9041 a.stacks_in_9041-button:hover, #stacks_in_9041 a.stacks_in_9041-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9041 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9041 a.stacks_in_9041-button:hover .button_icon, #stacks_in_9041 a.stacks_in_9041-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9041 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8794{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8794overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8794leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8794leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8794leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8794leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8794posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8794rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8794rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8794theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8794overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8794leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8794leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8794leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8794leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8794rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8794rightcolContent{		margin: auto;	}}	.stacks_in_8794posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8794posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8794posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8794posterWrapper img:hover{	cursor: pointer;}.stacks_in_8794rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8794 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
/* ********* */
/* 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_8916 article,
#stacks_in_8916 aside,
#stacks_in_8916 details,
#stacks_in_8916 figcaption,
#stacks_in_8916 figure,
#stacks_in_8916 footer,
#stacks_in_8916 header,
#stacks_in_8916 hgroup,
#stacks_in_8916 main,
#stacks_in_8916 nav,
#stacks_in_8916 section,
#stacks_in_8916 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_8916 audio,
#stacks_in_8916 canvas,
#stacks_in_8916 progress,
#stacks_in_8916 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_8916 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_8916 [hidden],
#stacks_in_8916 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8916 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8916 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8916 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8916 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8916 code,
#stacks_in_8916 kbd,
#stacks_in_8916 pre,
#stacks_in_8916 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8916 *,
#stacks_in_8916 *:before,
#stacks_in_8916 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8916 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8916 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8916 .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_8916 .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_8916 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8916 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_8916 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8916 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8916 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8916 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8916 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8916 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8916 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8916 *,
#stacks_in_8916 *:before,
#stacks_in_8916 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8916 .left {
  float: left !important; }

#stacks_in_8916 .right {
  float: right !important; }

#stacks_in_8916 .clearfix:before,
#stacks_in_8916 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8916 .clearfix:after {
  clear: both; }

#stacks_in_8916 .hide {
  display: none; }

#stacks_in_8916 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8916 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8916 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8916 select {
  width: 100%; }

#stacks_in_8916 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8916 .row:before,
#stacks_in_8916 .row:after {
  content: " ";
  display: table; }

#stacks_in_8916 .row:after {
  clear: both; }

#stacks_in_8916 .row.collapse > .column,
#stacks_in_8916 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8916 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8916 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8916 .row .row:before,
#stacks_in_8916 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8916 .row .row:after {
  clear: both; }

#stacks_in_8916 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8916 .row .row.collapse:before,
#stacks_in_8916 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8916 .row .row.collapse:after {
  clear: both; }

#stacks_in_8916 .column,
#stacks_in_8916 .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_8916 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8916 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8916 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8916 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8916 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8916 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8916 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8916 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8916 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8916 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8916 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8916 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8916 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8916 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8916 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8916 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8916 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8916 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8916 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8916 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8916 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8916 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8916 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8916 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8916 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8916 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8916 .column,
  #stacks_in_8916 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8916 .small-1 {
    width: 8.33333%; }

  #stacks_in_8916 .small-2 {
    width: 16.66667%; }

  #stacks_in_8916 .small-3 {
    width: 25%; }

  #stacks_in_8916 .small-4 {
    width: 33.33333%; }

  #stacks_in_8916 .small-5 {
    width: 41.66667%; }

  #stacks_in_8916 .small-6 {
    width: 50%; }

  #stacks_in_8916 .small-7 {
    width: 58.33333%; }

  #stacks_in_8916 .small-8 {
    width: 66.66667%; }

  #stacks_in_8916 .small-9 {
    width: 75%; }

  #stacks_in_8916 .small-10 {
    width: 83.33333%; }

  #stacks_in_8916 .small-11 {
    width: 91.66667%; }

  #stacks_in_8916 .small-12 {
    width: 100%; }

  #stacks_in_8916 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8916 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8916 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8916 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8916 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8916 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8916 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8916 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8916 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8916 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8916 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8916 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8916 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8916 .column.small-centered,
  #stacks_in_8916 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8916 .column.small-uncentered,
  #stacks_in_8916 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8916 .column.small-centered:last-child,
  #stacks_in_8916 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8916 .column.small-uncentered:last-child,
  #stacks_in_8916 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8916 .column.small-uncentered.opposite,
  #stacks_in_8916 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8916 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8916 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8916 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8916 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8916 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8916 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8916 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8916 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8916 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8916 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8916 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8916 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8916 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8916 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8916 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8916 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8916 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8916 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8916 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8916 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8916 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8916 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8916 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8916 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8916 .column,
  #stacks_in_8916 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8916 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8916 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8916 .medium-3 {
    width: 25%; }

  #stacks_in_8916 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8916 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8916 .medium-6 {
    width: 50%; }

  #stacks_in_8916 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8916 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8916 .medium-9 {
    width: 75%; }

  #stacks_in_8916 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8916 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8916 .medium-12 {
    width: 100%; }

  #stacks_in_8916 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8916 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8916 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8916 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8916 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8916 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8916 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8916 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8916 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8916 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8916 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8916 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8916 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8916 .column.medium-centered,
  #stacks_in_8916 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8916 .column.medium-uncentered,
  #stacks_in_8916 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8916 .column.medium-centered:last-child,
  #stacks_in_8916 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8916 .column.medium-uncentered:last-child,
  #stacks_in_8916 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8916 .column.medium-uncentered.opposite,
  #stacks_in_8916 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8916 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8916 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8916 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8916 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8916 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8916 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8916 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8916 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8916 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8916 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8916 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8916 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8916 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8916 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8916 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8916 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8916 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8916 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8916 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8916 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8916 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8916 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8916 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8916 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8916 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8916 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8916 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8916 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8916 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8916 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8916 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8916 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8916 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8916 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8916 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8916 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8916 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8916 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8916 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8916 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8916 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8916 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8916 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8916 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8916 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8916 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8916 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8916 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8916 .column,
  #stacks_in_8916 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8916 .large-1 {
    width: 8.33333%; }

  #stacks_in_8916 .large-2 {
    width: 16.66667%; }

  #stacks_in_8916 .large-3 {
    width: 25%; }

  #stacks_in_8916 .large-4 {
    width: 33.33333%; }

  #stacks_in_8916 .large-5 {
    width: 41.66667%; }

  #stacks_in_8916 .large-6 {
    width: 50%; }

  #stacks_in_8916 .large-7 {
    width: 58.33333%; }

  #stacks_in_8916 .large-8 {
    width: 66.66667%; }

  #stacks_in_8916 .large-9 {
    width: 75%; }

  #stacks_in_8916 .large-10 {
    width: 83.33333%; }

  #stacks_in_8916 .large-11 {
    width: 91.66667%; }

  #stacks_in_8916 .large-12 {
    width: 100%; }

  #stacks_in_8916 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8916 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8916 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8916 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8916 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8916 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8916 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8916 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8916 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8916 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8916 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8916 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8916 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8916 .column.large-centered,
  #stacks_in_8916 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8916 .column.large-uncentered,
  #stacks_in_8916 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8916 .column.large-centered:last-child,
  #stacks_in_8916 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8916 .column.large-uncentered:last-child,
  #stacks_in_8916 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8916 .column.large-uncentered.opposite,
  #stacks_in_8916 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8916 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8916 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8916 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8916 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8916 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8916 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8916 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8916 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8916 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8916 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8916 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8916 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8916 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8916 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8916 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8916 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8916 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8916 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8916 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8916 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8916 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8916 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8916 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8916 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8916 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8916 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8916 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8916 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8916 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8916 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8916 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8916 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8916 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8916 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8916 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8916 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8916 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8916 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8916 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8916 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8916 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8916 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8929{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8929overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8929leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8929leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8929leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8929leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8929posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8929rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8929rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8929theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8929overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8929leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8929leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8929leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8929leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8929rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8929rightcolContent{		margin: auto;	}}	.stacks_in_8929posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8929posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8929posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8929posterWrapper img:hover{	cursor: pointer;}.stacks_in_8929rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8929 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_8918 *,
#stacks_in_8918 *:before,
#stacks_in_8918 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8920 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8922 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8923 {
	font-weight: bold;
}

#stacks_in_8924 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8925 {
	font-size: 90%;
}

#stacks_in_8926 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8927 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9042 .stacks_in_9042-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9042 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9042 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9042 .stacks_in_9042-button,
#stacks_in_9042 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9042 {
		text-align: center;
	}

	#stacks_in_9042 .stacks_in_9042-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9042 a.stacks_in_9042-button, #stacks_in_9042 a.stacks_in_9042-button:visited, #stacks_in_9042 a.stacks_in_9042-button:hover, #stacks_in_9042 a.stacks_in_9042-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9042 .stacks_in_9042-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9042 a.stacks_in_9042-button, #stacks_in_9042 a.stacks_in_9042-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9042 a.stacks_in_9042-button:hover, #stacks_in_9042 a.stacks_in_9042-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9042 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9042 a.stacks_in_9042-button:hover .button_icon, #stacks_in_9042 a.stacks_in_9042-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9042 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_8851 article,
#stacks_in_8851 aside,
#stacks_in_8851 details,
#stacks_in_8851 figcaption,
#stacks_in_8851 figure,
#stacks_in_8851 footer,
#stacks_in_8851 header,
#stacks_in_8851 hgroup,
#stacks_in_8851 main,
#stacks_in_8851 nav,
#stacks_in_8851 section,
#stacks_in_8851 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_8851 audio,
#stacks_in_8851 canvas,
#stacks_in_8851 progress,
#stacks_in_8851 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_8851 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_8851 [hidden],
#stacks_in_8851 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8851 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8851 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8851 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8851 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8851 code,
#stacks_in_8851 kbd,
#stacks_in_8851 pre,
#stacks_in_8851 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8851 *,
#stacks_in_8851 *:before,
#stacks_in_8851 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8851 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8851 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8851 .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_8851 .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_8851 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8851 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_8851 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8851 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8851 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8851 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8851 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8851 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8851 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8851 *,
#stacks_in_8851 *:before,
#stacks_in_8851 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8851 .left {
  float: left !important; }

#stacks_in_8851 .right {
  float: right !important; }

#stacks_in_8851 .clearfix:before,
#stacks_in_8851 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8851 .clearfix:after {
  clear: both; }

#stacks_in_8851 .hide {
  display: none; }

#stacks_in_8851 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8851 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8851 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8851 select {
  width: 100%; }

#stacks_in_8851 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8851 .row:before,
#stacks_in_8851 .row:after {
  content: " ";
  display: table; }

#stacks_in_8851 .row:after {
  clear: both; }

#stacks_in_8851 .row.collapse > .column,
#stacks_in_8851 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8851 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8851 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8851 .row .row:before,
#stacks_in_8851 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8851 .row .row:after {
  clear: both; }

#stacks_in_8851 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8851 .row .row.collapse:before,
#stacks_in_8851 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8851 .row .row.collapse:after {
  clear: both; }

#stacks_in_8851 .column,
#stacks_in_8851 .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_8851 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8851 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8851 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8851 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8851 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8851 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8851 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8851 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8851 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8851 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8851 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8851 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8851 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8851 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8851 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8851 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8851 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8851 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8851 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8851 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8851 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8851 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8851 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8851 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8851 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8851 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8851 .column,
  #stacks_in_8851 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8851 .small-1 {
    width: 8.33333%; }

  #stacks_in_8851 .small-2 {
    width: 16.66667%; }

  #stacks_in_8851 .small-3 {
    width: 25%; }

  #stacks_in_8851 .small-4 {
    width: 33.33333%; }

  #stacks_in_8851 .small-5 {
    width: 41.66667%; }

  #stacks_in_8851 .small-6 {
    width: 50%; }

  #stacks_in_8851 .small-7 {
    width: 58.33333%; }

  #stacks_in_8851 .small-8 {
    width: 66.66667%; }

  #stacks_in_8851 .small-9 {
    width: 75%; }

  #stacks_in_8851 .small-10 {
    width: 83.33333%; }

  #stacks_in_8851 .small-11 {
    width: 91.66667%; }

  #stacks_in_8851 .small-12 {
    width: 100%; }

  #stacks_in_8851 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8851 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8851 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8851 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8851 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8851 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8851 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8851 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8851 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8851 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8851 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8851 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8851 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8851 .column.small-centered,
  #stacks_in_8851 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8851 .column.small-uncentered,
  #stacks_in_8851 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8851 .column.small-centered:last-child,
  #stacks_in_8851 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8851 .column.small-uncentered:last-child,
  #stacks_in_8851 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8851 .column.small-uncentered.opposite,
  #stacks_in_8851 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8851 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8851 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8851 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8851 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8851 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8851 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8851 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8851 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8851 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8851 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8851 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8851 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8851 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8851 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8851 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8851 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8851 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8851 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8851 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8851 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8851 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8851 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8851 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8851 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8851 .column,
  #stacks_in_8851 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8851 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8851 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8851 .medium-3 {
    width: 25%; }

  #stacks_in_8851 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8851 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8851 .medium-6 {
    width: 50%; }

  #stacks_in_8851 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8851 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8851 .medium-9 {
    width: 75%; }

  #stacks_in_8851 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8851 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8851 .medium-12 {
    width: 100%; }

  #stacks_in_8851 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8851 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8851 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8851 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8851 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8851 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8851 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8851 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8851 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8851 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8851 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8851 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8851 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8851 .column.medium-centered,
  #stacks_in_8851 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8851 .column.medium-uncentered,
  #stacks_in_8851 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8851 .column.medium-centered:last-child,
  #stacks_in_8851 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8851 .column.medium-uncentered:last-child,
  #stacks_in_8851 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8851 .column.medium-uncentered.opposite,
  #stacks_in_8851 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8851 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8851 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8851 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8851 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8851 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8851 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8851 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8851 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8851 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8851 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8851 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8851 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8851 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8851 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8851 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8851 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8851 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8851 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8851 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8851 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8851 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8851 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8851 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8851 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8851 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8851 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8851 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8851 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8851 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8851 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8851 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8851 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8851 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8851 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8851 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8851 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8851 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8851 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8851 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8851 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8851 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8851 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8851 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8851 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8851 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8851 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8851 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8851 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8851 .column,
  #stacks_in_8851 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8851 .large-1 {
    width: 8.33333%; }

  #stacks_in_8851 .large-2 {
    width: 16.66667%; }

  #stacks_in_8851 .large-3 {
    width: 25%; }

  #stacks_in_8851 .large-4 {
    width: 33.33333%; }

  #stacks_in_8851 .large-5 {
    width: 41.66667%; }

  #stacks_in_8851 .large-6 {
    width: 50%; }

  #stacks_in_8851 .large-7 {
    width: 58.33333%; }

  #stacks_in_8851 .large-8 {
    width: 66.66667%; }

  #stacks_in_8851 .large-9 {
    width: 75%; }

  #stacks_in_8851 .large-10 {
    width: 83.33333%; }

  #stacks_in_8851 .large-11 {
    width: 91.66667%; }

  #stacks_in_8851 .large-12 {
    width: 100%; }

  #stacks_in_8851 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8851 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8851 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8851 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8851 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8851 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8851 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8851 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8851 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8851 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8851 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8851 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8851 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8851 .column.large-centered,
  #stacks_in_8851 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8851 .column.large-uncentered,
  #stacks_in_8851 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8851 .column.large-centered:last-child,
  #stacks_in_8851 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8851 .column.large-uncentered:last-child,
  #stacks_in_8851 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8851 .column.large-uncentered.opposite,
  #stacks_in_8851 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8851 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8851 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8851 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8851 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8851 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8851 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8851 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8851 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8851 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8851 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8851 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8851 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8851 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8851 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8851 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8851 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8851 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8851 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8851 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8851 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8851 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8851 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8851 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8851 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8851 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8851 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8851 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8851 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8851 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8851 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8851 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8851 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8851 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8851 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8851 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8851 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8851 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8851 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8851 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8851 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8851 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8851 {
	margin: 30px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8853{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8853overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8853leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8853leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8853leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8853leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8853posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8853rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8853rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8853theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8853overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8853leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8853leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8853leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8853leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8853rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8853rightcolContent{		margin: auto;	}}	.stacks_in_8853posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8853posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8853posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8853posterWrapper img:hover{	cursor: pointer;}.stacks_in_8853rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8853 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_8862 *,
#stacks_in_8862 *:before,
#stacks_in_8862 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8864 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8866 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8867 {
	font-weight: bold;
}

#stacks_in_8868 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8869 {
	font-size: 90%;
}

#stacks_in_8859 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8860 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9043 .stacks_in_9043-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9043 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9043 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9043 .stacks_in_9043-button,
#stacks_in_9043 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9043 {
		text-align: center;
	}

	#stacks_in_9043 .stacks_in_9043-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9043 a.stacks_in_9043-button, #stacks_in_9043 a.stacks_in_9043-button:visited, #stacks_in_9043 a.stacks_in_9043-button:hover, #stacks_in_9043 a.stacks_in_9043-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9043 .stacks_in_9043-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9043 a.stacks_in_9043-button, #stacks_in_9043 a.stacks_in_9043-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9043 a.stacks_in_9043-button:hover, #stacks_in_9043 a.stacks_in_9043-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9043 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9043 a.stacks_in_9043-button:hover .button_icon, #stacks_in_9043 a.stacks_in_9043-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9043 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_8962 article,
#stacks_in_8962 aside,
#stacks_in_8962 details,
#stacks_in_8962 figcaption,
#stacks_in_8962 figure,
#stacks_in_8962 footer,
#stacks_in_8962 header,
#stacks_in_8962 hgroup,
#stacks_in_8962 main,
#stacks_in_8962 nav,
#stacks_in_8962 section,
#stacks_in_8962 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_8962 audio,
#stacks_in_8962 canvas,
#stacks_in_8962 progress,
#stacks_in_8962 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_8962 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_8962 [hidden],
#stacks_in_8962 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8962 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8962 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8962 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8962 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8962 code,
#stacks_in_8962 kbd,
#stacks_in_8962 pre,
#stacks_in_8962 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8962 *,
#stacks_in_8962 *:before,
#stacks_in_8962 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8962 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8962 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8962 .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_8962 .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_8962 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8962 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_8962 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8962 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8962 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8962 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8962 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8962 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8962 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8962 *,
#stacks_in_8962 *:before,
#stacks_in_8962 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8962 .left {
  float: left !important; }

#stacks_in_8962 .right {
  float: right !important; }

#stacks_in_8962 .clearfix:before,
#stacks_in_8962 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8962 .clearfix:after {
  clear: both; }

#stacks_in_8962 .hide {
  display: none; }

#stacks_in_8962 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8962 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8962 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8962 select {
  width: 100%; }

#stacks_in_8962 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8962 .row:before,
#stacks_in_8962 .row:after {
  content: " ";
  display: table; }

#stacks_in_8962 .row:after {
  clear: both; }

#stacks_in_8962 .row.collapse > .column,
#stacks_in_8962 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8962 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8962 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8962 .row .row:before,
#stacks_in_8962 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8962 .row .row:after {
  clear: both; }

#stacks_in_8962 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8962 .row .row.collapse:before,
#stacks_in_8962 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8962 .row .row.collapse:after {
  clear: both; }

#stacks_in_8962 .column,
#stacks_in_8962 .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_8962 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8962 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8962 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8962 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8962 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8962 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8962 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8962 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8962 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8962 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8962 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8962 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8962 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8962 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8962 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8962 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8962 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8962 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8962 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8962 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8962 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8962 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8962 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8962 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8962 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8962 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8962 .column,
  #stacks_in_8962 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8962 .small-1 {
    width: 8.33333%; }

  #stacks_in_8962 .small-2 {
    width: 16.66667%; }

  #stacks_in_8962 .small-3 {
    width: 25%; }

  #stacks_in_8962 .small-4 {
    width: 33.33333%; }

  #stacks_in_8962 .small-5 {
    width: 41.66667%; }

  #stacks_in_8962 .small-6 {
    width: 50%; }

  #stacks_in_8962 .small-7 {
    width: 58.33333%; }

  #stacks_in_8962 .small-8 {
    width: 66.66667%; }

  #stacks_in_8962 .small-9 {
    width: 75%; }

  #stacks_in_8962 .small-10 {
    width: 83.33333%; }

  #stacks_in_8962 .small-11 {
    width: 91.66667%; }

  #stacks_in_8962 .small-12 {
    width: 100%; }

  #stacks_in_8962 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8962 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8962 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8962 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8962 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8962 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8962 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8962 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8962 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8962 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8962 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8962 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8962 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8962 .column.small-centered,
  #stacks_in_8962 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8962 .column.small-uncentered,
  #stacks_in_8962 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8962 .column.small-centered:last-child,
  #stacks_in_8962 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8962 .column.small-uncentered:last-child,
  #stacks_in_8962 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8962 .column.small-uncentered.opposite,
  #stacks_in_8962 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8962 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8962 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8962 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8962 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8962 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8962 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8962 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8962 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8962 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8962 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8962 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8962 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8962 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8962 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8962 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8962 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8962 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8962 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8962 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8962 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8962 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8962 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8962 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8962 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8962 .column,
  #stacks_in_8962 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8962 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8962 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8962 .medium-3 {
    width: 25%; }

  #stacks_in_8962 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8962 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8962 .medium-6 {
    width: 50%; }

  #stacks_in_8962 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8962 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8962 .medium-9 {
    width: 75%; }

  #stacks_in_8962 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8962 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8962 .medium-12 {
    width: 100%; }

  #stacks_in_8962 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8962 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8962 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8962 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8962 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8962 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8962 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8962 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8962 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8962 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8962 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8962 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8962 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8962 .column.medium-centered,
  #stacks_in_8962 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8962 .column.medium-uncentered,
  #stacks_in_8962 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8962 .column.medium-centered:last-child,
  #stacks_in_8962 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8962 .column.medium-uncentered:last-child,
  #stacks_in_8962 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8962 .column.medium-uncentered.opposite,
  #stacks_in_8962 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8962 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8962 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8962 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8962 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8962 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8962 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8962 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8962 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8962 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8962 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8962 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8962 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8962 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8962 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8962 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8962 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8962 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8962 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8962 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8962 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8962 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8962 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8962 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8962 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8962 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8962 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8962 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8962 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8962 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8962 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8962 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8962 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8962 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8962 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8962 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8962 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8962 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8962 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8962 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8962 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8962 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8962 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8962 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8962 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8962 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8962 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8962 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8962 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8962 .column,
  #stacks_in_8962 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8962 .large-1 {
    width: 8.33333%; }

  #stacks_in_8962 .large-2 {
    width: 16.66667%; }

  #stacks_in_8962 .large-3 {
    width: 25%; }

  #stacks_in_8962 .large-4 {
    width: 33.33333%; }

  #stacks_in_8962 .large-5 {
    width: 41.66667%; }

  #stacks_in_8962 .large-6 {
    width: 50%; }

  #stacks_in_8962 .large-7 {
    width: 58.33333%; }

  #stacks_in_8962 .large-8 {
    width: 66.66667%; }

  #stacks_in_8962 .large-9 {
    width: 75%; }

  #stacks_in_8962 .large-10 {
    width: 83.33333%; }

  #stacks_in_8962 .large-11 {
    width: 91.66667%; }

  #stacks_in_8962 .large-12 {
    width: 100%; }

  #stacks_in_8962 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8962 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8962 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8962 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8962 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8962 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8962 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8962 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8962 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8962 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8962 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8962 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8962 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8962 .column.large-centered,
  #stacks_in_8962 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8962 .column.large-uncentered,
  #stacks_in_8962 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8962 .column.large-centered:last-child,
  #stacks_in_8962 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8962 .column.large-uncentered:last-child,
  #stacks_in_8962 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8962 .column.large-uncentered.opposite,
  #stacks_in_8962 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8962 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8962 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8962 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8962 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8962 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8962 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8962 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8962 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8962 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8962 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8962 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8962 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8962 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8962 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8962 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8962 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8962 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8962 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8962 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8962 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8962 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8962 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8962 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8962 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8962 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8962 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8962 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8962 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8962 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8962 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8962 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8962 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8962 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8962 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8962 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8962 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8962 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8962 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8962 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8962 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8962 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8962 {
	margin: 30px 0px 20px 0px;
}
#stacks_in_8970 *,
#stacks_in_8970 *:before,
#stacks_in_8970 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8971 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8973 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8975 {
	font-weight: bold;
}

#stacks_in_8976 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8977 {
	font-size: 90%;
}

#stacks_in_8978 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8979 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9044 .stacks_in_9044-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9044 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9044 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9044 .stacks_in_9044-button,
#stacks_in_9044 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9044 {
		text-align: center;
	}

	#stacks_in_9044 .stacks_in_9044-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9044 a.stacks_in_9044-button, #stacks_in_9044 a.stacks_in_9044-button:visited, #stacks_in_9044 a.stacks_in_9044-button:hover, #stacks_in_9044 a.stacks_in_9044-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9044 .stacks_in_9044-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9044 a.stacks_in_9044-button, #stacks_in_9044 a.stacks_in_9044-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9044 a.stacks_in_9044-button:hover, #stacks_in_9044 a.stacks_in_9044-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9044 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9044 a.stacks_in_9044-button:hover .button_icon, #stacks_in_9044 a.stacks_in_9044-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9044 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8963{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8963overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8963leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8963leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8963leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8963leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8963posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8963rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8963rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8963theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8963overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8963leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8963leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8963leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8963leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8963rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8963rightcolContent{		margin: auto;	}}	.stacks_in_8963posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8963posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8963posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8963posterWrapper img:hover{	cursor: pointer;}.stacks_in_8963rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8963 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
/* ********* */
/* 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_8983 article,
#stacks_in_8983 aside,
#stacks_in_8983 details,
#stacks_in_8983 figcaption,
#stacks_in_8983 figure,
#stacks_in_8983 footer,
#stacks_in_8983 header,
#stacks_in_8983 hgroup,
#stacks_in_8983 main,
#stacks_in_8983 nav,
#stacks_in_8983 section,
#stacks_in_8983 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_8983 audio,
#stacks_in_8983 canvas,
#stacks_in_8983 progress,
#stacks_in_8983 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_8983 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_8983 [hidden],
#stacks_in_8983 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8983 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8983 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8983 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8983 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8983 code,
#stacks_in_8983 kbd,
#stacks_in_8983 pre,
#stacks_in_8983 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8983 *,
#stacks_in_8983 *:before,
#stacks_in_8983 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8983 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8983 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8983 .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_8983 .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_8983 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8983 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_8983 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8983 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8983 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8983 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8983 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8983 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8983 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8983 *,
#stacks_in_8983 *:before,
#stacks_in_8983 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8983 .left {
  float: left !important; }

#stacks_in_8983 .right {
  float: right !important; }

#stacks_in_8983 .clearfix:before,
#stacks_in_8983 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8983 .clearfix:after {
  clear: both; }

#stacks_in_8983 .hide {
  display: none; }

#stacks_in_8983 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8983 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8983 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8983 select {
  width: 100%; }

#stacks_in_8983 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8983 .row:before,
#stacks_in_8983 .row:after {
  content: " ";
  display: table; }

#stacks_in_8983 .row:after {
  clear: both; }

#stacks_in_8983 .row.collapse > .column,
#stacks_in_8983 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8983 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8983 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8983 .row .row:before,
#stacks_in_8983 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8983 .row .row:after {
  clear: both; }

#stacks_in_8983 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8983 .row .row.collapse:before,
#stacks_in_8983 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8983 .row .row.collapse:after {
  clear: both; }

#stacks_in_8983 .column,
#stacks_in_8983 .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_8983 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8983 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8983 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8983 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8983 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8983 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8983 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8983 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8983 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8983 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8983 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8983 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8983 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8983 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8983 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8983 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8983 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8983 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8983 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8983 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8983 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8983 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8983 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8983 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8983 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8983 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8983 .column,
  #stacks_in_8983 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8983 .small-1 {
    width: 8.33333%; }

  #stacks_in_8983 .small-2 {
    width: 16.66667%; }

  #stacks_in_8983 .small-3 {
    width: 25%; }

  #stacks_in_8983 .small-4 {
    width: 33.33333%; }

  #stacks_in_8983 .small-5 {
    width: 41.66667%; }

  #stacks_in_8983 .small-6 {
    width: 50%; }

  #stacks_in_8983 .small-7 {
    width: 58.33333%; }

  #stacks_in_8983 .small-8 {
    width: 66.66667%; }

  #stacks_in_8983 .small-9 {
    width: 75%; }

  #stacks_in_8983 .small-10 {
    width: 83.33333%; }

  #stacks_in_8983 .small-11 {
    width: 91.66667%; }

  #stacks_in_8983 .small-12 {
    width: 100%; }

  #stacks_in_8983 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8983 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8983 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8983 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8983 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8983 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8983 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8983 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8983 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8983 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8983 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8983 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8983 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8983 .column.small-centered,
  #stacks_in_8983 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8983 .column.small-uncentered,
  #stacks_in_8983 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8983 .column.small-centered:last-child,
  #stacks_in_8983 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8983 .column.small-uncentered:last-child,
  #stacks_in_8983 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8983 .column.small-uncentered.opposite,
  #stacks_in_8983 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8983 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8983 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8983 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8983 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8983 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8983 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8983 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8983 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8983 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8983 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8983 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8983 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8983 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8983 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8983 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8983 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8983 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8983 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8983 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8983 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8983 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8983 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8983 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8983 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8983 .column,
  #stacks_in_8983 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8983 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8983 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8983 .medium-3 {
    width: 25%; }

  #stacks_in_8983 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8983 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8983 .medium-6 {
    width: 50%; }

  #stacks_in_8983 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8983 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8983 .medium-9 {
    width: 75%; }

  #stacks_in_8983 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8983 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8983 .medium-12 {
    width: 100%; }

  #stacks_in_8983 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8983 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8983 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8983 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8983 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8983 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8983 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8983 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8983 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8983 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8983 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8983 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8983 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8983 .column.medium-centered,
  #stacks_in_8983 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8983 .column.medium-uncentered,
  #stacks_in_8983 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8983 .column.medium-centered:last-child,
  #stacks_in_8983 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8983 .column.medium-uncentered:last-child,
  #stacks_in_8983 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8983 .column.medium-uncentered.opposite,
  #stacks_in_8983 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8983 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8983 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8983 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8983 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8983 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8983 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8983 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8983 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8983 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8983 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8983 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8983 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8983 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8983 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8983 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8983 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8983 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8983 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8983 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8983 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8983 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8983 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8983 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8983 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8983 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8983 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8983 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8983 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8983 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8983 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8983 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8983 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8983 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8983 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8983 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8983 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8983 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8983 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8983 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8983 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8983 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8983 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8983 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8983 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8983 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8983 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8983 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8983 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8983 .column,
  #stacks_in_8983 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8983 .large-1 {
    width: 8.33333%; }

  #stacks_in_8983 .large-2 {
    width: 16.66667%; }

  #stacks_in_8983 .large-3 {
    width: 25%; }

  #stacks_in_8983 .large-4 {
    width: 33.33333%; }

  #stacks_in_8983 .large-5 {
    width: 41.66667%; }

  #stacks_in_8983 .large-6 {
    width: 50%; }

  #stacks_in_8983 .large-7 {
    width: 58.33333%; }

  #stacks_in_8983 .large-8 {
    width: 66.66667%; }

  #stacks_in_8983 .large-9 {
    width: 75%; }

  #stacks_in_8983 .large-10 {
    width: 83.33333%; }

  #stacks_in_8983 .large-11 {
    width: 91.66667%; }

  #stacks_in_8983 .large-12 {
    width: 100%; }

  #stacks_in_8983 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8983 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8983 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8983 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8983 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8983 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8983 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8983 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8983 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8983 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8983 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8983 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8983 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8983 .column.large-centered,
  #stacks_in_8983 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8983 .column.large-uncentered,
  #stacks_in_8983 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8983 .column.large-centered:last-child,
  #stacks_in_8983 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8983 .column.large-uncentered:last-child,
  #stacks_in_8983 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8983 .column.large-uncentered.opposite,
  #stacks_in_8983 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8983 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8983 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8983 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8983 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8983 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8983 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8983 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8983 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8983 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8983 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8983 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8983 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8983 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8983 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8983 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8983 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8983 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8983 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8983 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8983 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8983 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8983 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8983 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8983 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8983 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8983 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8983 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8983 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8983 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8983 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8983 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8983 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8983 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8983 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8983 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8983 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8983 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8983 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8983 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8983 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8983 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8983 {
	margin: 30px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8984{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8984overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8984leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8984leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8984leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8984leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8984posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8984rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8984rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8984theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8984overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8984leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8984leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8984leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8984leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8984rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8984rightcolContent{		margin: auto;	}}	.stacks_in_8984posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8984posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8984posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8984posterWrapper img:hover{	cursor: pointer;}.stacks_in_8984rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8984 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_8991 *,
#stacks_in_8991 *:before,
#stacks_in_8991 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8992 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8994 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8996 {
	font-weight: bold;
}

#stacks_in_8997 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8998 {
	font-size: 90%;
}

#stacks_in_8999 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_9000 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9045 .stacks_in_9045-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9045 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9045 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9045 .stacks_in_9045-button,
#stacks_in_9045 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9045 {
		text-align: center;
	}

	#stacks_in_9045 .stacks_in_9045-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9045 a.stacks_in_9045-button, #stacks_in_9045 a.stacks_in_9045-button:visited, #stacks_in_9045 a.stacks_in_9045-button:hover, #stacks_in_9045 a.stacks_in_9045-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9045 .stacks_in_9045-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9045 a.stacks_in_9045-button, #stacks_in_9045 a.stacks_in_9045-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9045 a.stacks_in_9045-button:hover, #stacks_in_9045 a.stacks_in_9045-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9045 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9045 a.stacks_in_9045-button:hover .button_icon, #stacks_in_9045 a.stacks_in_9045-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9045 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_8935 article,
#stacks_in_8935 aside,
#stacks_in_8935 details,
#stacks_in_8935 figcaption,
#stacks_in_8935 figure,
#stacks_in_8935 footer,
#stacks_in_8935 header,
#stacks_in_8935 hgroup,
#stacks_in_8935 main,
#stacks_in_8935 nav,
#stacks_in_8935 section,
#stacks_in_8935 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_8935 audio,
#stacks_in_8935 canvas,
#stacks_in_8935 progress,
#stacks_in_8935 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_8935 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_8935 [hidden],
#stacks_in_8935 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8935 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8935 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8935 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8935 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8935 code,
#stacks_in_8935 kbd,
#stacks_in_8935 pre,
#stacks_in_8935 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8935 *,
#stacks_in_8935 *:before,
#stacks_in_8935 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8935 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8935 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8935 .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_8935 .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_8935 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8935 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_8935 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8935 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8935 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8935 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8935 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8935 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8935 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8935 *,
#stacks_in_8935 *:before,
#stacks_in_8935 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8935 .left {
  float: left !important; }

#stacks_in_8935 .right {
  float: right !important; }

#stacks_in_8935 .clearfix:before,
#stacks_in_8935 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8935 .clearfix:after {
  clear: both; }

#stacks_in_8935 .hide {
  display: none; }

#stacks_in_8935 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8935 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8935 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8935 select {
  width: 100%; }

#stacks_in_8935 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8935 .row:before,
#stacks_in_8935 .row:after {
  content: " ";
  display: table; }

#stacks_in_8935 .row:after {
  clear: both; }

#stacks_in_8935 .row.collapse > .column,
#stacks_in_8935 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8935 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8935 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8935 .row .row:before,
#stacks_in_8935 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8935 .row .row:after {
  clear: both; }

#stacks_in_8935 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8935 .row .row.collapse:before,
#stacks_in_8935 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8935 .row .row.collapse:after {
  clear: both; }

#stacks_in_8935 .column,
#stacks_in_8935 .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_8935 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8935 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8935 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8935 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8935 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8935 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8935 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8935 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8935 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8935 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8935 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8935 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8935 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8935 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8935 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8935 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8935 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8935 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8935 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8935 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8935 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8935 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8935 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8935 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8935 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8935 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8935 .column,
  #stacks_in_8935 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8935 .small-1 {
    width: 8.33333%; }

  #stacks_in_8935 .small-2 {
    width: 16.66667%; }

  #stacks_in_8935 .small-3 {
    width: 25%; }

  #stacks_in_8935 .small-4 {
    width: 33.33333%; }

  #stacks_in_8935 .small-5 {
    width: 41.66667%; }

  #stacks_in_8935 .small-6 {
    width: 50%; }

  #stacks_in_8935 .small-7 {
    width: 58.33333%; }

  #stacks_in_8935 .small-8 {
    width: 66.66667%; }

  #stacks_in_8935 .small-9 {
    width: 75%; }

  #stacks_in_8935 .small-10 {
    width: 83.33333%; }

  #stacks_in_8935 .small-11 {
    width: 91.66667%; }

  #stacks_in_8935 .small-12 {
    width: 100%; }

  #stacks_in_8935 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8935 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8935 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8935 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8935 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8935 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8935 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8935 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8935 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8935 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8935 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8935 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8935 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8935 .column.small-centered,
  #stacks_in_8935 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8935 .column.small-uncentered,
  #stacks_in_8935 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8935 .column.small-centered:last-child,
  #stacks_in_8935 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8935 .column.small-uncentered:last-child,
  #stacks_in_8935 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8935 .column.small-uncentered.opposite,
  #stacks_in_8935 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8935 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8935 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8935 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8935 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8935 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8935 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8935 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8935 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8935 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8935 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8935 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8935 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8935 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8935 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8935 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8935 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8935 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8935 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8935 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8935 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8935 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8935 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8935 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8935 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8935 .column,
  #stacks_in_8935 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8935 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8935 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8935 .medium-3 {
    width: 25%; }

  #stacks_in_8935 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8935 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8935 .medium-6 {
    width: 50%; }

  #stacks_in_8935 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8935 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8935 .medium-9 {
    width: 75%; }

  #stacks_in_8935 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8935 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8935 .medium-12 {
    width: 100%; }

  #stacks_in_8935 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8935 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8935 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8935 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8935 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8935 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8935 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8935 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8935 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8935 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8935 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8935 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8935 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8935 .column.medium-centered,
  #stacks_in_8935 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8935 .column.medium-uncentered,
  #stacks_in_8935 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8935 .column.medium-centered:last-child,
  #stacks_in_8935 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8935 .column.medium-uncentered:last-child,
  #stacks_in_8935 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8935 .column.medium-uncentered.opposite,
  #stacks_in_8935 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8935 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8935 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8935 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8935 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8935 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8935 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8935 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8935 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8935 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8935 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8935 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8935 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8935 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8935 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8935 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8935 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8935 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8935 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8935 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8935 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8935 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8935 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8935 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8935 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8935 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8935 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8935 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8935 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8935 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8935 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8935 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8935 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8935 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8935 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8935 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8935 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8935 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8935 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8935 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8935 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8935 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8935 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8935 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8935 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8935 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8935 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8935 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8935 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8935 .column,
  #stacks_in_8935 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8935 .large-1 {
    width: 8.33333%; }

  #stacks_in_8935 .large-2 {
    width: 16.66667%; }

  #stacks_in_8935 .large-3 {
    width: 25%; }

  #stacks_in_8935 .large-4 {
    width: 33.33333%; }

  #stacks_in_8935 .large-5 {
    width: 41.66667%; }

  #stacks_in_8935 .large-6 {
    width: 50%; }

  #stacks_in_8935 .large-7 {
    width: 58.33333%; }

  #stacks_in_8935 .large-8 {
    width: 66.66667%; }

  #stacks_in_8935 .large-9 {
    width: 75%; }

  #stacks_in_8935 .large-10 {
    width: 83.33333%; }

  #stacks_in_8935 .large-11 {
    width: 91.66667%; }

  #stacks_in_8935 .large-12 {
    width: 100%; }

  #stacks_in_8935 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8935 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8935 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8935 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8935 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8935 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8935 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8935 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8935 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8935 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8935 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8935 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8935 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8935 .column.large-centered,
  #stacks_in_8935 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8935 .column.large-uncentered,
  #stacks_in_8935 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8935 .column.large-centered:last-child,
  #stacks_in_8935 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8935 .column.large-uncentered:last-child,
  #stacks_in_8935 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8935 .column.large-uncentered.opposite,
  #stacks_in_8935 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8935 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8935 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8935 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8935 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8935 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8935 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8935 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8935 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8935 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8935 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8935 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8935 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8935 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8935 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8935 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8935 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8935 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8935 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8935 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8935 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8935 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8935 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8935 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8935 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8935 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8935 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8935 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8935 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8935 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8935 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8935 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8935 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8935 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8935 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8935 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8935 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8935 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8935 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8935 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8935 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8935 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8935 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8948{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8948overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8948leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8948leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8948leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8948leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8948posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8948rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8948rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8948theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8948overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8948leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8948leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8948leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8948leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8948rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8948rightcolContent{		margin: auto;	}}	.stacks_in_8948posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8948posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8948posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8948posterWrapper img:hover{	cursor: pointer;}.stacks_in_8948rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8948 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
}
#stacks_in_8937 *,
#stacks_in_8937 *:before,
#stacks_in_8937 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8939 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8941 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8942 {
	font-weight: bold;
}

#stacks_in_8943 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8944 {
	font-size: 90%;
}

#stacks_in_8945 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8946 {
	font-size: 89%;
	font-weight: lighter;
}
#stacks_in_9046 .stacks_in_9046-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9046 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9046 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9046 .stacks_in_9046-button,
#stacks_in_9046 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9046 {
		text-align: center;
	}

	#stacks_in_9046 .stacks_in_9046-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9046 a.stacks_in_9046-button, #stacks_in_9046 a.stacks_in_9046-button:visited, #stacks_in_9046 a.stacks_in_9046-button:hover, #stacks_in_9046 a.stacks_in_9046-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9046 .stacks_in_9046-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9046 a.stacks_in_9046-button, #stacks_in_9046 a.stacks_in_9046-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9046 a.stacks_in_9046-button:hover, #stacks_in_9046 a.stacks_in_9046-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9046 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9046 a.stacks_in_9046-button:hover .button_icon, #stacks_in_9046 a.stacks_in_9046-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9046 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_9004 article,
#stacks_in_9004 aside,
#stacks_in_9004 details,
#stacks_in_9004 figcaption,
#stacks_in_9004 figure,
#stacks_in_9004 footer,
#stacks_in_9004 header,
#stacks_in_9004 hgroup,
#stacks_in_9004 main,
#stacks_in_9004 nav,
#stacks_in_9004 section,
#stacks_in_9004 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_9004 audio,
#stacks_in_9004 canvas,
#stacks_in_9004 progress,
#stacks_in_9004 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_9004 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_9004 [hidden],
#stacks_in_9004 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_9004 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_9004 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_9004 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_9004 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_9004 code,
#stacks_in_9004 kbd,
#stacks_in_9004 pre,
#stacks_in_9004 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_9004 *,
#stacks_in_9004 *:before,
#stacks_in_9004 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_9004 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_9004 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_9004 .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_9004 .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_9004 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_9004 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_9004 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_9004 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_9004 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_9004 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_9004 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_9004 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_9004 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_9004 *,
#stacks_in_9004 *:before,
#stacks_in_9004 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_9004 .left {
  float: left !important; }

#stacks_in_9004 .right {
  float: right !important; }

#stacks_in_9004 .clearfix:before,
#stacks_in_9004 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_9004 .clearfix:after {
  clear: both; }

#stacks_in_9004 .hide {
  display: none; }

#stacks_in_9004 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_9004 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_9004 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_9004 select {
  width: 100%; }

#stacks_in_9004 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_9004 .row:before,
#stacks_in_9004 .row:after {
  content: " ";
  display: table; }

#stacks_in_9004 .row:after {
  clear: both; }

#stacks_in_9004 .row.collapse > .column,
#stacks_in_9004 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_9004 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_9004 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_9004 .row .row:before,
#stacks_in_9004 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_9004 .row .row:after {
  clear: both; }

#stacks_in_9004 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_9004 .row .row.collapse:before,
#stacks_in_9004 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_9004 .row .row.collapse:after {
  clear: both; }

#stacks_in_9004 .column,
#stacks_in_9004 .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_9004 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_9004 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_9004 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9004 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9004 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9004 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9004 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9004 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9004 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9004 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9004 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9004 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9004 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9004 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9004 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9004 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9004 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9004 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9004 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9004 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9004 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9004 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9004 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9004 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9004 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9004 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_9004 .column,
  #stacks_in_9004 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_9004 .small-1 {
    width: 8.33333%; }

  #stacks_in_9004 .small-2 {
    width: 16.66667%; }

  #stacks_in_9004 .small-3 {
    width: 25%; }

  #stacks_in_9004 .small-4 {
    width: 33.33333%; }

  #stacks_in_9004 .small-5 {
    width: 41.66667%; }

  #stacks_in_9004 .small-6 {
    width: 50%; }

  #stacks_in_9004 .small-7 {
    width: 58.33333%; }

  #stacks_in_9004 .small-8 {
    width: 66.66667%; }

  #stacks_in_9004 .small-9 {
    width: 75%; }

  #stacks_in_9004 .small-10 {
    width: 83.33333%; }

  #stacks_in_9004 .small-11 {
    width: 91.66667%; }

  #stacks_in_9004 .small-12 {
    width: 100%; }

  #stacks_in_9004 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_9004 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_9004 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_9004 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_9004 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_9004 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_9004 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_9004 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_9004 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_9004 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_9004 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_9004 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_9004 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_9004 .column.small-centered,
  #stacks_in_9004 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_9004 .column.small-uncentered,
  #stacks_in_9004 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_9004 .column.small-centered:last-child,
  #stacks_in_9004 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_9004 .column.small-uncentered:last-child,
  #stacks_in_9004 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_9004 .column.small-uncentered.opposite,
  #stacks_in_9004 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_9004 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9004 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9004 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9004 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9004 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9004 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9004 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9004 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9004 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9004 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9004 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9004 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9004 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9004 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9004 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9004 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9004 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9004 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9004 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9004 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9004 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9004 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9004 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9004 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_9004 .column,
  #stacks_in_9004 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_9004 .medium-1 {
    width: 8.33333%; }

  #stacks_in_9004 .medium-2 {
    width: 16.66667%; }

  #stacks_in_9004 .medium-3 {
    width: 25%; }

  #stacks_in_9004 .medium-4 {
    width: 33.33333%; }

  #stacks_in_9004 .medium-5 {
    width: 41.66667%; }

  #stacks_in_9004 .medium-6 {
    width: 50%; }

  #stacks_in_9004 .medium-7 {
    width: 58.33333%; }

  #stacks_in_9004 .medium-8 {
    width: 66.66667%; }

  #stacks_in_9004 .medium-9 {
    width: 75%; }

  #stacks_in_9004 .medium-10 {
    width: 83.33333%; }

  #stacks_in_9004 .medium-11 {
    width: 91.66667%; }

  #stacks_in_9004 .medium-12 {
    width: 100%; }

  #stacks_in_9004 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_9004 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_9004 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_9004 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_9004 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_9004 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_9004 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_9004 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_9004 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_9004 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_9004 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_9004 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_9004 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_9004 .column.medium-centered,
  #stacks_in_9004 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_9004 .column.medium-uncentered,
  #stacks_in_9004 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_9004 .column.medium-centered:last-child,
  #stacks_in_9004 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_9004 .column.medium-uncentered:last-child,
  #stacks_in_9004 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_9004 .column.medium-uncentered.opposite,
  #stacks_in_9004 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_9004 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9004 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9004 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9004 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9004 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9004 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9004 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9004 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9004 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9004 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9004 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9004 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9004 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9004 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9004 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9004 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9004 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9004 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9004 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9004 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9004 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9004 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9004 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9004 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_9004 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9004 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9004 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9004 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9004 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9004 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9004 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9004 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9004 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9004 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9004 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9004 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9004 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9004 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9004 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9004 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9004 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9004 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9004 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9004 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9004 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9004 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9004 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9004 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_9004 .column,
  #stacks_in_9004 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_9004 .large-1 {
    width: 8.33333%; }

  #stacks_in_9004 .large-2 {
    width: 16.66667%; }

  #stacks_in_9004 .large-3 {
    width: 25%; }

  #stacks_in_9004 .large-4 {
    width: 33.33333%; }

  #stacks_in_9004 .large-5 {
    width: 41.66667%; }

  #stacks_in_9004 .large-6 {
    width: 50%; }

  #stacks_in_9004 .large-7 {
    width: 58.33333%; }

  #stacks_in_9004 .large-8 {
    width: 66.66667%; }

  #stacks_in_9004 .large-9 {
    width: 75%; }

  #stacks_in_9004 .large-10 {
    width: 83.33333%; }

  #stacks_in_9004 .large-11 {
    width: 91.66667%; }

  #stacks_in_9004 .large-12 {
    width: 100%; }

  #stacks_in_9004 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_9004 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_9004 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_9004 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_9004 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_9004 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_9004 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_9004 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_9004 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_9004 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_9004 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_9004 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_9004 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_9004 .column.large-centered,
  #stacks_in_9004 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_9004 .column.large-uncentered,
  #stacks_in_9004 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_9004 .column.large-centered:last-child,
  #stacks_in_9004 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_9004 .column.large-uncentered:last-child,
  #stacks_in_9004 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_9004 .column.large-uncentered.opposite,
  #stacks_in_9004 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_9004 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9004 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9004 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9004 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9004 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9004 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9004 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9004 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9004 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9004 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9004 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9004 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9004 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9004 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9004 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9004 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9004 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9004 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9004 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9004 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9004 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9004 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9004 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9004 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_9004 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_9004 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_9004 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_9004 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_9004 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_9004 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_9004 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_9004 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_9004 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_9004 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_9004 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_9004 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_9004 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_9004 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_9004 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_9004 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9004 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_9004 {
	margin: 50px 0px 20px 0px;
}
#stacks_in_9012 *,
#stacks_in_9012 *:before,
#stacks_in_9012 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_9013 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_9015 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_9017 {
	font-weight: bold;
}

#stacks_in_9018 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_9019 {
	font-size: 90%;
}

#stacks_in_9020 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_9021 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9047 .stacks_in_9047-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9047 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9047 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9047 .stacks_in_9047-button,
#stacks_in_9047 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9047 {
		text-align: center;
	}

	#stacks_in_9047 .stacks_in_9047-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9047 a.stacks_in_9047-button, #stacks_in_9047 a.stacks_in_9047-button:visited, #stacks_in_9047 a.stacks_in_9047-button:hover, #stacks_in_9047 a.stacks_in_9047-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9047 .stacks_in_9047-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9047 a.stacks_in_9047-button, #stacks_in_9047 a.stacks_in_9047-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9047 a.stacks_in_9047-button:hover, #stacks_in_9047 a.stacks_in_9047-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9047 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9047 a.stacks_in_9047-button:hover .button_icon, #stacks_in_9047 a.stacks_in_9047-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9047 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_9005{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_9005overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_9005leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_9005leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_9005leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_9005leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_9005posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_9005rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_9005rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_9005theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_9005overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_9005leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_9005leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_9005leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_9005leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_9005rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_9005rightcolContent{		margin: auto;	}}	.stacks_in_9005posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_9005posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_9005posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_9005posterWrapper img:hover{	cursor: pointer;}.stacks_in_9005rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_9005 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
}
/* ********* */
/* 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_8709 article,
#stacks_in_8709 aside,
#stacks_in_8709 details,
#stacks_in_8709 figcaption,
#stacks_in_8709 figure,
#stacks_in_8709 footer,
#stacks_in_8709 header,
#stacks_in_8709 hgroup,
#stacks_in_8709 main,
#stacks_in_8709 nav,
#stacks_in_8709 section,
#stacks_in_8709 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_8709 audio,
#stacks_in_8709 canvas,
#stacks_in_8709 progress,
#stacks_in_8709 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_8709 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_8709 [hidden],
#stacks_in_8709 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_8709 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_8709 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_8709 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_8709 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_8709 code,
#stacks_in_8709 kbd,
#stacks_in_8709 pre,
#stacks_in_8709 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_8709 *,
#stacks_in_8709 *:before,
#stacks_in_8709 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_8709 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_8709 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_8709 .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_8709 .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_8709 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_8709 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_8709 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_8709 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_8709 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_8709 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_8709 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_8709 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_8709 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_8709 *,
#stacks_in_8709 *:before,
#stacks_in_8709 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_8709 .left {
  float: left !important; }

#stacks_in_8709 .right {
  float: right !important; }

#stacks_in_8709 .clearfix:before,
#stacks_in_8709 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_8709 .clearfix:after {
  clear: both; }

#stacks_in_8709 .hide {
  display: none; }

#stacks_in_8709 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_8709 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_8709 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_8709 select {
  width: 100%; }

#stacks_in_8709 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_8709 .row:before,
#stacks_in_8709 .row:after {
  content: " ";
  display: table; }

#stacks_in_8709 .row:after {
  clear: both; }

#stacks_in_8709 .row.collapse > .column,
#stacks_in_8709 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_8709 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_8709 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_8709 .row .row:before,
#stacks_in_8709 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_8709 .row .row:after {
  clear: both; }

#stacks_in_8709 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_8709 .row .row.collapse:before,
#stacks_in_8709 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_8709 .row .row.collapse:after {
  clear: both; }

#stacks_in_8709 .column,
#stacks_in_8709 .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_8709 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_8709 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_8709 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8709 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8709 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8709 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8709 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8709 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8709 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8709 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8709 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8709 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8709 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8709 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8709 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8709 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8709 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8709 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8709 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8709 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8709 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8709 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8709 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8709 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8709 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8709 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8709 .column,
  #stacks_in_8709 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8709 .small-1 {
    width: 8.33333%; }

  #stacks_in_8709 .small-2 {
    width: 16.66667%; }

  #stacks_in_8709 .small-3 {
    width: 25%; }

  #stacks_in_8709 .small-4 {
    width: 33.33333%; }

  #stacks_in_8709 .small-5 {
    width: 41.66667%; }

  #stacks_in_8709 .small-6 {
    width: 50%; }

  #stacks_in_8709 .small-7 {
    width: 58.33333%; }

  #stacks_in_8709 .small-8 {
    width: 66.66667%; }

  #stacks_in_8709 .small-9 {
    width: 75%; }

  #stacks_in_8709 .small-10 {
    width: 83.33333%; }

  #stacks_in_8709 .small-11 {
    width: 91.66667%; }

  #stacks_in_8709 .small-12 {
    width: 100%; }

  #stacks_in_8709 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8709 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8709 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8709 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8709 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8709 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8709 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8709 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8709 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8709 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8709 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8709 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8709 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8709 .column.small-centered,
  #stacks_in_8709 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8709 .column.small-uncentered,
  #stacks_in_8709 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8709 .column.small-centered:last-child,
  #stacks_in_8709 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_8709 .column.small-uncentered:last-child,
  #stacks_in_8709 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_8709 .column.small-uncentered.opposite,
  #stacks_in_8709 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_8709 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8709 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8709 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8709 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8709 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8709 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8709 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8709 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8709 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8709 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8709 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8709 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8709 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8709 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8709 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8709 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8709 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8709 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8709 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8709 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8709 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8709 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8709 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8709 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8709 .column,
  #stacks_in_8709 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8709 .medium-1 {
    width: 8.33333%; }

  #stacks_in_8709 .medium-2 {
    width: 16.66667%; }

  #stacks_in_8709 .medium-3 {
    width: 25%; }

  #stacks_in_8709 .medium-4 {
    width: 33.33333%; }

  #stacks_in_8709 .medium-5 {
    width: 41.66667%; }

  #stacks_in_8709 .medium-6 {
    width: 50%; }

  #stacks_in_8709 .medium-7 {
    width: 58.33333%; }

  #stacks_in_8709 .medium-8 {
    width: 66.66667%; }

  #stacks_in_8709 .medium-9 {
    width: 75%; }

  #stacks_in_8709 .medium-10 {
    width: 83.33333%; }

  #stacks_in_8709 .medium-11 {
    width: 91.66667%; }

  #stacks_in_8709 .medium-12 {
    width: 100%; }

  #stacks_in_8709 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8709 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8709 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8709 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8709 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8709 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8709 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8709 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8709 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8709 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8709 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8709 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8709 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8709 .column.medium-centered,
  #stacks_in_8709 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8709 .column.medium-uncentered,
  #stacks_in_8709 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8709 .column.medium-centered:last-child,
  #stacks_in_8709 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_8709 .column.medium-uncentered:last-child,
  #stacks_in_8709 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_8709 .column.medium-uncentered.opposite,
  #stacks_in_8709 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_8709 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8709 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8709 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8709 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8709 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8709 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8709 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8709 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8709 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8709 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8709 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8709 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8709 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8709 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8709 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8709 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8709 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8709 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8709 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8709 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8709 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8709 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8709 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8709 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_8709 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8709 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8709 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8709 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8709 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8709 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8709 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8709 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8709 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8709 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8709 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8709 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8709 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8709 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8709 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8709 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8709 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8709 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8709 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8709 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8709 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8709 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8709 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8709 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_8709 .column,
  #stacks_in_8709 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_8709 .large-1 {
    width: 8.33333%; }

  #stacks_in_8709 .large-2 {
    width: 16.66667%; }

  #stacks_in_8709 .large-3 {
    width: 25%; }

  #stacks_in_8709 .large-4 {
    width: 33.33333%; }

  #stacks_in_8709 .large-5 {
    width: 41.66667%; }

  #stacks_in_8709 .large-6 {
    width: 50%; }

  #stacks_in_8709 .large-7 {
    width: 58.33333%; }

  #stacks_in_8709 .large-8 {
    width: 66.66667%; }

  #stacks_in_8709 .large-9 {
    width: 75%; }

  #stacks_in_8709 .large-10 {
    width: 83.33333%; }

  #stacks_in_8709 .large-11 {
    width: 91.66667%; }

  #stacks_in_8709 .large-12 {
    width: 100%; }

  #stacks_in_8709 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_8709 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_8709 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_8709 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_8709 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_8709 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_8709 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_8709 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_8709 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_8709 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_8709 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_8709 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_8709 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_8709 .column.large-centered,
  #stacks_in_8709 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_8709 .column.large-uncentered,
  #stacks_in_8709 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_8709 .column.large-centered:last-child,
  #stacks_in_8709 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_8709 .column.large-uncentered:last-child,
  #stacks_in_8709 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_8709 .column.large-uncentered.opposite,
  #stacks_in_8709 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_8709 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_8709 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_8709 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_8709 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_8709 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_8709 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_8709 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_8709 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_8709 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_8709 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_8709 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_8709 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_8709 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_8709 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_8709 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_8709 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_8709 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_8709 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_8709 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_8709 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_8709 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_8709 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_8709 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_8709 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_8709 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_8709 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_8709 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_8709 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_8709 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_8709 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_8709 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_8709 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8709 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8709 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_8709 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8709 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8709 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_8709 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_8709 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_8709 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_8709 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_8709 {
	margin: 50px 0px 60px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8722{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8722overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_8722leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8722leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8722leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8722leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8722posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8722rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_8722rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8722theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8722overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8722leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8722leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8722leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8722leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8722rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8722rightcolContent{		margin: auto;	}}	.stacks_in_8722posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_8722posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_8722posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8722posterWrapper img:hover{	cursor: pointer;}.stacks_in_8722rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8722 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
}
#stacks_in_8711 *,
#stacks_in_8711 *:before,
#stacks_in_8711 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_8713 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_8715 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_8716 {
	font-weight: bold;
}

#stacks_in_8717 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_8718 {
	font-size: 90%;
}

#stacks_in_8719 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_8720 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9048 .stacks_in_9048-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9048 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9048 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9048 .stacks_in_9048-button,
#stacks_in_9048 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9048 {
		text-align: left;
	}







	@media only screen and (max-width: 480px) {
		#stacks_in_9048 {
			text-align: center;
		}

		#stacks_in_9048 .stacks_in_9048-button {
			width: 100%;
		  -moz-box-sizing: border-box;
		  -webkit-box-sizing: border-box;
		  box-sizing: border-box;
		}
	}



#stacks_in_9048 a.stacks_in_9048-button, #stacks_in_9048 a.stacks_in_9048-button:visited, #stacks_in_9048 a.stacks_in_9048-button:hover, #stacks_in_9048 a.stacks_in_9048-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9048 .stacks_in_9048-button {
		
			background-color: none;
			border: 1px solid #C9CCCC;
		
	}

	#stacks_in_9048 a.stacks_in_9048-button, #stacks_in_9048 a.stacks_in_9048-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9048 a.stacks_in_9048-button:hover, #stacks_in_9048 a.stacks_in_9048-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #C9CCCC;
		
	}

	
	#stacks_in_9048 .button_icon {
		
			background-color: none;
			border-right: 1px solid #C9CCCC;
		
	}

	#stacks_in_9048 a.stacks_in_9048-button:hover .button_icon, #stacks_in_9048 a.stacks_in_9048-button:active .button_icon {
		
			background-color: #C9CCCC;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9048 {
	margin: 20px 0px 0px 0px;
}
/* ********* */
/* 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_9049 article,
#stacks_in_9049 aside,
#stacks_in_9049 details,
#stacks_in_9049 figcaption,
#stacks_in_9049 figure,
#stacks_in_9049 footer,
#stacks_in_9049 header,
#stacks_in_9049 hgroup,
#stacks_in_9049 main,
#stacks_in_9049 nav,
#stacks_in_9049 section,
#stacks_in_9049 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_9049 audio,
#stacks_in_9049 canvas,
#stacks_in_9049 progress,
#stacks_in_9049 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_9049 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_9049 [hidden],
#stacks_in_9049 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_9049 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_9049 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_9049 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_9049 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_9049 code,
#stacks_in_9049 kbd,
#stacks_in_9049 pre,
#stacks_in_9049 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_9049 *,
#stacks_in_9049 *:before,
#stacks_in_9049 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_9049 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_9049 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_9049 .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_9049 .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_9049 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_9049 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_9049 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_9049 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_9049 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_9049 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_9049 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_9049 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_9049 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_9049 *,
#stacks_in_9049 *:before,
#stacks_in_9049 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_9049 .left {
  float: left !important; }

#stacks_in_9049 .right {
  float: right !important; }

#stacks_in_9049 .clearfix:before,
#stacks_in_9049 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_9049 .clearfix:after {
  clear: both; }

#stacks_in_9049 .hide {
  display: none; }

#stacks_in_9049 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_9049 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_9049 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_9049 select {
  width: 100%; }

#stacks_in_9049 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_9049 .row:before,
#stacks_in_9049 .row:after {
  content: " ";
  display: table; }

#stacks_in_9049 .row:after {
  clear: both; }

#stacks_in_9049 .row.collapse > .column,
#stacks_in_9049 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_9049 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_9049 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_9049 .row .row:before,
#stacks_in_9049 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_9049 .row .row:after {
  clear: both; }

#stacks_in_9049 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_9049 .row .row.collapse:before,
#stacks_in_9049 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_9049 .row .row.collapse:after {
  clear: both; }

#stacks_in_9049 .column,
#stacks_in_9049 .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_9049 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_9049 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_9049 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9049 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9049 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9049 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9049 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9049 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9049 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9049 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9049 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9049 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9049 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9049 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9049 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9049 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9049 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9049 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9049 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9049 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9049 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9049 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9049 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9049 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9049 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9049 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_9049 .column,
  #stacks_in_9049 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_9049 .small-1 {
    width: 8.33333%; }

  #stacks_in_9049 .small-2 {
    width: 16.66667%; }

  #stacks_in_9049 .small-3 {
    width: 25%; }

  #stacks_in_9049 .small-4 {
    width: 33.33333%; }

  #stacks_in_9049 .small-5 {
    width: 41.66667%; }

  #stacks_in_9049 .small-6 {
    width: 50%; }

  #stacks_in_9049 .small-7 {
    width: 58.33333%; }

  #stacks_in_9049 .small-8 {
    width: 66.66667%; }

  #stacks_in_9049 .small-9 {
    width: 75%; }

  #stacks_in_9049 .small-10 {
    width: 83.33333%; }

  #stacks_in_9049 .small-11 {
    width: 91.66667%; }

  #stacks_in_9049 .small-12 {
    width: 100%; }

  #stacks_in_9049 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_9049 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_9049 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_9049 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_9049 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_9049 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_9049 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_9049 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_9049 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_9049 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_9049 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_9049 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_9049 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_9049 .column.small-centered,
  #stacks_in_9049 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_9049 .column.small-uncentered,
  #stacks_in_9049 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_9049 .column.small-centered:last-child,
  #stacks_in_9049 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_9049 .column.small-uncentered:last-child,
  #stacks_in_9049 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_9049 .column.small-uncentered.opposite,
  #stacks_in_9049 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_9049 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9049 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9049 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9049 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9049 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9049 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9049 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9049 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9049 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9049 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9049 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9049 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9049 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9049 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9049 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9049 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9049 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9049 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9049 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9049 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9049 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9049 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9049 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9049 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_9049 .column,
  #stacks_in_9049 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_9049 .medium-1 {
    width: 8.33333%; }

  #stacks_in_9049 .medium-2 {
    width: 16.66667%; }

  #stacks_in_9049 .medium-3 {
    width: 25%; }

  #stacks_in_9049 .medium-4 {
    width: 33.33333%; }

  #stacks_in_9049 .medium-5 {
    width: 41.66667%; }

  #stacks_in_9049 .medium-6 {
    width: 50%; }

  #stacks_in_9049 .medium-7 {
    width: 58.33333%; }

  #stacks_in_9049 .medium-8 {
    width: 66.66667%; }

  #stacks_in_9049 .medium-9 {
    width: 75%; }

  #stacks_in_9049 .medium-10 {
    width: 83.33333%; }

  #stacks_in_9049 .medium-11 {
    width: 91.66667%; }

  #stacks_in_9049 .medium-12 {
    width: 100%; }

  #stacks_in_9049 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_9049 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_9049 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_9049 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_9049 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_9049 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_9049 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_9049 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_9049 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_9049 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_9049 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_9049 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_9049 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_9049 .column.medium-centered,
  #stacks_in_9049 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_9049 .column.medium-uncentered,
  #stacks_in_9049 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_9049 .column.medium-centered:last-child,
  #stacks_in_9049 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_9049 .column.medium-uncentered:last-child,
  #stacks_in_9049 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_9049 .column.medium-uncentered.opposite,
  #stacks_in_9049 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_9049 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9049 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9049 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9049 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9049 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9049 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9049 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9049 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9049 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9049 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9049 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9049 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9049 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9049 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9049 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9049 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9049 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9049 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9049 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9049 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9049 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9049 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9049 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9049 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_9049 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9049 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9049 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9049 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9049 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9049 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9049 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9049 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9049 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9049 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9049 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9049 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9049 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9049 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9049 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9049 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9049 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9049 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9049 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9049 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9049 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9049 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9049 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9049 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_9049 .column,
  #stacks_in_9049 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_9049 .large-1 {
    width: 8.33333%; }

  #stacks_in_9049 .large-2 {
    width: 16.66667%; }

  #stacks_in_9049 .large-3 {
    width: 25%; }

  #stacks_in_9049 .large-4 {
    width: 33.33333%; }

  #stacks_in_9049 .large-5 {
    width: 41.66667%; }

  #stacks_in_9049 .large-6 {
    width: 50%; }

  #stacks_in_9049 .large-7 {
    width: 58.33333%; }

  #stacks_in_9049 .large-8 {
    width: 66.66667%; }

  #stacks_in_9049 .large-9 {
    width: 75%; }

  #stacks_in_9049 .large-10 {
    width: 83.33333%; }

  #stacks_in_9049 .large-11 {
    width: 91.66667%; }

  #stacks_in_9049 .large-12 {
    width: 100%; }

  #stacks_in_9049 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_9049 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_9049 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_9049 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_9049 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_9049 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_9049 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_9049 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_9049 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_9049 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_9049 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_9049 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_9049 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_9049 .column.large-centered,
  #stacks_in_9049 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_9049 .column.large-uncentered,
  #stacks_in_9049 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_9049 .column.large-centered:last-child,
  #stacks_in_9049 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_9049 .column.large-uncentered:last-child,
  #stacks_in_9049 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_9049 .column.large-uncentered.opposite,
  #stacks_in_9049 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_9049 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_9049 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_9049 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_9049 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_9049 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_9049 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_9049 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_9049 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_9049 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_9049 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_9049 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_9049 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_9049 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_9049 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_9049 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_9049 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_9049 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_9049 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_9049 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_9049 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_9049 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_9049 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_9049 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_9049 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_9049 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_9049 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_9049 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_9049 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_9049 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_9049 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_9049 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_9049 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_9049 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_9049 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_9049 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_9049 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_9049 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_9049 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_9049 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_9049 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_9049 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_9049 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_9050{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_9050overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_9050leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_9050leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_9050leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_9050leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_9050posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_9050rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: block;}.stacks_in_9050rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_9050theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_9050overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_9050leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_9050leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_9050leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_9050leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_9050rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_9050rightcolContent{		margin: auto;	}}	.stacks_in_9050posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_9050posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_9050posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_9050posterWrapper img:hover{	cursor: pointer;}.stacks_in_9050rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */#stacks_in_9057 *,
#stacks_in_9057 *:before,
#stacks_in_9057 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_9058 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
	padding: 0px 0px 0px 6px;
}

#stacks_in_9060 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_9062 {
	font-weight: bold;
}

#stacks_in_9063 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_9064 {
	font-size: 90%;
}

#stacks_in_9065 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_9066 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_9067 .stacks_in_9067-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_9067 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_9067 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_9067 .stacks_in_9067-button,
#stacks_in_9067 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_9067 {
		text-align: center;
	}

	#stacks_in_9067 .stacks_in_9067-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_9067 a.stacks_in_9067-button, #stacks_in_9067 a.stacks_in_9067-button:visited, #stacks_in_9067 a.stacks_in_9067-button:hover, #stacks_in_9067 a.stacks_in_9067-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_9067 .stacks_in_9067-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_9067 a.stacks_in_9067-button, #stacks_in_9067 a.stacks_in_9067-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_9067 a.stacks_in_9067-button:hover, #stacks_in_9067 a.stacks_in_9067-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_9067 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_9067 a.stacks_in_9067-button:hover .button_icon, #stacks_in_9067 a.stacks_in_9067-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_9067 {
	margin: 20px 0px 0px 0px;
}


/* Start doobox Chauffeur css */

.stacks_in_3341_3990wrapper{
width: 50px;
margin: 0 auto;

display : none;

opacity:0.7;
}

.stacks_in_3341_3990bulter{
cursor: pointer;
border: 1px solid #9F9F9F;
background: #B3B3B3;
width: 50px;
height: 50px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #EEEEEE;
text-align: center;
line-height: 50px;
margin: 5px;
z-index: 1000001;
background: #B3B3B3;
}


.stacks_in_3341_3990bulter i {
	display: block;
	margin: 0 auto 0 auto;
	font-size: 20px;
	line-height: 48px; 
	vertical-align: middle;
}


.stacks_in_3341_3990bulter:hover{
color: #DADADA;
background: #C2C2C2; /* Old browsers */
}

/* end doobox Chauffeur css */


#stacks_in_8598_7485 {
	margin: 25px 0px 0px 0px;
}

#stacks_in_8598_7486 {
	font-size: 109%;
}
