
@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_3 {
	font-size: 149%;
	font-weight: bold;
}

#stacks_in_4 {
	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_6 article,
#stacks_in_6 aside,
#stacks_in_6 details,
#stacks_in_6 figcaption,
#stacks_in_6 figure,
#stacks_in_6 footer,
#stacks_in_6 header,
#stacks_in_6 hgroup,
#stacks_in_6 main,
#stacks_in_6 nav,
#stacks_in_6 section,
#stacks_in_6 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_6 audio,
#stacks_in_6 canvas,
#stacks_in_6 progress,
#stacks_in_6 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_6 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_6 [hidden],
#stacks_in_6 template {
  display: none;
}


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

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

#stacks_in_6 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_6 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_6 .wow {
  visibility: hidden;
}



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


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

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

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







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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_6 .hide {
  display: none; }

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


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


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

#stacks_in_6 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_6 {
	margin: 0px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_8{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_8overlay{	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_8leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_8leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_8leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_8leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_8posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_8rightCol{	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_8rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_8theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_8overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_8leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_8leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_8leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_8leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_8rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_8rightcolContent{		margin: auto;	}}	.stacks_in_8posterWrapper 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_8posterWrapper 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_8posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_8posterWrapper img:hover{	cursor: pointer;}.stacks_in_8rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_8 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_15 *,
#stacks_in_15 *:before,
#stacks_in_15 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_17 {
	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_19 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_20 {
	font-weight: bold;
}

#stacks_in_21 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_22 {
	font-size: 90%;
}

#stacks_in_23 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_24 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_353 .stacks_in_353-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_353 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_353 .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_353 .stacks_in_353-button,
#stacks_in_353 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_353 {
		text-align: center;
	}

	#stacks_in_353 .stacks_in_353-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_353 a.stacks_in_353-button, #stacks_in_353 a.stacks_in_353-button:visited, #stacks_in_353 a.stacks_in_353-button:hover, #stacks_in_353 a.stacks_in_353-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_353 .stacks_in_353-button {
		
			background-color: none;
			border: 1px solid #C9CCCC;
		
	}

	#stacks_in_353 a.stacks_in_353-button, #stacks_in_353 a.stacks_in_353-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_353 a.stacks_in_353-button:hover, #stacks_in_353 a.stacks_in_353-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #C9CCCC;
		
	}

	
	#stacks_in_353 .button_icon {
		
			background-color: none;
			border-right: 1px solid #C9CCCC;
		
	}

	#stacks_in_353 a.stacks_in_353-button:hover .button_icon, #stacks_in_353 a.stacks_in_353-button:active .button_icon {
		
			background-color: #C9CCCC;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_353 {
	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_25 article,
#stacks_in_25 aside,
#stacks_in_25 details,
#stacks_in_25 figcaption,
#stacks_in_25 figure,
#stacks_in_25 footer,
#stacks_in_25 header,
#stacks_in_25 hgroup,
#stacks_in_25 main,
#stacks_in_25 nav,
#stacks_in_25 section,
#stacks_in_25 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_25 audio,
#stacks_in_25 canvas,
#stacks_in_25 progress,
#stacks_in_25 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_25 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_25 [hidden],
#stacks_in_25 template {
  display: none;
}


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

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

#stacks_in_25 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_25 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_25 .wow {
  visibility: hidden;
}



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


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

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

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







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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_25 .hide {
  display: none; }

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


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


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

#stacks_in_25 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_25 {
	margin: 50px 0px 20px 0px;
}
#stacks_in_27 *,
#stacks_in_27 *:before,
#stacks_in_27 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_29 {
	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_31 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_32 {
	font-weight: bold;
}

#stacks_in_33 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_34 {
	font-size: 90%;
}

#stacks_in_35 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_36 {
	font-size: 89%;
	font-weight: lighter;
}
#stacks_in_354 .stacks_in_354-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_354 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_354 .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_354 .stacks_in_354-button,
#stacks_in_354 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_354 {
		text-align: center;
	}

	#stacks_in_354 .stacks_in_354-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_354 a.stacks_in_354-button, #stacks_in_354 a.stacks_in_354-button:visited, #stacks_in_354 a.stacks_in_354-button:hover, #stacks_in_354 a.stacks_in_354-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_354 .stacks_in_354-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_354 a.stacks_in_354-button, #stacks_in_354 a.stacks_in_354-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_354 a.stacks_in_354-button:hover, #stacks_in_354 a.stacks_in_354-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_354 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_354 a.stacks_in_354-button:hover .button_icon, #stacks_in_354 a.stacks_in_354-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_354 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_38{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_38overlay{	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_38leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_38leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_38leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_38leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_38posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_38rightCol{	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_38rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_38theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_38overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_38leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_38leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_38leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_38leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_38rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_38rightcolContent{		margin: auto;	}}	.stacks_in_38posterWrapper 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_38posterWrapper 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_38posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_38posterWrapper img:hover{	cursor: pointer;}.stacks_in_38rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_38 {
	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_44 article,
#stacks_in_44 aside,
#stacks_in_44 details,
#stacks_in_44 figcaption,
#stacks_in_44 figure,
#stacks_in_44 footer,
#stacks_in_44 header,
#stacks_in_44 hgroup,
#stacks_in_44 main,
#stacks_in_44 nav,
#stacks_in_44 section,
#stacks_in_44 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_44 audio,
#stacks_in_44 canvas,
#stacks_in_44 progress,
#stacks_in_44 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_44 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_44 [hidden],
#stacks_in_44 template {
  display: none;
}


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

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

#stacks_in_44 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_44 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_44 .wow {
  visibility: hidden;
}



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


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

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

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







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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_44 .hide {
  display: none; }

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


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


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

#stacks_in_44 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  #stacks_in_44 .large-4 {
    width: 33.33333%; }

  #stacks_in_44 .large-5 {
    width: 41.66667%; }

  #stacks_in_44 .large-6 {
    width: 50%; }

  #stacks_in_44 .large-7 {
    width: 58.33333%; }

  #stacks_in_44 .large-8 {
    width: 66.66667%; }

  #stacks_in_44 .large-9 {
    width: 75%; }

  #stacks_in_44 .large-10 {
    width: 83.33333%; }

  #stacks_in_44 .large-11 {
    width: 91.66667%; }

  #stacks_in_44 .large-12 {
    width: 100%; }

  #stacks_in_44 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_44 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_44 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_44 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_44 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_44 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_44 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_44 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_44 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_44 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_44 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_44 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_44 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_44 .column.large-centered,
  #stacks_in_44 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_44 .column.large-uncentered,
  #stacks_in_44 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_44 .column.large-centered:last-child,
  #stacks_in_44 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_44 .column.large-uncentered:last-child,
  #stacks_in_44 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_44 .column.large-uncentered.opposite,
  #stacks_in_44 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_44 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_44 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_44 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_44 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_44 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_44 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_44 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_44 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_44 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_44 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_44 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_44 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_44 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_44 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_44 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_44 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_44 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_44 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_44 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_44 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_44 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_44 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_44 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_44 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_44 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_44 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_44 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_44 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_44 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_44 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_44 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_44 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_44 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_44 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_44 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_44 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_44 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_44 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_44 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_44 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_44 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_44 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_46{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_46overlay{	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_46leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_46leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_46leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_46leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_46posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_46rightCol{	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_46rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_46theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_46overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_46leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_46leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_46leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_46leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_46rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_46rightcolContent{		margin: auto;	}}	.stacks_in_46posterWrapper 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_46posterWrapper 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_46posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_46posterWrapper img:hover{	cursor: pointer;}.stacks_in_46rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_46 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_53 *,
#stacks_in_53 *:before,
#stacks_in_53 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_55 {
	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_57 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_58 {
	font-weight: bold;
}

#stacks_in_59 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_60 {
	font-size: 90%;
}

#stacks_in_61 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_62 {
	font-size: 89%;
	font-weight: lighter;
}
#stacks_in_355 .stacks_in_355-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_355 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_355 .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_355 .stacks_in_355-button,
#stacks_in_355 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_355 {
		text-align: center;
	}

	#stacks_in_355 .stacks_in_355-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_355 a.stacks_in_355-button, #stacks_in_355 a.stacks_in_355-button:visited, #stacks_in_355 a.stacks_in_355-button:hover, #stacks_in_355 a.stacks_in_355-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_355 .stacks_in_355-button {
		
			background-color: none;
			border: 1px solid #CCCCCC;
		
	}

	#stacks_in_355 a.stacks_in_355-button, #stacks_in_355 a.stacks_in_355-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_355 a.stacks_in_355-button:hover, #stacks_in_355 a.stacks_in_355-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #CCCCCC;
		
	}

	
	#stacks_in_355 .button_icon {
		
			background-color: none;
			border-right: 1px solid #CCCCCC;
		
	}

	#stacks_in_355 a.stacks_in_355-button:hover .button_icon, #stacks_in_355 a.stacks_in_355-button:active .button_icon {
		
			background-color: #CCCCCC;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_355 {
	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_63 article,
#stacks_in_63 aside,
#stacks_in_63 details,
#stacks_in_63 figcaption,
#stacks_in_63 figure,
#stacks_in_63 footer,
#stacks_in_63 header,
#stacks_in_63 hgroup,
#stacks_in_63 main,
#stacks_in_63 nav,
#stacks_in_63 section,
#stacks_in_63 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_63 audio,
#stacks_in_63 canvas,
#stacks_in_63 progress,
#stacks_in_63 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_63 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_63 [hidden],
#stacks_in_63 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_63 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_63 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_63 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_63 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_63 code,
#stacks_in_63 kbd,
#stacks_in_63 pre,
#stacks_in_63 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_63 *,
#stacks_in_63 *:before,
#stacks_in_63 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_63 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_63 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_63 .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_63 .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_63 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_63 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_63 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_63 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_63 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_63 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_63 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_63 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_63 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_63 *,
#stacks_in_63 *:before,
#stacks_in_63 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_63 .left {
  float: left !important; }

#stacks_in_63 .right {
  float: right !important; }

#stacks_in_63 .clearfix:before,
#stacks_in_63 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_63 .clearfix:after {
  clear: both; }

#stacks_in_63 .hide {
  display: none; }

#stacks_in_63 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_63 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_63 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_63 select {
  width: 100%; }

#stacks_in_63 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_63 .row:before,
#stacks_in_63 .row:after {
  content: " ";
  display: table; }

#stacks_in_63 .row:after {
  clear: both; }

#stacks_in_63 .row.collapse > .column,
#stacks_in_63 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_63 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_63 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_63 .row .row:before,
#stacks_in_63 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_63 .row .row:after {
  clear: both; }

#stacks_in_63 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_63 .row .row.collapse:before,
#stacks_in_63 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_63 .row .row.collapse:after {
  clear: both; }

#stacks_in_63 .column,
#stacks_in_63 .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_63 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_63 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_63 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_63 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_63 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_63 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_63 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_63 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_63 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_63 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_63 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_63 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_63 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_63 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_63 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_63 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_63 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_63 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_63 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_63 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_63 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_63 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_63 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_63 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_63 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_63 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_63 .column,
  #stacks_in_63 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_63 .small-1 {
    width: 8.33333%; }

  #stacks_in_63 .small-2 {
    width: 16.66667%; }

  #stacks_in_63 .small-3 {
    width: 25%; }

  #stacks_in_63 .small-4 {
    width: 33.33333%; }

  #stacks_in_63 .small-5 {
    width: 41.66667%; }

  #stacks_in_63 .small-6 {
    width: 50%; }

  #stacks_in_63 .small-7 {
    width: 58.33333%; }

  #stacks_in_63 .small-8 {
    width: 66.66667%; }

  #stacks_in_63 .small-9 {
    width: 75%; }

  #stacks_in_63 .small-10 {
    width: 83.33333%; }

  #stacks_in_63 .small-11 {
    width: 91.66667%; }

  #stacks_in_63 .small-12 {
    width: 100%; }

  #stacks_in_63 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_63 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_63 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_63 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_63 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_63 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_63 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_63 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_63 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_63 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_63 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_63 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_63 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_63 .column.small-centered,
  #stacks_in_63 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_63 .column.small-uncentered,
  #stacks_in_63 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_63 .column.small-centered:last-child,
  #stacks_in_63 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_63 .column.small-uncentered:last-child,
  #stacks_in_63 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_63 .column.small-uncentered.opposite,
  #stacks_in_63 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_63 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_63 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_63 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_63 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_63 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_63 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_63 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_63 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_63 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_63 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_63 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_63 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_63 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_63 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_63 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_63 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_63 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_63 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_63 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_63 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_63 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_63 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_63 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_63 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_63 .column,
  #stacks_in_63 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_63 .medium-1 {
    width: 8.33333%; }

  #stacks_in_63 .medium-2 {
    width: 16.66667%; }

  #stacks_in_63 .medium-3 {
    width: 25%; }

  #stacks_in_63 .medium-4 {
    width: 33.33333%; }

  #stacks_in_63 .medium-5 {
    width: 41.66667%; }

  #stacks_in_63 .medium-6 {
    width: 50%; }

  #stacks_in_63 .medium-7 {
    width: 58.33333%; }

  #stacks_in_63 .medium-8 {
    width: 66.66667%; }

  #stacks_in_63 .medium-9 {
    width: 75%; }

  #stacks_in_63 .medium-10 {
    width: 83.33333%; }

  #stacks_in_63 .medium-11 {
    width: 91.66667%; }

  #stacks_in_63 .medium-12 {
    width: 100%; }

  #stacks_in_63 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_63 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_63 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_63 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_63 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_63 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_63 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_63 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_63 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_63 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_63 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_63 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_63 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_63 .column.medium-centered,
  #stacks_in_63 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_63 .column.medium-uncentered,
  #stacks_in_63 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_63 .column.medium-centered:last-child,
  #stacks_in_63 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_63 .column.medium-uncentered:last-child,
  #stacks_in_63 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_63 .column.medium-uncentered.opposite,
  #stacks_in_63 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_63 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_63 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_63 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_63 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_63 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_63 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_63 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_63 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_63 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_63 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_63 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_63 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_63 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_63 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_63 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_63 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_63 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_63 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_63 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_63 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_63 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_63 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_63 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_63 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_63 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_63 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_63 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_63 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_63 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_63 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_63 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_63 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_63 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_63 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_63 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_63 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_63 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_63 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_63 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_63 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_63 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_63 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_63 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_63 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_63 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_63 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_63 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_63 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_63 .column,
  #stacks_in_63 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_63 .large-1 {
    width: 8.33333%; }

  #stacks_in_63 .large-2 {
    width: 16.66667%; }

  #stacks_in_63 .large-3 {
    width: 25%; }

  #stacks_in_63 .large-4 {
    width: 33.33333%; }

  #stacks_in_63 .large-5 {
    width: 41.66667%; }

  #stacks_in_63 .large-6 {
    width: 50%; }

  #stacks_in_63 .large-7 {
    width: 58.33333%; }

  #stacks_in_63 .large-8 {
    width: 66.66667%; }

  #stacks_in_63 .large-9 {
    width: 75%; }

  #stacks_in_63 .large-10 {
    width: 83.33333%; }

  #stacks_in_63 .large-11 {
    width: 91.66667%; }

  #stacks_in_63 .large-12 {
    width: 100%; }

  #stacks_in_63 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_63 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_63 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_63 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_63 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_63 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_63 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_63 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_63 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_63 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_63 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_63 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_63 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_63 .column.large-centered,
  #stacks_in_63 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_63 .column.large-uncentered,
  #stacks_in_63 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_63 .column.large-centered:last-child,
  #stacks_in_63 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_63 .column.large-uncentered:last-child,
  #stacks_in_63 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_63 .column.large-uncentered.opposite,
  #stacks_in_63 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_63 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_63 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_63 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_63 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_63 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_63 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_63 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_63 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_63 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_63 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_63 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_63 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_63 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_63 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_63 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_63 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_63 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_63 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_63 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_63 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_63 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_63 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_63 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_63 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_63 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_63 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_63 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_63 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_63 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_63 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_63 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_63 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_63 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_63 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_63 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_63 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_63 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_63 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_63 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_63 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_63 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_63 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_65{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_65overlay{	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_65leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_65leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_65leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_65leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_65posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_65rightCol{	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_65rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_65theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_65overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_65leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_65leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_65leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_65leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_65rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_65rightcolContent{		margin: auto;	}}	.stacks_in_65posterWrapper 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_65posterWrapper 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_65posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_65posterWrapper img:hover{	cursor: pointer;}.stacks_in_65rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_65 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_72 *,
#stacks_in_72 *:before,
#stacks_in_72 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_74 {
	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_76 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_77 {
	font-weight: bold;
}

#stacks_in_78 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_79 {
	font-size: 90%;
}

#stacks_in_80 {
	margin:  7px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_81 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_356 .stacks_in_356-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_356 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_356 .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_356 .stacks_in_356-button,
#stacks_in_356 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_356 {
		text-align: center;
	}

	#stacks_in_356 .stacks_in_356-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_356 a.stacks_in_356-button, #stacks_in_356 a.stacks_in_356-button:visited, #stacks_in_356 a.stacks_in_356-button:hover, #stacks_in_356 a.stacks_in_356-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_356 .stacks_in_356-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_356 a.stacks_in_356-button, #stacks_in_356 a.stacks_in_356-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_356 a.stacks_in_356-button:hover, #stacks_in_356 a.stacks_in_356-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_356 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_356 a.stacks_in_356-button:hover .button_icon, #stacks_in_356 a.stacks_in_356-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_356 {
	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_82 article,
#stacks_in_82 aside,
#stacks_in_82 details,
#stacks_in_82 figcaption,
#stacks_in_82 figure,
#stacks_in_82 footer,
#stacks_in_82 header,
#stacks_in_82 hgroup,
#stacks_in_82 main,
#stacks_in_82 nav,
#stacks_in_82 section,
#stacks_in_82 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_82 audio,
#stacks_in_82 canvas,
#stacks_in_82 progress,
#stacks_in_82 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_82 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_82 [hidden],
#stacks_in_82 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_82 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_82 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_82 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_82 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_82 code,
#stacks_in_82 kbd,
#stacks_in_82 pre,
#stacks_in_82 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_82 *,
#stacks_in_82 *:before,
#stacks_in_82 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_82 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_82 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_82 .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_82 .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_82 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_82 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_82 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_82 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_82 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_82 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_82 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_82 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_82 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_82 *,
#stacks_in_82 *:before,
#stacks_in_82 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_82 .left {
  float: left !important; }

#stacks_in_82 .right {
  float: right !important; }

#stacks_in_82 .clearfix:before,
#stacks_in_82 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_82 .clearfix:after {
  clear: both; }

#stacks_in_82 .hide {
  display: none; }

#stacks_in_82 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_82 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_82 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_82 select {
  width: 100%; }

#stacks_in_82 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_82 .row:before,
#stacks_in_82 .row:after {
  content: " ";
  display: table; }

#stacks_in_82 .row:after {
  clear: both; }

#stacks_in_82 .row.collapse > .column,
#stacks_in_82 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_82 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_82 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_82 .row .row:before,
#stacks_in_82 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_82 .row .row:after {
  clear: both; }

#stacks_in_82 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_82 .row .row.collapse:before,
#stacks_in_82 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_82 .row .row.collapse:after {
  clear: both; }

#stacks_in_82 .column,
#stacks_in_82 .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_82 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_82 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_82 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82 .column,
  #stacks_in_82 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82 .small-1 {
    width: 8.33333%; }

  #stacks_in_82 .small-2 {
    width: 16.66667%; }

  #stacks_in_82 .small-3 {
    width: 25%; }

  #stacks_in_82 .small-4 {
    width: 33.33333%; }

  #stacks_in_82 .small-5 {
    width: 41.66667%; }

  #stacks_in_82 .small-6 {
    width: 50%; }

  #stacks_in_82 .small-7 {
    width: 58.33333%; }

  #stacks_in_82 .small-8 {
    width: 66.66667%; }

  #stacks_in_82 .small-9 {
    width: 75%; }

  #stacks_in_82 .small-10 {
    width: 83.33333%; }

  #stacks_in_82 .small-11 {
    width: 91.66667%; }

  #stacks_in_82 .small-12 {
    width: 100%; }

  #stacks_in_82 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82 .column.small-centered,
  #stacks_in_82 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82 .column.small-uncentered,
  #stacks_in_82 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82 .column.small-centered:last-child,
  #stacks_in_82 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_82 .column.small-uncentered:last-child,
  #stacks_in_82 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_82 .column.small-uncentered.opposite,
  #stacks_in_82 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_82 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82 .column,
  #stacks_in_82 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82 .medium-1 {
    width: 8.33333%; }

  #stacks_in_82 .medium-2 {
    width: 16.66667%; }

  #stacks_in_82 .medium-3 {
    width: 25%; }

  #stacks_in_82 .medium-4 {
    width: 33.33333%; }

  #stacks_in_82 .medium-5 {
    width: 41.66667%; }

  #stacks_in_82 .medium-6 {
    width: 50%; }

  #stacks_in_82 .medium-7 {
    width: 58.33333%; }

  #stacks_in_82 .medium-8 {
    width: 66.66667%; }

  #stacks_in_82 .medium-9 {
    width: 75%; }

  #stacks_in_82 .medium-10 {
    width: 83.33333%; }

  #stacks_in_82 .medium-11 {
    width: 91.66667%; }

  #stacks_in_82 .medium-12 {
    width: 100%; }

  #stacks_in_82 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82 .column.medium-centered,
  #stacks_in_82 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82 .column.medium-uncentered,
  #stacks_in_82 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82 .column.medium-centered:last-child,
  #stacks_in_82 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_82 .column.medium-uncentered:last-child,
  #stacks_in_82 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_82 .column.medium-uncentered.opposite,
  #stacks_in_82 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_82 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_82 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_82 .column,
  #stacks_in_82 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_82 .large-1 {
    width: 8.33333%; }

  #stacks_in_82 .large-2 {
    width: 16.66667%; }

  #stacks_in_82 .large-3 {
    width: 25%; }

  #stacks_in_82 .large-4 {
    width: 33.33333%; }

  #stacks_in_82 .large-5 {
    width: 41.66667%; }

  #stacks_in_82 .large-6 {
    width: 50%; }

  #stacks_in_82 .large-7 {
    width: 58.33333%; }

  #stacks_in_82 .large-8 {
    width: 66.66667%; }

  #stacks_in_82 .large-9 {
    width: 75%; }

  #stacks_in_82 .large-10 {
    width: 83.33333%; }

  #stacks_in_82 .large-11 {
    width: 91.66667%; }

  #stacks_in_82 .large-12 {
    width: 100%; }

  #stacks_in_82 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_82 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_82 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_82 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_82 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_82 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_82 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_82 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_82 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_82 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_82 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_82 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_82 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_82 .column.large-centered,
  #stacks_in_82 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_82 .column.large-uncentered,
  #stacks_in_82 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_82 .column.large-centered:last-child,
  #stacks_in_82 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_82 .column.large-uncentered:last-child,
  #stacks_in_82 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_82 .column.large-uncentered.opposite,
  #stacks_in_82 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_82 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_82 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_82 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_82 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_82 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_82 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_82 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_82 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_82 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_82 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_82 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_82 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_82 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_82 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_82 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_82 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_82 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_82 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_82 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_82 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_82 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_82 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_82 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_82 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_82 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_82 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_82 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_82 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_82 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_82 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_82 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_82 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_82 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_82 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_82 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_82 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_82 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_82 {
	margin: 50px 0px 20px 0px;
}
#stacks_in_84 *,
#stacks_in_84 *:before,
#stacks_in_84 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_86 {
	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_88 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_89 {
	font-weight: bold;
}

#stacks_in_90 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_91 {
	font-size: 90%;
}

#stacks_in_92 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_93 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_357 .stacks_in_357-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_357 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_357 .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_357 .stacks_in_357-button,
#stacks_in_357 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_357 {
		text-align: center;
	}

	#stacks_in_357 .stacks_in_357-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_357 a.stacks_in_357-button, #stacks_in_357 a.stacks_in_357-button:visited, #stacks_in_357 a.stacks_in_357-button:hover, #stacks_in_357 a.stacks_in_357-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_357 .stacks_in_357-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_357 a.stacks_in_357-button, #stacks_in_357 a.stacks_in_357-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_357 a.stacks_in_357-button:hover, #stacks_in_357 a.stacks_in_357-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_357 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_357 a.stacks_in_357-button:hover .button_icon, #stacks_in_357 a.stacks_in_357-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_357 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_95{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_95overlay{	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_95leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_95leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_95leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_95leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_95posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_95rightCol{	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_95rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_95theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_95overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_95leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_95leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_95leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_95leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_95rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_95rightcolContent{		margin: auto;	}}	.stacks_in_95posterWrapper 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_95posterWrapper 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_95posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_95posterWrapper img:hover{	cursor: pointer;}.stacks_in_95rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_95 {
	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_101 article,
#stacks_in_101 aside,
#stacks_in_101 details,
#stacks_in_101 figcaption,
#stacks_in_101 figure,
#stacks_in_101 footer,
#stacks_in_101 header,
#stacks_in_101 hgroup,
#stacks_in_101 main,
#stacks_in_101 nav,
#stacks_in_101 section,
#stacks_in_101 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_101 audio,
#stacks_in_101 canvas,
#stacks_in_101 progress,
#stacks_in_101 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_101 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_101 [hidden],
#stacks_in_101 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_101 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_101 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_101 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_101 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_101 code,
#stacks_in_101 kbd,
#stacks_in_101 pre,
#stacks_in_101 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_101 *,
#stacks_in_101 *:before,
#stacks_in_101 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_101 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_101 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_101 .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_101 .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_101 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_101 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_101 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_101 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_101 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_101 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_101 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_101 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_101 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_101 *,
#stacks_in_101 *:before,
#stacks_in_101 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_101 .left {
  float: left !important; }

#stacks_in_101 .right {
  float: right !important; }

#stacks_in_101 .clearfix:before,
#stacks_in_101 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_101 .clearfix:after {
  clear: both; }

#stacks_in_101 .hide {
  display: none; }

#stacks_in_101 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_101 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_101 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_101 select {
  width: 100%; }

#stacks_in_101 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_101 .row:before,
#stacks_in_101 .row:after {
  content: " ";
  display: table; }

#stacks_in_101 .row:after {
  clear: both; }

#stacks_in_101 .row.collapse > .column,
#stacks_in_101 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_101 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_101 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_101 .row .row:before,
#stacks_in_101 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_101 .row .row:after {
  clear: both; }

#stacks_in_101 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_101 .row .row.collapse:before,
#stacks_in_101 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_101 .row .row.collapse:after {
  clear: both; }

#stacks_in_101 .column,
#stacks_in_101 .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_101 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_101 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_101 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_101 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_101 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_101 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_101 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_101 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_101 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_101 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_101 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_101 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_101 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_101 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_101 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_101 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_101 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_101 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_101 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_101 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_101 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_101 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_101 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_101 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_101 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_101 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_101 .column,
  #stacks_in_101 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_101 .small-1 {
    width: 8.33333%; }

  #stacks_in_101 .small-2 {
    width: 16.66667%; }

  #stacks_in_101 .small-3 {
    width: 25%; }

  #stacks_in_101 .small-4 {
    width: 33.33333%; }

  #stacks_in_101 .small-5 {
    width: 41.66667%; }

  #stacks_in_101 .small-6 {
    width: 50%; }

  #stacks_in_101 .small-7 {
    width: 58.33333%; }

  #stacks_in_101 .small-8 {
    width: 66.66667%; }

  #stacks_in_101 .small-9 {
    width: 75%; }

  #stacks_in_101 .small-10 {
    width: 83.33333%; }

  #stacks_in_101 .small-11 {
    width: 91.66667%; }

  #stacks_in_101 .small-12 {
    width: 100%; }

  #stacks_in_101 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_101 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_101 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_101 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_101 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_101 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_101 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_101 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_101 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_101 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_101 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_101 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_101 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_101 .column.small-centered,
  #stacks_in_101 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_101 .column.small-uncentered,
  #stacks_in_101 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_101 .column.small-centered:last-child,
  #stacks_in_101 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_101 .column.small-uncentered:last-child,
  #stacks_in_101 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_101 .column.small-uncentered.opposite,
  #stacks_in_101 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_101 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_101 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_101 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_101 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_101 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_101 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_101 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_101 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_101 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_101 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_101 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_101 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_101 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_101 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_101 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_101 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_101 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_101 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_101 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_101 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_101 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_101 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_101 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_101 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_101 .column,
  #stacks_in_101 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_101 .medium-1 {
    width: 8.33333%; }

  #stacks_in_101 .medium-2 {
    width: 16.66667%; }

  #stacks_in_101 .medium-3 {
    width: 25%; }

  #stacks_in_101 .medium-4 {
    width: 33.33333%; }

  #stacks_in_101 .medium-5 {
    width: 41.66667%; }

  #stacks_in_101 .medium-6 {
    width: 50%; }

  #stacks_in_101 .medium-7 {
    width: 58.33333%; }

  #stacks_in_101 .medium-8 {
    width: 66.66667%; }

  #stacks_in_101 .medium-9 {
    width: 75%; }

  #stacks_in_101 .medium-10 {
    width: 83.33333%; }

  #stacks_in_101 .medium-11 {
    width: 91.66667%; }

  #stacks_in_101 .medium-12 {
    width: 100%; }

  #stacks_in_101 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_101 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_101 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_101 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_101 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_101 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_101 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_101 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_101 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_101 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_101 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_101 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_101 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_101 .column.medium-centered,
  #stacks_in_101 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_101 .column.medium-uncentered,
  #stacks_in_101 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_101 .column.medium-centered:last-child,
  #stacks_in_101 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_101 .column.medium-uncentered:last-child,
  #stacks_in_101 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_101 .column.medium-uncentered.opposite,
  #stacks_in_101 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_101 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_101 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_101 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_101 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_101 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_101 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_101 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_101 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_101 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_101 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_101 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_101 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_101 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_101 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_101 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_101 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_101 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_101 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_101 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_101 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_101 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_101 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_101 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_101 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_101 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_101 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_101 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_101 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_101 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_101 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_101 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_101 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_101 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_101 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_101 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_101 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_101 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_101 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_101 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_101 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_101 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_101 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_101 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_101 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_101 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_101 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_101 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_101 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_101 .column,
  #stacks_in_101 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_101 .large-1 {
    width: 8.33333%; }

  #stacks_in_101 .large-2 {
    width: 16.66667%; }

  #stacks_in_101 .large-3 {
    width: 25%; }

  #stacks_in_101 .large-4 {
    width: 33.33333%; }

  #stacks_in_101 .large-5 {
    width: 41.66667%; }

  #stacks_in_101 .large-6 {
    width: 50%; }

  #stacks_in_101 .large-7 {
    width: 58.33333%; }

  #stacks_in_101 .large-8 {
    width: 66.66667%; }

  #stacks_in_101 .large-9 {
    width: 75%; }

  #stacks_in_101 .large-10 {
    width: 83.33333%; }

  #stacks_in_101 .large-11 {
    width: 91.66667%; }

  #stacks_in_101 .large-12 {
    width: 100%; }

  #stacks_in_101 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_101 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_101 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_101 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_101 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_101 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_101 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_101 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_101 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_101 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_101 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_101 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_101 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_101 .column.large-centered,
  #stacks_in_101 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_101 .column.large-uncentered,
  #stacks_in_101 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_101 .column.large-centered:last-child,
  #stacks_in_101 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_101 .column.large-uncentered:last-child,
  #stacks_in_101 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_101 .column.large-uncentered.opposite,
  #stacks_in_101 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_101 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_101 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_101 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_101 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_101 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_101 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_101 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_101 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_101 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_101 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_101 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_101 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_101 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_101 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_101 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_101 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_101 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_101 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_101 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_101 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_101 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_101 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_101 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_101 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_101 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_101 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_101 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_101 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_101 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_101 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_101 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_101 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_101 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_101 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_101 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_101 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_101 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_101 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_101 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_101 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_101 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_101 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_103{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_103overlay{	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_103leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_103leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_103leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_103leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_103posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_103rightCol{	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_103rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_103theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_103overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_103leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_103leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_103leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_103leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_103rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_103rightcolContent{		margin: auto;	}}	.stacks_in_103posterWrapper 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_103posterWrapper 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_103posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_103posterWrapper img:hover{	cursor: pointer;}.stacks_in_103rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_103 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
}
#stacks_in_110 *,
#stacks_in_110 *:before,
#stacks_in_110 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_112 {
	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_114 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_115 {
	font-weight: bold;
}

#stacks_in_116 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_117 {
	font-size: 90%;
}

#stacks_in_118 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_119 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_358 .stacks_in_358-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_358 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_358 .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_358 .stacks_in_358-button,
#stacks_in_358 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_358 {
		text-align: center;
	}

	#stacks_in_358 .stacks_in_358-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_358 a.stacks_in_358-button, #stacks_in_358 a.stacks_in_358-button:visited, #stacks_in_358 a.stacks_in_358-button:hover, #stacks_in_358 a.stacks_in_358-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_358 .stacks_in_358-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_358 a.stacks_in_358-button, #stacks_in_358 a.stacks_in_358-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_358 a.stacks_in_358-button:hover, #stacks_in_358 a.stacks_in_358-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_358 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_358 a.stacks_in_358-button:hover .button_icon, #stacks_in_358 a.stacks_in_358-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_358 {
	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_120 article,
#stacks_in_120 aside,
#stacks_in_120 details,
#stacks_in_120 figcaption,
#stacks_in_120 figure,
#stacks_in_120 footer,
#stacks_in_120 header,
#stacks_in_120 hgroup,
#stacks_in_120 main,
#stacks_in_120 nav,
#stacks_in_120 section,
#stacks_in_120 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_120 audio,
#stacks_in_120 canvas,
#stacks_in_120 progress,
#stacks_in_120 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_120 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_120 [hidden],
#stacks_in_120 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_120 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_120 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_120 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_120 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_120 code,
#stacks_in_120 kbd,
#stacks_in_120 pre,
#stacks_in_120 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_120 *,
#stacks_in_120 *:before,
#stacks_in_120 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_120 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_120 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_120 .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_120 .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_120 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_120 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_120 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_120 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_120 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_120 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_120 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_120 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_120 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_120 *,
#stacks_in_120 *:before,
#stacks_in_120 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_120 .left {
  float: left !important; }

#stacks_in_120 .right {
  float: right !important; }

#stacks_in_120 .clearfix:before,
#stacks_in_120 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_120 .clearfix:after {
  clear: both; }

#stacks_in_120 .hide {
  display: none; }

#stacks_in_120 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_120 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_120 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_120 select {
  width: 100%; }

#stacks_in_120 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_120 .row:before,
#stacks_in_120 .row:after {
  content: " ";
  display: table; }

#stacks_in_120 .row:after {
  clear: both; }

#stacks_in_120 .row.collapse > .column,
#stacks_in_120 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_120 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_120 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_120 .row .row:before,
#stacks_in_120 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_120 .row .row:after {
  clear: both; }

#stacks_in_120 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_120 .row .row.collapse:before,
#stacks_in_120 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_120 .row .row.collapse:after {
  clear: both; }

#stacks_in_120 .column,
#stacks_in_120 .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_120 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_120 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_120 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_120 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_120 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_120 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_120 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_120 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_120 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_120 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_120 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_120 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_120 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_120 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_120 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_120 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_120 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_120 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_120 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_120 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_120 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_120 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_120 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_120 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_120 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_120 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_120 .column,
  #stacks_in_120 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_120 .small-1 {
    width: 8.33333%; }

  #stacks_in_120 .small-2 {
    width: 16.66667%; }

  #stacks_in_120 .small-3 {
    width: 25%; }

  #stacks_in_120 .small-4 {
    width: 33.33333%; }

  #stacks_in_120 .small-5 {
    width: 41.66667%; }

  #stacks_in_120 .small-6 {
    width: 50%; }

  #stacks_in_120 .small-7 {
    width: 58.33333%; }

  #stacks_in_120 .small-8 {
    width: 66.66667%; }

  #stacks_in_120 .small-9 {
    width: 75%; }

  #stacks_in_120 .small-10 {
    width: 83.33333%; }

  #stacks_in_120 .small-11 {
    width: 91.66667%; }

  #stacks_in_120 .small-12 {
    width: 100%; }

  #stacks_in_120 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_120 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_120 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_120 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_120 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_120 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_120 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_120 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_120 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_120 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_120 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_120 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_120 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_120 .column.small-centered,
  #stacks_in_120 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_120 .column.small-uncentered,
  #stacks_in_120 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_120 .column.small-centered:last-child,
  #stacks_in_120 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_120 .column.small-uncentered:last-child,
  #stacks_in_120 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_120 .column.small-uncentered.opposite,
  #stacks_in_120 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_120 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_120 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_120 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_120 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_120 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_120 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_120 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_120 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_120 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_120 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_120 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_120 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_120 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_120 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_120 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_120 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_120 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_120 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_120 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_120 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_120 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_120 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_120 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_120 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_120 .column,
  #stacks_in_120 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_120 .medium-1 {
    width: 8.33333%; }

  #stacks_in_120 .medium-2 {
    width: 16.66667%; }

  #stacks_in_120 .medium-3 {
    width: 25%; }

  #stacks_in_120 .medium-4 {
    width: 33.33333%; }

  #stacks_in_120 .medium-5 {
    width: 41.66667%; }

  #stacks_in_120 .medium-6 {
    width: 50%; }

  #stacks_in_120 .medium-7 {
    width: 58.33333%; }

  #stacks_in_120 .medium-8 {
    width: 66.66667%; }

  #stacks_in_120 .medium-9 {
    width: 75%; }

  #stacks_in_120 .medium-10 {
    width: 83.33333%; }

  #stacks_in_120 .medium-11 {
    width: 91.66667%; }

  #stacks_in_120 .medium-12 {
    width: 100%; }

  #stacks_in_120 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_120 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_120 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_120 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_120 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_120 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_120 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_120 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_120 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_120 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_120 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_120 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_120 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_120 .column.medium-centered,
  #stacks_in_120 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_120 .column.medium-uncentered,
  #stacks_in_120 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_120 .column.medium-centered:last-child,
  #stacks_in_120 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_120 .column.medium-uncentered:last-child,
  #stacks_in_120 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_120 .column.medium-uncentered.opposite,
  #stacks_in_120 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_120 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_120 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_120 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_120 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_120 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_120 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_120 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_120 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_120 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_120 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_120 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_120 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_120 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_120 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_120 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_120 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_120 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_120 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_120 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_120 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_120 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_120 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_120 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_120 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_120 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_120 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_120 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_120 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_120 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_120 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_120 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_120 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_120 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_120 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_120 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_120 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_120 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_120 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_120 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_120 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_120 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_120 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_120 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_120 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_120 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_120 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_120 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_120 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_120 .column,
  #stacks_in_120 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_120 .large-1 {
    width: 8.33333%; }

  #stacks_in_120 .large-2 {
    width: 16.66667%; }

  #stacks_in_120 .large-3 {
    width: 25%; }

  #stacks_in_120 .large-4 {
    width: 33.33333%; }

  #stacks_in_120 .large-5 {
    width: 41.66667%; }

  #stacks_in_120 .large-6 {
    width: 50%; }

  #stacks_in_120 .large-7 {
    width: 58.33333%; }

  #stacks_in_120 .large-8 {
    width: 66.66667%; }

  #stacks_in_120 .large-9 {
    width: 75%; }

  #stacks_in_120 .large-10 {
    width: 83.33333%; }

  #stacks_in_120 .large-11 {
    width: 91.66667%; }

  #stacks_in_120 .large-12 {
    width: 100%; }

  #stacks_in_120 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_120 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_120 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_120 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_120 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_120 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_120 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_120 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_120 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_120 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_120 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_120 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_120 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_120 .column.large-centered,
  #stacks_in_120 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_120 .column.large-uncentered,
  #stacks_in_120 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_120 .column.large-centered:last-child,
  #stacks_in_120 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_120 .column.large-uncentered:last-child,
  #stacks_in_120 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_120 .column.large-uncentered.opposite,
  #stacks_in_120 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_120 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_120 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_120 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_120 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_120 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_120 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_120 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_120 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_120 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_120 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_120 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_120 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_120 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_120 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_120 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_120 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_120 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_120 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_120 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_120 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_120 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_120 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_120 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_120 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_120 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_120 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_120 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_120 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_120 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_120 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_120 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_120 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_120 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_120 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_120 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_120 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_120 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_120 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_120 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_120 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_120 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_120 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_122{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_122overlay{	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_122leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_122leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_122leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_122leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_122posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_122rightCol{	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_122rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_122theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_122overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_122leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_122leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_122leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_122leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_122rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_122rightcolContent{		margin: auto;	}}	.stacks_in_122posterWrapper 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_122posterWrapper 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_122posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_122posterWrapper img:hover{	cursor: pointer;}.stacks_in_122rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */#stacks_in_129 *,
#stacks_in_129 *:before,
#stacks_in_129 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_131 {
	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_133 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_134 {
	font-weight: bold;
}

#stacks_in_135 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_136 {
	font-size: 90%;
}

#stacks_in_137 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_138 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_359 .stacks_in_359-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_359 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_359 .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_359 .stacks_in_359-button,
#stacks_in_359 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_359 {
		text-align: center;
	}

	#stacks_in_359 .stacks_in_359-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_359 a.stacks_in_359-button, #stacks_in_359 a.stacks_in_359-button:visited, #stacks_in_359 a.stacks_in_359-button:hover, #stacks_in_359 a.stacks_in_359-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_359 .stacks_in_359-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_359 a.stacks_in_359-button, #stacks_in_359 a.stacks_in_359-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_359 a.stacks_in_359-button:hover, #stacks_in_359 a.stacks_in_359-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_359 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_359 a.stacks_in_359-button:hover .button_icon, #stacks_in_359 a.stacks_in_359-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_359 {
	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_139 article,
#stacks_in_139 aside,
#stacks_in_139 details,
#stacks_in_139 figcaption,
#stacks_in_139 figure,
#stacks_in_139 footer,
#stacks_in_139 header,
#stacks_in_139 hgroup,
#stacks_in_139 main,
#stacks_in_139 nav,
#stacks_in_139 section,
#stacks_in_139 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_139 audio,
#stacks_in_139 canvas,
#stacks_in_139 progress,
#stacks_in_139 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_139 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_139 [hidden],
#stacks_in_139 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_139 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_139 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_139 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_139 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_139 code,
#stacks_in_139 kbd,
#stacks_in_139 pre,
#stacks_in_139 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_139 *,
#stacks_in_139 *:before,
#stacks_in_139 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_139 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_139 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_139 .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_139 .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_139 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_139 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_139 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_139 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_139 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_139 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_139 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_139 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_139 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_139 *,
#stacks_in_139 *:before,
#stacks_in_139 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_139 .left {
  float: left !important; }

#stacks_in_139 .right {
  float: right !important; }

#stacks_in_139 .clearfix:before,
#stacks_in_139 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_139 .clearfix:after {
  clear: both; }

#stacks_in_139 .hide {
  display: none; }

#stacks_in_139 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_139 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_139 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_139 select {
  width: 100%; }

#stacks_in_139 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_139 .row:before,
#stacks_in_139 .row:after {
  content: " ";
  display: table; }

#stacks_in_139 .row:after {
  clear: both; }

#stacks_in_139 .row.collapse > .column,
#stacks_in_139 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_139 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_139 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_139 .row .row:before,
#stacks_in_139 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_139 .row .row:after {
  clear: both; }

#stacks_in_139 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_139 .row .row.collapse:before,
#stacks_in_139 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_139 .row .row.collapse:after {
  clear: both; }

#stacks_in_139 .column,
#stacks_in_139 .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_139 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_139 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_139 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_139 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_139 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_139 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_139 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_139 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_139 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_139 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_139 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_139 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_139 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_139 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_139 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_139 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_139 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_139 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_139 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_139 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_139 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_139 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_139 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_139 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_139 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_139 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_139 .column,
  #stacks_in_139 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_139 .small-1 {
    width: 8.33333%; }

  #stacks_in_139 .small-2 {
    width: 16.66667%; }

  #stacks_in_139 .small-3 {
    width: 25%; }

  #stacks_in_139 .small-4 {
    width: 33.33333%; }

  #stacks_in_139 .small-5 {
    width: 41.66667%; }

  #stacks_in_139 .small-6 {
    width: 50%; }

  #stacks_in_139 .small-7 {
    width: 58.33333%; }

  #stacks_in_139 .small-8 {
    width: 66.66667%; }

  #stacks_in_139 .small-9 {
    width: 75%; }

  #stacks_in_139 .small-10 {
    width: 83.33333%; }

  #stacks_in_139 .small-11 {
    width: 91.66667%; }

  #stacks_in_139 .small-12 {
    width: 100%; }

  #stacks_in_139 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_139 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_139 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_139 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_139 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_139 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_139 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_139 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_139 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_139 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_139 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_139 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_139 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_139 .column.small-centered,
  #stacks_in_139 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_139 .column.small-uncentered,
  #stacks_in_139 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_139 .column.small-centered:last-child,
  #stacks_in_139 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_139 .column.small-uncentered:last-child,
  #stacks_in_139 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_139 .column.small-uncentered.opposite,
  #stacks_in_139 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_139 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_139 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_139 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_139 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_139 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_139 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_139 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_139 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_139 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_139 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_139 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_139 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_139 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_139 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_139 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_139 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_139 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_139 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_139 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_139 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_139 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_139 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_139 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_139 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_139 .column,
  #stacks_in_139 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_139 .medium-1 {
    width: 8.33333%; }

  #stacks_in_139 .medium-2 {
    width: 16.66667%; }

  #stacks_in_139 .medium-3 {
    width: 25%; }

  #stacks_in_139 .medium-4 {
    width: 33.33333%; }

  #stacks_in_139 .medium-5 {
    width: 41.66667%; }

  #stacks_in_139 .medium-6 {
    width: 50%; }

  #stacks_in_139 .medium-7 {
    width: 58.33333%; }

  #stacks_in_139 .medium-8 {
    width: 66.66667%; }

  #stacks_in_139 .medium-9 {
    width: 75%; }

  #stacks_in_139 .medium-10 {
    width: 83.33333%; }

  #stacks_in_139 .medium-11 {
    width: 91.66667%; }

  #stacks_in_139 .medium-12 {
    width: 100%; }

  #stacks_in_139 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_139 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_139 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_139 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_139 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_139 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_139 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_139 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_139 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_139 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_139 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_139 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_139 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_139 .column.medium-centered,
  #stacks_in_139 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_139 .column.medium-uncentered,
  #stacks_in_139 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_139 .column.medium-centered:last-child,
  #stacks_in_139 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_139 .column.medium-uncentered:last-child,
  #stacks_in_139 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_139 .column.medium-uncentered.opposite,
  #stacks_in_139 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_139 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_139 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_139 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_139 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_139 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_139 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_139 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_139 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_139 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_139 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_139 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_139 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_139 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_139 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_139 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_139 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_139 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_139 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_139 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_139 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_139 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_139 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_139 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_139 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_139 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_139 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_139 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_139 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_139 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_139 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_139 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_139 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_139 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_139 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_139 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_139 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_139 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_139 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_139 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_139 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_139 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_139 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_139 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_139 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_139 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_139 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_139 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_139 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_139 .column,
  #stacks_in_139 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_139 .large-1 {
    width: 8.33333%; }

  #stacks_in_139 .large-2 {
    width: 16.66667%; }

  #stacks_in_139 .large-3 {
    width: 25%; }

  #stacks_in_139 .large-4 {
    width: 33.33333%; }

  #stacks_in_139 .large-5 {
    width: 41.66667%; }

  #stacks_in_139 .large-6 {
    width: 50%; }

  #stacks_in_139 .large-7 {
    width: 58.33333%; }

  #stacks_in_139 .large-8 {
    width: 66.66667%; }

  #stacks_in_139 .large-9 {
    width: 75%; }

  #stacks_in_139 .large-10 {
    width: 83.33333%; }

  #stacks_in_139 .large-11 {
    width: 91.66667%; }

  #stacks_in_139 .large-12 {
    width: 100%; }

  #stacks_in_139 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_139 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_139 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_139 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_139 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_139 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_139 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_139 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_139 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_139 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_139 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_139 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_139 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_139 .column.large-centered,
  #stacks_in_139 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_139 .column.large-uncentered,
  #stacks_in_139 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_139 .column.large-centered:last-child,
  #stacks_in_139 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_139 .column.large-uncentered:last-child,
  #stacks_in_139 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_139 .column.large-uncentered.opposite,
  #stacks_in_139 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_139 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_139 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_139 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_139 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_139 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_139 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_139 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_139 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_139 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_139 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_139 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_139 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_139 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_139 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_139 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_139 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_139 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_139 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_139 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_139 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_139 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_139 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_139 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_139 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_139 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_139 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_139 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_139 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_139 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_139 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_139 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_139 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_139 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_139 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_139 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_139 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_139 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_139 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_139 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_139 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_139 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_139 {
	margin: 50px 0px 20px 0px;
}
#stacks_in_141 *,
#stacks_in_141 *:before,
#stacks_in_141 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_143 {
	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_145 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_146 {
	font-weight: bold;
}

#stacks_in_147 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_148 {
	font-size: 90%;
}

#stacks_in_149 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_150 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_360 .stacks_in_360-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_360 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_360 .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_360 .stacks_in_360-button,
#stacks_in_360 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_360 {
		text-align: center;
	}

	#stacks_in_360 .stacks_in_360-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_360 a.stacks_in_360-button, #stacks_in_360 a.stacks_in_360-button:visited, #stacks_in_360 a.stacks_in_360-button:hover, #stacks_in_360 a.stacks_in_360-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_360 .stacks_in_360-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_360 a.stacks_in_360-button, #stacks_in_360 a.stacks_in_360-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_360 a.stacks_in_360-button:hover, #stacks_in_360 a.stacks_in_360-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_360 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_360 a.stacks_in_360-button:hover .button_icon, #stacks_in_360 a.stacks_in_360-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_360 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_152{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_152overlay{	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_152leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_152leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_152leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_152leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_152posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_152rightCol{	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_152rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_152theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_152overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_152leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_152leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_152leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_152leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_152rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_152rightcolContent{		margin: auto;	}}	.stacks_in_152posterWrapper 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_152posterWrapper 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_152posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_152posterWrapper img:hover{	cursor: pointer;}.stacks_in_152rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_152 {
	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_158 article,
#stacks_in_158 aside,
#stacks_in_158 details,
#stacks_in_158 figcaption,
#stacks_in_158 figure,
#stacks_in_158 footer,
#stacks_in_158 header,
#stacks_in_158 hgroup,
#stacks_in_158 main,
#stacks_in_158 nav,
#stacks_in_158 section,
#stacks_in_158 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_158 audio,
#stacks_in_158 canvas,
#stacks_in_158 progress,
#stacks_in_158 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_158 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_158 [hidden],
#stacks_in_158 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_158 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_158 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_158 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_158 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_158 code,
#stacks_in_158 kbd,
#stacks_in_158 pre,
#stacks_in_158 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_158 *,
#stacks_in_158 *:before,
#stacks_in_158 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_158 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_158 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_158 .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_158 .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_158 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_158 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_158 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_158 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_158 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_158 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_158 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_158 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_158 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_158 *,
#stacks_in_158 *:before,
#stacks_in_158 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_158 .left {
  float: left !important; }

#stacks_in_158 .right {
  float: right !important; }

#stacks_in_158 .clearfix:before,
#stacks_in_158 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_158 .clearfix:after {
  clear: both; }

#stacks_in_158 .hide {
  display: none; }

#stacks_in_158 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_158 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_158 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_158 select {
  width: 100%; }

#stacks_in_158 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_158 .row:before,
#stacks_in_158 .row:after {
  content: " ";
  display: table; }

#stacks_in_158 .row:after {
  clear: both; }

#stacks_in_158 .row.collapse > .column,
#stacks_in_158 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_158 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_158 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_158 .row .row:before,
#stacks_in_158 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_158 .row .row:after {
  clear: both; }

#stacks_in_158 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_158 .row .row.collapse:before,
#stacks_in_158 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_158 .row .row.collapse:after {
  clear: both; }

#stacks_in_158 .column,
#stacks_in_158 .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_158 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_158 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_158 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_158 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_158 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_158 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_158 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_158 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_158 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_158 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_158 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_158 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_158 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_158 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_158 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_158 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_158 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_158 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_158 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_158 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_158 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_158 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_158 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_158 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_158 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_158 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_158 .column,
  #stacks_in_158 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_158 .small-1 {
    width: 8.33333%; }

  #stacks_in_158 .small-2 {
    width: 16.66667%; }

  #stacks_in_158 .small-3 {
    width: 25%; }

  #stacks_in_158 .small-4 {
    width: 33.33333%; }

  #stacks_in_158 .small-5 {
    width: 41.66667%; }

  #stacks_in_158 .small-6 {
    width: 50%; }

  #stacks_in_158 .small-7 {
    width: 58.33333%; }

  #stacks_in_158 .small-8 {
    width: 66.66667%; }

  #stacks_in_158 .small-9 {
    width: 75%; }

  #stacks_in_158 .small-10 {
    width: 83.33333%; }

  #stacks_in_158 .small-11 {
    width: 91.66667%; }

  #stacks_in_158 .small-12 {
    width: 100%; }

  #stacks_in_158 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_158 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_158 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_158 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_158 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_158 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_158 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_158 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_158 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_158 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_158 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_158 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_158 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_158 .column.small-centered,
  #stacks_in_158 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_158 .column.small-uncentered,
  #stacks_in_158 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_158 .column.small-centered:last-child,
  #stacks_in_158 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_158 .column.small-uncentered:last-child,
  #stacks_in_158 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_158 .column.small-uncentered.opposite,
  #stacks_in_158 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_158 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_158 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_158 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_158 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_158 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_158 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_158 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_158 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_158 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_158 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_158 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_158 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_158 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_158 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_158 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_158 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_158 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_158 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_158 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_158 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_158 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_158 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_158 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_158 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_158 .column,
  #stacks_in_158 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_158 .medium-1 {
    width: 8.33333%; }

  #stacks_in_158 .medium-2 {
    width: 16.66667%; }

  #stacks_in_158 .medium-3 {
    width: 25%; }

  #stacks_in_158 .medium-4 {
    width: 33.33333%; }

  #stacks_in_158 .medium-5 {
    width: 41.66667%; }

  #stacks_in_158 .medium-6 {
    width: 50%; }

  #stacks_in_158 .medium-7 {
    width: 58.33333%; }

  #stacks_in_158 .medium-8 {
    width: 66.66667%; }

  #stacks_in_158 .medium-9 {
    width: 75%; }

  #stacks_in_158 .medium-10 {
    width: 83.33333%; }

  #stacks_in_158 .medium-11 {
    width: 91.66667%; }

  #stacks_in_158 .medium-12 {
    width: 100%; }

  #stacks_in_158 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_158 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_158 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_158 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_158 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_158 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_158 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_158 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_158 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_158 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_158 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_158 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_158 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_158 .column.medium-centered,
  #stacks_in_158 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_158 .column.medium-uncentered,
  #stacks_in_158 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_158 .column.medium-centered:last-child,
  #stacks_in_158 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_158 .column.medium-uncentered:last-child,
  #stacks_in_158 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_158 .column.medium-uncentered.opposite,
  #stacks_in_158 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_158 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_158 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_158 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_158 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_158 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_158 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_158 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_158 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_158 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_158 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_158 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_158 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_158 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_158 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_158 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_158 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_158 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_158 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_158 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_158 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_158 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_158 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_158 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_158 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_158 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_158 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_158 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_158 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_158 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_158 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_158 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_158 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_158 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_158 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_158 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_158 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_158 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_158 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_158 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_158 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_158 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_158 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_158 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_158 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_158 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_158 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_158 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_158 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_158 .column,
  #stacks_in_158 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_158 .large-1 {
    width: 8.33333%; }

  #stacks_in_158 .large-2 {
    width: 16.66667%; }

  #stacks_in_158 .large-3 {
    width: 25%; }

  #stacks_in_158 .large-4 {
    width: 33.33333%; }

  #stacks_in_158 .large-5 {
    width: 41.66667%; }

  #stacks_in_158 .large-6 {
    width: 50%; }

  #stacks_in_158 .large-7 {
    width: 58.33333%; }

  #stacks_in_158 .large-8 {
    width: 66.66667%; }

  #stacks_in_158 .large-9 {
    width: 75%; }

  #stacks_in_158 .large-10 {
    width: 83.33333%; }

  #stacks_in_158 .large-11 {
    width: 91.66667%; }

  #stacks_in_158 .large-12 {
    width: 100%; }

  #stacks_in_158 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_158 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_158 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_158 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_158 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_158 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_158 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_158 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_158 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_158 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_158 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_158 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_158 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_158 .column.large-centered,
  #stacks_in_158 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_158 .column.large-uncentered,
  #stacks_in_158 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_158 .column.large-centered:last-child,
  #stacks_in_158 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_158 .column.large-uncentered:last-child,
  #stacks_in_158 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_158 .column.large-uncentered.opposite,
  #stacks_in_158 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_158 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_158 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_158 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_158 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_158 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_158 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_158 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_158 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_158 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_158 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_158 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_158 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_158 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_158 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_158 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_158 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_158 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_158 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_158 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_158 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_158 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_158 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_158 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_158 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_158 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_158 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_158 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_158 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_158 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_158 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_158 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_158 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_158 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_158 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_158 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_158 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_158 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_158 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_158 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_158 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_158 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_158 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_160{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_160overlay{	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_160leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_160leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_160leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_160leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_160posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_160rightCol{	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_160rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_160theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_160overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_160leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_160leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_160leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_160leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_160rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_160rightcolContent{		margin: auto;	}}	.stacks_in_160posterWrapper 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_160posterWrapper 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_160posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_160posterWrapper img:hover{	cursor: pointer;}.stacks_in_160rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_160 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_167 *,
#stacks_in_167 *:before,
#stacks_in_167 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_169 {
	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_171 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_172 {
	font-weight: bold;
}

#stacks_in_173 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_174 {
	font-size: 90%;
}

#stacks_in_175 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_176 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_361 .stacks_in_361-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_361 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_361 .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_361 .stacks_in_361-button,
#stacks_in_361 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_361 {
		text-align: center;
	}

	#stacks_in_361 .stacks_in_361-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_361 a.stacks_in_361-button, #stacks_in_361 a.stacks_in_361-button:visited, #stacks_in_361 a.stacks_in_361-button:hover, #stacks_in_361 a.stacks_in_361-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_361 .stacks_in_361-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_361 a.stacks_in_361-button, #stacks_in_361 a.stacks_in_361-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_361 a.stacks_in_361-button:hover, #stacks_in_361 a.stacks_in_361-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_361 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_361 a.stacks_in_361-button:hover .button_icon, #stacks_in_361 a.stacks_in_361-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_361 {
	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_177 article,
#stacks_in_177 aside,
#stacks_in_177 details,
#stacks_in_177 figcaption,
#stacks_in_177 figure,
#stacks_in_177 footer,
#stacks_in_177 header,
#stacks_in_177 hgroup,
#stacks_in_177 main,
#stacks_in_177 nav,
#stacks_in_177 section,
#stacks_in_177 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_177 audio,
#stacks_in_177 canvas,
#stacks_in_177 progress,
#stacks_in_177 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_177 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_177 [hidden],
#stacks_in_177 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_177 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_177 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_177 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_177 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_177 code,
#stacks_in_177 kbd,
#stacks_in_177 pre,
#stacks_in_177 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_177 *,
#stacks_in_177 *:before,
#stacks_in_177 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_177 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_177 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_177 .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_177 .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_177 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_177 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_177 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_177 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_177 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_177 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_177 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_177 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_177 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_177 *,
#stacks_in_177 *:before,
#stacks_in_177 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_177 .left {
  float: left !important; }

#stacks_in_177 .right {
  float: right !important; }

#stacks_in_177 .clearfix:before,
#stacks_in_177 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_177 .clearfix:after {
  clear: both; }

#stacks_in_177 .hide {
  display: none; }

#stacks_in_177 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_177 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_177 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_177 select {
  width: 100%; }

#stacks_in_177 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_177 .row:before,
#stacks_in_177 .row:after {
  content: " ";
  display: table; }

#stacks_in_177 .row:after {
  clear: both; }

#stacks_in_177 .row.collapse > .column,
#stacks_in_177 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_177 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_177 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_177 .row .row:before,
#stacks_in_177 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_177 .row .row:after {
  clear: both; }

#stacks_in_177 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_177 .row .row.collapse:before,
#stacks_in_177 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_177 .row .row.collapse:after {
  clear: both; }

#stacks_in_177 .column,
#stacks_in_177 .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_177 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_177 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_177 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_177 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_177 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_177 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_177 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_177 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_177 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_177 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_177 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_177 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_177 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_177 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_177 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_177 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_177 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_177 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_177 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_177 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_177 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_177 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_177 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_177 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_177 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_177 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_177 .column,
  #stacks_in_177 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_177 .small-1 {
    width: 8.33333%; }

  #stacks_in_177 .small-2 {
    width: 16.66667%; }

  #stacks_in_177 .small-3 {
    width: 25%; }

  #stacks_in_177 .small-4 {
    width: 33.33333%; }

  #stacks_in_177 .small-5 {
    width: 41.66667%; }

  #stacks_in_177 .small-6 {
    width: 50%; }

  #stacks_in_177 .small-7 {
    width: 58.33333%; }

  #stacks_in_177 .small-8 {
    width: 66.66667%; }

  #stacks_in_177 .small-9 {
    width: 75%; }

  #stacks_in_177 .small-10 {
    width: 83.33333%; }

  #stacks_in_177 .small-11 {
    width: 91.66667%; }

  #stacks_in_177 .small-12 {
    width: 100%; }

  #stacks_in_177 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_177 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_177 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_177 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_177 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_177 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_177 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_177 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_177 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_177 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_177 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_177 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_177 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_177 .column.small-centered,
  #stacks_in_177 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_177 .column.small-uncentered,
  #stacks_in_177 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_177 .column.small-centered:last-child,
  #stacks_in_177 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_177 .column.small-uncentered:last-child,
  #stacks_in_177 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_177 .column.small-uncentered.opposite,
  #stacks_in_177 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_177 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_177 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_177 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_177 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_177 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_177 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_177 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_177 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_177 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_177 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_177 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_177 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_177 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_177 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_177 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_177 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_177 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_177 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_177 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_177 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_177 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_177 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_177 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_177 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_177 .column,
  #stacks_in_177 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_177 .medium-1 {
    width: 8.33333%; }

  #stacks_in_177 .medium-2 {
    width: 16.66667%; }

  #stacks_in_177 .medium-3 {
    width: 25%; }

  #stacks_in_177 .medium-4 {
    width: 33.33333%; }

  #stacks_in_177 .medium-5 {
    width: 41.66667%; }

  #stacks_in_177 .medium-6 {
    width: 50%; }

  #stacks_in_177 .medium-7 {
    width: 58.33333%; }

  #stacks_in_177 .medium-8 {
    width: 66.66667%; }

  #stacks_in_177 .medium-9 {
    width: 75%; }

  #stacks_in_177 .medium-10 {
    width: 83.33333%; }

  #stacks_in_177 .medium-11 {
    width: 91.66667%; }

  #stacks_in_177 .medium-12 {
    width: 100%; }

  #stacks_in_177 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_177 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_177 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_177 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_177 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_177 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_177 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_177 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_177 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_177 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_177 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_177 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_177 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_177 .column.medium-centered,
  #stacks_in_177 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_177 .column.medium-uncentered,
  #stacks_in_177 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_177 .column.medium-centered:last-child,
  #stacks_in_177 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_177 .column.medium-uncentered:last-child,
  #stacks_in_177 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_177 .column.medium-uncentered.opposite,
  #stacks_in_177 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_177 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_177 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_177 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_177 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_177 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_177 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_177 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_177 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_177 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_177 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_177 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_177 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_177 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_177 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_177 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_177 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_177 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_177 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_177 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_177 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_177 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_177 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_177 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_177 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_177 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_177 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_177 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_177 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_177 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_177 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_177 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_177 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_177 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_177 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_177 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_177 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_177 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_177 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_177 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_177 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_177 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_177 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_177 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_177 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_177 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_177 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_177 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_177 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_177 .column,
  #stacks_in_177 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_177 .large-1 {
    width: 8.33333%; }

  #stacks_in_177 .large-2 {
    width: 16.66667%; }

  #stacks_in_177 .large-3 {
    width: 25%; }

  #stacks_in_177 .large-4 {
    width: 33.33333%; }

  #stacks_in_177 .large-5 {
    width: 41.66667%; }

  #stacks_in_177 .large-6 {
    width: 50%; }

  #stacks_in_177 .large-7 {
    width: 58.33333%; }

  #stacks_in_177 .large-8 {
    width: 66.66667%; }

  #stacks_in_177 .large-9 {
    width: 75%; }

  #stacks_in_177 .large-10 {
    width: 83.33333%; }

  #stacks_in_177 .large-11 {
    width: 91.66667%; }

  #stacks_in_177 .large-12 {
    width: 100%; }

  #stacks_in_177 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_177 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_177 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_177 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_177 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_177 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_177 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_177 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_177 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_177 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_177 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_177 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_177 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_177 .column.large-centered,
  #stacks_in_177 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_177 .column.large-uncentered,
  #stacks_in_177 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_177 .column.large-centered:last-child,
  #stacks_in_177 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_177 .column.large-uncentered:last-child,
  #stacks_in_177 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_177 .column.large-uncentered.opposite,
  #stacks_in_177 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_177 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_177 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_177 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_177 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_177 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_177 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_177 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_177 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_177 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_177 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_177 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_177 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_177 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_177 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_177 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_177 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_177 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_177 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_177 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_177 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_177 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_177 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_177 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_177 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_177 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_177 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_177 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_177 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_177 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_177 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_177 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_177 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_177 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_177 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_177 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_177 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_177 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_177 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_177 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_177 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_177 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_177 {
	margin: 30px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_179{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_179overlay{	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_179leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_179leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_179leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_179leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_179posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_179rightCol{	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_179rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_179theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_179overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_179leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_179leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_179leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_179leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_179rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_179rightcolContent{		margin: auto;	}}	.stacks_in_179posterWrapper 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_179posterWrapper 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_179posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_179posterWrapper img:hover{	cursor: pointer;}.stacks_in_179rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_179 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_186 *,
#stacks_in_186 *:before,
#stacks_in_186 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_188 {
	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_190 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_191 {
	font-weight: bold;
}

#stacks_in_192 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_193 {
	font-size: 90%;
}

#stacks_in_194 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_195 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_362 .stacks_in_362-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_362 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_362 .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_362 .stacks_in_362-button,
#stacks_in_362 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_362 {
		text-align: center;
	}

	#stacks_in_362 .stacks_in_362-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_362 a.stacks_in_362-button, #stacks_in_362 a.stacks_in_362-button:visited, #stacks_in_362 a.stacks_in_362-button:hover, #stacks_in_362 a.stacks_in_362-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_362 .stacks_in_362-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_362 a.stacks_in_362-button, #stacks_in_362 a.stacks_in_362-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_362 a.stacks_in_362-button:hover, #stacks_in_362 a.stacks_in_362-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_362 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_362 a.stacks_in_362-button:hover .button_icon, #stacks_in_362 a.stacks_in_362-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_362 {
	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_283 article,
#stacks_in_283 aside,
#stacks_in_283 details,
#stacks_in_283 figcaption,
#stacks_in_283 figure,
#stacks_in_283 footer,
#stacks_in_283 header,
#stacks_in_283 hgroup,
#stacks_in_283 main,
#stacks_in_283 nav,
#stacks_in_283 section,
#stacks_in_283 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_283 audio,
#stacks_in_283 canvas,
#stacks_in_283 progress,
#stacks_in_283 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_283 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_283 [hidden],
#stacks_in_283 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_283 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_283 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_283 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_283 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_283 code,
#stacks_in_283 kbd,
#stacks_in_283 pre,
#stacks_in_283 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_283 *,
#stacks_in_283 *:before,
#stacks_in_283 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_283 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_283 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_283 .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_283 .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_283 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_283 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_283 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_283 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_283 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_283 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_283 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_283 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_283 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_283 *,
#stacks_in_283 *:before,
#stacks_in_283 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_283 .left {
  float: left !important; }

#stacks_in_283 .right {
  float: right !important; }

#stacks_in_283 .clearfix:before,
#stacks_in_283 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_283 .clearfix:after {
  clear: both; }

#stacks_in_283 .hide {
  display: none; }

#stacks_in_283 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_283 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_283 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_283 select {
  width: 100%; }

#stacks_in_283 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_283 .row:before,
#stacks_in_283 .row:after {
  content: " ";
  display: table; }

#stacks_in_283 .row:after {
  clear: both; }

#stacks_in_283 .row.collapse > .column,
#stacks_in_283 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_283 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_283 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_283 .row .row:before,
#stacks_in_283 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_283 .row .row:after {
  clear: both; }

#stacks_in_283 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_283 .row .row.collapse:before,
#stacks_in_283 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_283 .row .row.collapse:after {
  clear: both; }

#stacks_in_283 .column,
#stacks_in_283 .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_283 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_283 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_283 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_283 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_283 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_283 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_283 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_283 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_283 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_283 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_283 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_283 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_283 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_283 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_283 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_283 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_283 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_283 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_283 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_283 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_283 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_283 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_283 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_283 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_283 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_283 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_283 .column,
  #stacks_in_283 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_283 .small-1 {
    width: 8.33333%; }

  #stacks_in_283 .small-2 {
    width: 16.66667%; }

  #stacks_in_283 .small-3 {
    width: 25%; }

  #stacks_in_283 .small-4 {
    width: 33.33333%; }

  #stacks_in_283 .small-5 {
    width: 41.66667%; }

  #stacks_in_283 .small-6 {
    width: 50%; }

  #stacks_in_283 .small-7 {
    width: 58.33333%; }

  #stacks_in_283 .small-8 {
    width: 66.66667%; }

  #stacks_in_283 .small-9 {
    width: 75%; }

  #stacks_in_283 .small-10 {
    width: 83.33333%; }

  #stacks_in_283 .small-11 {
    width: 91.66667%; }

  #stacks_in_283 .small-12 {
    width: 100%; }

  #stacks_in_283 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_283 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_283 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_283 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_283 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_283 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_283 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_283 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_283 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_283 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_283 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_283 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_283 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_283 .column.small-centered,
  #stacks_in_283 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_283 .column.small-uncentered,
  #stacks_in_283 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_283 .column.small-centered:last-child,
  #stacks_in_283 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_283 .column.small-uncentered:last-child,
  #stacks_in_283 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_283 .column.small-uncentered.opposite,
  #stacks_in_283 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_283 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_283 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_283 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_283 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_283 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_283 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_283 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_283 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_283 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_283 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_283 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_283 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_283 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_283 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_283 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_283 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_283 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_283 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_283 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_283 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_283 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_283 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_283 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_283 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_283 .column,
  #stacks_in_283 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_283 .medium-1 {
    width: 8.33333%; }

  #stacks_in_283 .medium-2 {
    width: 16.66667%; }

  #stacks_in_283 .medium-3 {
    width: 25%; }

  #stacks_in_283 .medium-4 {
    width: 33.33333%; }

  #stacks_in_283 .medium-5 {
    width: 41.66667%; }

  #stacks_in_283 .medium-6 {
    width: 50%; }

  #stacks_in_283 .medium-7 {
    width: 58.33333%; }

  #stacks_in_283 .medium-8 {
    width: 66.66667%; }

  #stacks_in_283 .medium-9 {
    width: 75%; }

  #stacks_in_283 .medium-10 {
    width: 83.33333%; }

  #stacks_in_283 .medium-11 {
    width: 91.66667%; }

  #stacks_in_283 .medium-12 {
    width: 100%; }

  #stacks_in_283 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_283 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_283 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_283 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_283 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_283 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_283 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_283 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_283 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_283 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_283 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_283 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_283 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_283 .column.medium-centered,
  #stacks_in_283 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_283 .column.medium-uncentered,
  #stacks_in_283 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_283 .column.medium-centered:last-child,
  #stacks_in_283 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_283 .column.medium-uncentered:last-child,
  #stacks_in_283 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_283 .column.medium-uncentered.opposite,
  #stacks_in_283 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_283 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_283 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_283 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_283 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_283 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_283 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_283 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_283 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_283 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_283 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_283 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_283 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_283 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_283 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_283 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_283 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_283 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_283 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_283 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_283 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_283 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_283 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_283 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_283 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_283 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_283 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_283 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_283 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_283 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_283 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_283 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_283 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_283 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_283 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_283 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_283 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_283 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_283 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_283 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_283 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_283 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_283 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_283 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_283 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_283 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_283 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_283 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_283 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_283 .column,
  #stacks_in_283 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_283 .large-1 {
    width: 8.33333%; }

  #stacks_in_283 .large-2 {
    width: 16.66667%; }

  #stacks_in_283 .large-3 {
    width: 25%; }

  #stacks_in_283 .large-4 {
    width: 33.33333%; }

  #stacks_in_283 .large-5 {
    width: 41.66667%; }

  #stacks_in_283 .large-6 {
    width: 50%; }

  #stacks_in_283 .large-7 {
    width: 58.33333%; }

  #stacks_in_283 .large-8 {
    width: 66.66667%; }

  #stacks_in_283 .large-9 {
    width: 75%; }

  #stacks_in_283 .large-10 {
    width: 83.33333%; }

  #stacks_in_283 .large-11 {
    width: 91.66667%; }

  #stacks_in_283 .large-12 {
    width: 100%; }

  #stacks_in_283 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_283 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_283 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_283 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_283 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_283 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_283 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_283 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_283 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_283 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_283 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_283 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_283 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_283 .column.large-centered,
  #stacks_in_283 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_283 .column.large-uncentered,
  #stacks_in_283 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_283 .column.large-centered:last-child,
  #stacks_in_283 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_283 .column.large-uncentered:last-child,
  #stacks_in_283 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_283 .column.large-uncentered.opposite,
  #stacks_in_283 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_283 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_283 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_283 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_283 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_283 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_283 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_283 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_283 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_283 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_283 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_283 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_283 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_283 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_283 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_283 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_283 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_283 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_283 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_283 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_283 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_283 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_283 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_283 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_283 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_283 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_283 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_283 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_283 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_283 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_283 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_283 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_283 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_283 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_283 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_283 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_283 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_283 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_283 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_283 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_283 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_283 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_283 {
	margin: 30px 0px 20px 0px;
}
#stacks_in_291 *,
#stacks_in_291 *:before,
#stacks_in_291 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_292 {
	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_294 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_296 {
	font-weight: bold;
}

#stacks_in_297 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_298 {
	font-size: 90%;
}

#stacks_in_299 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_300 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_363 .stacks_in_363-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_363 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_363 .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_363 .stacks_in_363-button,
#stacks_in_363 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_363 {
		text-align: center;
	}

	#stacks_in_363 .stacks_in_363-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_363 a.stacks_in_363-button, #stacks_in_363 a.stacks_in_363-button:visited, #stacks_in_363 a.stacks_in_363-button:hover, #stacks_in_363 a.stacks_in_363-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_363 .stacks_in_363-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_363 a.stacks_in_363-button, #stacks_in_363 a.stacks_in_363-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_363 a.stacks_in_363-button:hover, #stacks_in_363 a.stacks_in_363-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_363 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_363 a.stacks_in_363-button:hover .button_icon, #stacks_in_363 a.stacks_in_363-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_363 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_284{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_284overlay{	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_284leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_284leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_284leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_284leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_284posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_284rightCol{	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_284rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_284theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_284overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_284leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_284leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_284leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_284leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_284rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_284rightcolContent{		margin: auto;	}}	.stacks_in_284posterWrapper 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_284posterWrapper 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_284posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_284posterWrapper img:hover{	cursor: pointer;}.stacks_in_284rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_284 {
	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_304 article,
#stacks_in_304 aside,
#stacks_in_304 details,
#stacks_in_304 figcaption,
#stacks_in_304 figure,
#stacks_in_304 footer,
#stacks_in_304 header,
#stacks_in_304 hgroup,
#stacks_in_304 main,
#stacks_in_304 nav,
#stacks_in_304 section,
#stacks_in_304 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_304 audio,
#stacks_in_304 canvas,
#stacks_in_304 progress,
#stacks_in_304 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_304 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_304 [hidden],
#stacks_in_304 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_304 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_304 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_304 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_304 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_304 code,
#stacks_in_304 kbd,
#stacks_in_304 pre,
#stacks_in_304 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_304 *,
#stacks_in_304 *:before,
#stacks_in_304 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_304 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_304 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_304 .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_304 .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_304 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_304 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_304 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_304 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_304 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_304 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_304 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_304 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_304 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_304 *,
#stacks_in_304 *:before,
#stacks_in_304 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_304 .left {
  float: left !important; }

#stacks_in_304 .right {
  float: right !important; }

#stacks_in_304 .clearfix:before,
#stacks_in_304 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_304 .clearfix:after {
  clear: both; }

#stacks_in_304 .hide {
  display: none; }

#stacks_in_304 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_304 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_304 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_304 select {
  width: 100%; }

#stacks_in_304 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_304 .row:before,
#stacks_in_304 .row:after {
  content: " ";
  display: table; }

#stacks_in_304 .row:after {
  clear: both; }

#stacks_in_304 .row.collapse > .column,
#stacks_in_304 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_304 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_304 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_304 .row .row:before,
#stacks_in_304 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_304 .row .row:after {
  clear: both; }

#stacks_in_304 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_304 .row .row.collapse:before,
#stacks_in_304 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_304 .row .row.collapse:after {
  clear: both; }

#stacks_in_304 .column,
#stacks_in_304 .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_304 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_304 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_304 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_304 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_304 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_304 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_304 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_304 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_304 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_304 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_304 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_304 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_304 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_304 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_304 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_304 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_304 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_304 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_304 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_304 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_304 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_304 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_304 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_304 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_304 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_304 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_304 .column,
  #stacks_in_304 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_304 .small-1 {
    width: 8.33333%; }

  #stacks_in_304 .small-2 {
    width: 16.66667%; }

  #stacks_in_304 .small-3 {
    width: 25%; }

  #stacks_in_304 .small-4 {
    width: 33.33333%; }

  #stacks_in_304 .small-5 {
    width: 41.66667%; }

  #stacks_in_304 .small-6 {
    width: 50%; }

  #stacks_in_304 .small-7 {
    width: 58.33333%; }

  #stacks_in_304 .small-8 {
    width: 66.66667%; }

  #stacks_in_304 .small-9 {
    width: 75%; }

  #stacks_in_304 .small-10 {
    width: 83.33333%; }

  #stacks_in_304 .small-11 {
    width: 91.66667%; }

  #stacks_in_304 .small-12 {
    width: 100%; }

  #stacks_in_304 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_304 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_304 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_304 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_304 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_304 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_304 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_304 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_304 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_304 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_304 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_304 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_304 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_304 .column.small-centered,
  #stacks_in_304 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_304 .column.small-uncentered,
  #stacks_in_304 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_304 .column.small-centered:last-child,
  #stacks_in_304 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_304 .column.small-uncentered:last-child,
  #stacks_in_304 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_304 .column.small-uncentered.opposite,
  #stacks_in_304 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_304 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_304 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_304 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_304 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_304 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_304 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_304 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_304 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_304 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_304 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_304 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_304 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_304 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_304 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_304 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_304 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_304 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_304 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_304 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_304 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_304 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_304 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_304 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_304 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_304 .column,
  #stacks_in_304 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_304 .medium-1 {
    width: 8.33333%; }

  #stacks_in_304 .medium-2 {
    width: 16.66667%; }

  #stacks_in_304 .medium-3 {
    width: 25%; }

  #stacks_in_304 .medium-4 {
    width: 33.33333%; }

  #stacks_in_304 .medium-5 {
    width: 41.66667%; }

  #stacks_in_304 .medium-6 {
    width: 50%; }

  #stacks_in_304 .medium-7 {
    width: 58.33333%; }

  #stacks_in_304 .medium-8 {
    width: 66.66667%; }

  #stacks_in_304 .medium-9 {
    width: 75%; }

  #stacks_in_304 .medium-10 {
    width: 83.33333%; }

  #stacks_in_304 .medium-11 {
    width: 91.66667%; }

  #stacks_in_304 .medium-12 {
    width: 100%; }

  #stacks_in_304 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_304 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_304 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_304 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_304 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_304 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_304 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_304 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_304 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_304 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_304 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_304 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_304 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_304 .column.medium-centered,
  #stacks_in_304 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_304 .column.medium-uncentered,
  #stacks_in_304 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_304 .column.medium-centered:last-child,
  #stacks_in_304 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_304 .column.medium-uncentered:last-child,
  #stacks_in_304 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_304 .column.medium-uncentered.opposite,
  #stacks_in_304 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_304 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_304 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_304 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_304 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_304 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_304 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_304 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_304 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_304 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_304 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_304 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_304 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_304 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_304 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_304 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_304 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_304 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_304 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_304 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_304 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_304 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_304 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_304 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_304 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_304 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_304 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_304 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_304 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_304 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_304 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_304 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_304 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_304 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_304 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_304 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_304 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_304 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_304 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_304 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_304 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_304 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_304 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_304 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_304 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_304 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_304 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_304 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_304 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_304 .column,
  #stacks_in_304 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_304 .large-1 {
    width: 8.33333%; }

  #stacks_in_304 .large-2 {
    width: 16.66667%; }

  #stacks_in_304 .large-3 {
    width: 25%; }

  #stacks_in_304 .large-4 {
    width: 33.33333%; }

  #stacks_in_304 .large-5 {
    width: 41.66667%; }

  #stacks_in_304 .large-6 {
    width: 50%; }

  #stacks_in_304 .large-7 {
    width: 58.33333%; }

  #stacks_in_304 .large-8 {
    width: 66.66667%; }

  #stacks_in_304 .large-9 {
    width: 75%; }

  #stacks_in_304 .large-10 {
    width: 83.33333%; }

  #stacks_in_304 .large-11 {
    width: 91.66667%; }

  #stacks_in_304 .large-12 {
    width: 100%; }

  #stacks_in_304 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_304 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_304 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_304 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_304 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_304 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_304 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_304 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_304 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_304 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_304 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_304 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_304 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_304 .column.large-centered,
  #stacks_in_304 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_304 .column.large-uncentered,
  #stacks_in_304 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_304 .column.large-centered:last-child,
  #stacks_in_304 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_304 .column.large-uncentered:last-child,
  #stacks_in_304 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_304 .column.large-uncentered.opposite,
  #stacks_in_304 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_304 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_304 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_304 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_304 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_304 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_304 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_304 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_304 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_304 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_304 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_304 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_304 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_304 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_304 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_304 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_304 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_304 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_304 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_304 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_304 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_304 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_304 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_304 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_304 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_304 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_304 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_304 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_304 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_304 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_304 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_304 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_304 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_304 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_304 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_304 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_304 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_304 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_304 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_304 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_304 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_304 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_304 {
	margin: 30px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_305{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_305overlay{	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_305leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_305leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_305leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_305leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_305posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_305rightCol{	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_305rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_305theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_305overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_305leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_305leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_305leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_305leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_305rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_305rightcolContent{		margin: auto;	}}	.stacks_in_305posterWrapper 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_305posterWrapper 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_305posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_305posterWrapper img:hover{	cursor: pointer;}.stacks_in_305rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_305 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width: 1px 1px 1px 1px;
}
#stacks_in_312 *,
#stacks_in_312 *:before,
#stacks_in_312 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_313 {
	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_315 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_317 {
	font-weight: bold;
}

#stacks_in_318 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_319 {
	font-size: 90%;
}

#stacks_in_320 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_321 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_364 .stacks_in_364-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_364 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_364 .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_364 .stacks_in_364-button,
#stacks_in_364 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_364 {
		text-align: center;
	}

	#stacks_in_364 .stacks_in_364-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_364 a.stacks_in_364-button, #stacks_in_364 a.stacks_in_364-button:visited, #stacks_in_364 a.stacks_in_364-button:hover, #stacks_in_364 a.stacks_in_364-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_364 .stacks_in_364-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_364 a.stacks_in_364-button, #stacks_in_364 a.stacks_in_364-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_364 a.stacks_in_364-button:hover, #stacks_in_364 a.stacks_in_364-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_364 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_364 a.stacks_in_364-button:hover .button_icon, #stacks_in_364 a.stacks_in_364-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_364 {
	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_215 article,
#stacks_in_215 aside,
#stacks_in_215 details,
#stacks_in_215 figcaption,
#stacks_in_215 figure,
#stacks_in_215 footer,
#stacks_in_215 header,
#stacks_in_215 hgroup,
#stacks_in_215 main,
#stacks_in_215 nav,
#stacks_in_215 section,
#stacks_in_215 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_215 audio,
#stacks_in_215 canvas,
#stacks_in_215 progress,
#stacks_in_215 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_215 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_215 [hidden],
#stacks_in_215 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_215 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_215 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_215 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_215 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_215 code,
#stacks_in_215 kbd,
#stacks_in_215 pre,
#stacks_in_215 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_215 *,
#stacks_in_215 *:before,
#stacks_in_215 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_215 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_215 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_215 .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_215 .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_215 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_215 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_215 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_215 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_215 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_215 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_215 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_215 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_215 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_215 *,
#stacks_in_215 *:before,
#stacks_in_215 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_215 .left {
  float: left !important; }

#stacks_in_215 .right {
  float: right !important; }

#stacks_in_215 .clearfix:before,
#stacks_in_215 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_215 .clearfix:after {
  clear: both; }

#stacks_in_215 .hide {
  display: none; }

#stacks_in_215 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_215 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_215 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_215 select {
  width: 100%; }

#stacks_in_215 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_215 .row:before,
#stacks_in_215 .row:after {
  content: " ";
  display: table; }

#stacks_in_215 .row:after {
  clear: both; }

#stacks_in_215 .row.collapse > .column,
#stacks_in_215 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_215 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_215 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_215 .row .row:before,
#stacks_in_215 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_215 .row .row:after {
  clear: both; }

#stacks_in_215 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_215 .row .row.collapse:before,
#stacks_in_215 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_215 .row .row.collapse:after {
  clear: both; }

#stacks_in_215 .column,
#stacks_in_215 .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_215 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_215 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_215 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_215 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_215 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_215 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_215 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_215 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_215 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_215 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_215 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_215 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_215 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_215 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_215 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_215 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_215 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_215 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_215 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_215 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_215 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_215 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_215 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_215 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_215 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_215 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_215 .column,
  #stacks_in_215 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_215 .small-1 {
    width: 8.33333%; }

  #stacks_in_215 .small-2 {
    width: 16.66667%; }

  #stacks_in_215 .small-3 {
    width: 25%; }

  #stacks_in_215 .small-4 {
    width: 33.33333%; }

  #stacks_in_215 .small-5 {
    width: 41.66667%; }

  #stacks_in_215 .small-6 {
    width: 50%; }

  #stacks_in_215 .small-7 {
    width: 58.33333%; }

  #stacks_in_215 .small-8 {
    width: 66.66667%; }

  #stacks_in_215 .small-9 {
    width: 75%; }

  #stacks_in_215 .small-10 {
    width: 83.33333%; }

  #stacks_in_215 .small-11 {
    width: 91.66667%; }

  #stacks_in_215 .small-12 {
    width: 100%; }

  #stacks_in_215 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_215 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_215 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_215 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_215 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_215 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_215 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_215 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_215 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_215 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_215 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_215 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_215 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_215 .column.small-centered,
  #stacks_in_215 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_215 .column.small-uncentered,
  #stacks_in_215 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_215 .column.small-centered:last-child,
  #stacks_in_215 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_215 .column.small-uncentered:last-child,
  #stacks_in_215 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_215 .column.small-uncentered.opposite,
  #stacks_in_215 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_215 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_215 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_215 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_215 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_215 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_215 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_215 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_215 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_215 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_215 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_215 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_215 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_215 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_215 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_215 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_215 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_215 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_215 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_215 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_215 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_215 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_215 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_215 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_215 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_215 .column,
  #stacks_in_215 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_215 .medium-1 {
    width: 8.33333%; }

  #stacks_in_215 .medium-2 {
    width: 16.66667%; }

  #stacks_in_215 .medium-3 {
    width: 25%; }

  #stacks_in_215 .medium-4 {
    width: 33.33333%; }

  #stacks_in_215 .medium-5 {
    width: 41.66667%; }

  #stacks_in_215 .medium-6 {
    width: 50%; }

  #stacks_in_215 .medium-7 {
    width: 58.33333%; }

  #stacks_in_215 .medium-8 {
    width: 66.66667%; }

  #stacks_in_215 .medium-9 {
    width: 75%; }

  #stacks_in_215 .medium-10 {
    width: 83.33333%; }

  #stacks_in_215 .medium-11 {
    width: 91.66667%; }

  #stacks_in_215 .medium-12 {
    width: 100%; }

  #stacks_in_215 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_215 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_215 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_215 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_215 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_215 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_215 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_215 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_215 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_215 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_215 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_215 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_215 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_215 .column.medium-centered,
  #stacks_in_215 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_215 .column.medium-uncentered,
  #stacks_in_215 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_215 .column.medium-centered:last-child,
  #stacks_in_215 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_215 .column.medium-uncentered:last-child,
  #stacks_in_215 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_215 .column.medium-uncentered.opposite,
  #stacks_in_215 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_215 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_215 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_215 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_215 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_215 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_215 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_215 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_215 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_215 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_215 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_215 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_215 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_215 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_215 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_215 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_215 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_215 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_215 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_215 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_215 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_215 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_215 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_215 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_215 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_215 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_215 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_215 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_215 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_215 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_215 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_215 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_215 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_215 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_215 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_215 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_215 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_215 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_215 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_215 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_215 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_215 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_215 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_215 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_215 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_215 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_215 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_215 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_215 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_215 .column,
  #stacks_in_215 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_215 .large-1 {
    width: 8.33333%; }

  #stacks_in_215 .large-2 {
    width: 16.66667%; }

  #stacks_in_215 .large-3 {
    width: 25%; }

  #stacks_in_215 .large-4 {
    width: 33.33333%; }

  #stacks_in_215 .large-5 {
    width: 41.66667%; }

  #stacks_in_215 .large-6 {
    width: 50%; }

  #stacks_in_215 .large-7 {
    width: 58.33333%; }

  #stacks_in_215 .large-8 {
    width: 66.66667%; }

  #stacks_in_215 .large-9 {
    width: 75%; }

  #stacks_in_215 .large-10 {
    width: 83.33333%; }

  #stacks_in_215 .large-11 {
    width: 91.66667%; }

  #stacks_in_215 .large-12 {
    width: 100%; }

  #stacks_in_215 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_215 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_215 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_215 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_215 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_215 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_215 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_215 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_215 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_215 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_215 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_215 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_215 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_215 .column.large-centered,
  #stacks_in_215 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_215 .column.large-uncentered,
  #stacks_in_215 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_215 .column.large-centered:last-child,
  #stacks_in_215 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_215 .column.large-uncentered:last-child,
  #stacks_in_215 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_215 .column.large-uncentered.opposite,
  #stacks_in_215 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_215 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_215 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_215 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_215 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_215 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_215 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_215 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_215 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_215 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_215 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_215 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_215 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_215 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_215 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_215 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_215 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_215 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_215 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_215 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_215 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_215 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_215 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_215 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_215 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_215 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_215 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_215 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_215 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_215 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_215 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_215 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_215 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_215 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_215 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_215 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_215 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_215 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_215 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_215 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_215 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_215 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_215 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_217{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_217overlay{	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_217leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_217leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_217leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_217leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_217posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_217rightCol{	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_217rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_217theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_217overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_217leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_217leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_217leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_217leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_217rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_217rightcolContent{		margin: auto;	}}	.stacks_in_217posterWrapper 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_217posterWrapper 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_217posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_217posterWrapper img:hover{	cursor: pointer;}.stacks_in_217rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_217 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
}
#stacks_in_224 *,
#stacks_in_224 *:before,
#stacks_in_224 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_226 {
	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_228 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_229 {
	font-weight: bold;
}

#stacks_in_230 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_231 {
	font-size: 90%;
}

#stacks_in_232 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_233 {
	font-size: 89%;
	font-weight: lighter;
}
#stacks_in_365 .stacks_in_365-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_365 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_365 .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_365 .stacks_in_365-button,
#stacks_in_365 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_365 {
		text-align: center;
	}

	#stacks_in_365 .stacks_in_365-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_365 a.stacks_in_365-button, #stacks_in_365 a.stacks_in_365-button:visited, #stacks_in_365 a.stacks_in_365-button:hover, #stacks_in_365 a.stacks_in_365-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_365 .stacks_in_365-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_365 a.stacks_in_365-button, #stacks_in_365 a.stacks_in_365-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_365 a.stacks_in_365-button:hover, #stacks_in_365 a.stacks_in_365-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_365 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_365 a.stacks_in_365-button:hover .button_icon, #stacks_in_365 a.stacks_in_365-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_365 {
	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_234 article,
#stacks_in_234 aside,
#stacks_in_234 details,
#stacks_in_234 figcaption,
#stacks_in_234 figure,
#stacks_in_234 footer,
#stacks_in_234 header,
#stacks_in_234 hgroup,
#stacks_in_234 main,
#stacks_in_234 nav,
#stacks_in_234 section,
#stacks_in_234 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_234 audio,
#stacks_in_234 canvas,
#stacks_in_234 progress,
#stacks_in_234 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_234 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_234 [hidden],
#stacks_in_234 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_234 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_234 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_234 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_234 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_234 code,
#stacks_in_234 kbd,
#stacks_in_234 pre,
#stacks_in_234 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_234 *,
#stacks_in_234 *:before,
#stacks_in_234 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_234 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_234 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_234 .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_234 .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_234 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_234 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_234 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_234 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_234 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_234 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_234 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_234 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_234 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_234 *,
#stacks_in_234 *:before,
#stacks_in_234 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_234 .left {
  float: left !important; }

#stacks_in_234 .right {
  float: right !important; }

#stacks_in_234 .clearfix:before,
#stacks_in_234 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_234 .clearfix:after {
  clear: both; }

#stacks_in_234 .hide {
  display: none; }

#stacks_in_234 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_234 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_234 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_234 select {
  width: 100%; }

#stacks_in_234 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_234 .row:before,
#stacks_in_234 .row:after {
  content: " ";
  display: table; }

#stacks_in_234 .row:after {
  clear: both; }

#stacks_in_234 .row.collapse > .column,
#stacks_in_234 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_234 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_234 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_234 .row .row:before,
#stacks_in_234 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_234 .row .row:after {
  clear: both; }

#stacks_in_234 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_234 .row .row.collapse:before,
#stacks_in_234 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_234 .row .row.collapse:after {
  clear: both; }

#stacks_in_234 .column,
#stacks_in_234 .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_234 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_234 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_234 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_234 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_234 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_234 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_234 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_234 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_234 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_234 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_234 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_234 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_234 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_234 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_234 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_234 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_234 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_234 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_234 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_234 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_234 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_234 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_234 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_234 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_234 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_234 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_234 .column,
  #stacks_in_234 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_234 .small-1 {
    width: 8.33333%; }

  #stacks_in_234 .small-2 {
    width: 16.66667%; }

  #stacks_in_234 .small-3 {
    width: 25%; }

  #stacks_in_234 .small-4 {
    width: 33.33333%; }

  #stacks_in_234 .small-5 {
    width: 41.66667%; }

  #stacks_in_234 .small-6 {
    width: 50%; }

  #stacks_in_234 .small-7 {
    width: 58.33333%; }

  #stacks_in_234 .small-8 {
    width: 66.66667%; }

  #stacks_in_234 .small-9 {
    width: 75%; }

  #stacks_in_234 .small-10 {
    width: 83.33333%; }

  #stacks_in_234 .small-11 {
    width: 91.66667%; }

  #stacks_in_234 .small-12 {
    width: 100%; }

  #stacks_in_234 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_234 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_234 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_234 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_234 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_234 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_234 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_234 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_234 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_234 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_234 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_234 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_234 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_234 .column.small-centered,
  #stacks_in_234 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_234 .column.small-uncentered,
  #stacks_in_234 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_234 .column.small-centered:last-child,
  #stacks_in_234 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_234 .column.small-uncentered:last-child,
  #stacks_in_234 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_234 .column.small-uncentered.opposite,
  #stacks_in_234 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_234 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_234 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_234 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_234 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_234 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_234 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_234 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_234 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_234 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_234 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_234 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_234 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_234 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_234 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_234 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_234 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_234 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_234 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_234 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_234 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_234 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_234 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_234 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_234 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_234 .column,
  #stacks_in_234 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_234 .medium-1 {
    width: 8.33333%; }

  #stacks_in_234 .medium-2 {
    width: 16.66667%; }

  #stacks_in_234 .medium-3 {
    width: 25%; }

  #stacks_in_234 .medium-4 {
    width: 33.33333%; }

  #stacks_in_234 .medium-5 {
    width: 41.66667%; }

  #stacks_in_234 .medium-6 {
    width: 50%; }

  #stacks_in_234 .medium-7 {
    width: 58.33333%; }

  #stacks_in_234 .medium-8 {
    width: 66.66667%; }

  #stacks_in_234 .medium-9 {
    width: 75%; }

  #stacks_in_234 .medium-10 {
    width: 83.33333%; }

  #stacks_in_234 .medium-11 {
    width: 91.66667%; }

  #stacks_in_234 .medium-12 {
    width: 100%; }

  #stacks_in_234 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_234 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_234 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_234 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_234 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_234 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_234 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_234 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_234 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_234 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_234 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_234 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_234 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_234 .column.medium-centered,
  #stacks_in_234 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_234 .column.medium-uncentered,
  #stacks_in_234 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_234 .column.medium-centered:last-child,
  #stacks_in_234 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_234 .column.medium-uncentered:last-child,
  #stacks_in_234 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_234 .column.medium-uncentered.opposite,
  #stacks_in_234 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_234 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_234 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_234 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_234 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_234 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_234 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_234 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_234 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_234 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_234 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_234 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_234 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_234 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_234 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_234 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_234 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_234 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_234 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_234 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_234 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_234 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_234 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_234 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_234 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_234 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_234 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_234 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_234 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_234 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_234 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_234 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_234 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_234 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_234 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_234 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_234 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_234 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_234 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_234 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_234 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_234 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_234 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_234 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_234 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_234 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_234 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_234 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_234 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_234 .column,
  #stacks_in_234 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_234 .large-1 {
    width: 8.33333%; }

  #stacks_in_234 .large-2 {
    width: 16.66667%; }

  #stacks_in_234 .large-3 {
    width: 25%; }

  #stacks_in_234 .large-4 {
    width: 33.33333%; }

  #stacks_in_234 .large-5 {
    width: 41.66667%; }

  #stacks_in_234 .large-6 {
    width: 50%; }

  #stacks_in_234 .large-7 {
    width: 58.33333%; }

  #stacks_in_234 .large-8 {
    width: 66.66667%; }

  #stacks_in_234 .large-9 {
    width: 75%; }

  #stacks_in_234 .large-10 {
    width: 83.33333%; }

  #stacks_in_234 .large-11 {
    width: 91.66667%; }

  #stacks_in_234 .large-12 {
    width: 100%; }

  #stacks_in_234 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_234 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_234 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_234 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_234 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_234 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_234 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_234 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_234 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_234 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_234 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_234 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_234 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_234 .column.large-centered,
  #stacks_in_234 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_234 .column.large-uncentered,
  #stacks_in_234 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_234 .column.large-centered:last-child,
  #stacks_in_234 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_234 .column.large-uncentered:last-child,
  #stacks_in_234 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_234 .column.large-uncentered.opposite,
  #stacks_in_234 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_234 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_234 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_234 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_234 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_234 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_234 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_234 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_234 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_234 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_234 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_234 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_234 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_234 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_234 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_234 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_234 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_234 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_234 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_234 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_234 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_234 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_234 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_234 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_234 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_234 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_234 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_234 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_234 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_234 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_234 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_234 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_234 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_234 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_234 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_234 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_234 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_234 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_234 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_234 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_234 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_234 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_234 {
	margin: 50px 0px 20px 0px;
}
#stacks_in_243 *,
#stacks_in_243 *:before,
#stacks_in_243 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_245 {
	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_247 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_248 {
	font-weight: bold;
}

#stacks_in_249 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_250 {
	font-size: 90%;
}

#stacks_in_251 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_252 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_366 .stacks_in_366-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_366 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_366 .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_366 .stacks_in_366-button,
#stacks_in_366 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_366 {
		text-align: center;
	}

	#stacks_in_366 .stacks_in_366-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_366 a.stacks_in_366-button, #stacks_in_366 a.stacks_in_366-button:visited, #stacks_in_366 a.stacks_in_366-button:hover, #stacks_in_366 a.stacks_in_366-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_366 .stacks_in_366-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_366 a.stacks_in_366-button, #stacks_in_366 a.stacks_in_366-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_366 a.stacks_in_366-button:hover, #stacks_in_366 a.stacks_in_366-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_366 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_366 a.stacks_in_366-button:hover .button_icon, #stacks_in_366 a.stacks_in_366-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_366 {
	margin: 20px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_236{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_236overlay{	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_236leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_236leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_236leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_236leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_236posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_236rightCol{	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_236rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_236theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_236overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_236leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_236leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_236leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_236leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_236rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_236rightcolContent{		margin: auto;	}}	.stacks_in_236posterWrapper 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_236posterWrapper 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_236posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_236posterWrapper img:hover{	cursor: pointer;}.stacks_in_236rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_236 {
	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_325 article,
#stacks_in_325 aside,
#stacks_in_325 details,
#stacks_in_325 figcaption,
#stacks_in_325 figure,
#stacks_in_325 footer,
#stacks_in_325 header,
#stacks_in_325 hgroup,
#stacks_in_325 main,
#stacks_in_325 nav,
#stacks_in_325 section,
#stacks_in_325 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_325 audio,
#stacks_in_325 canvas,
#stacks_in_325 progress,
#stacks_in_325 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_325 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_325 [hidden],
#stacks_in_325 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_325 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_325 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_325 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_325 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_325 code,
#stacks_in_325 kbd,
#stacks_in_325 pre,
#stacks_in_325 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_325 *,
#stacks_in_325 *:before,
#stacks_in_325 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_325 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_325 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_325 .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_325 .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_325 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_325 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_325 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_325 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_325 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_325 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_325 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_325 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_325 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_325 *,
#stacks_in_325 *:before,
#stacks_in_325 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_325 .left {
  float: left !important; }

#stacks_in_325 .right {
  float: right !important; }

#stacks_in_325 .clearfix:before,
#stacks_in_325 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_325 .clearfix:after {
  clear: both; }

#stacks_in_325 .hide {
  display: none; }

#stacks_in_325 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_325 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_325 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_325 select {
  width: 100%; }

#stacks_in_325 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_325 .row:before,
#stacks_in_325 .row:after {
  content: " ";
  display: table; }

#stacks_in_325 .row:after {
  clear: both; }

#stacks_in_325 .row.collapse > .column,
#stacks_in_325 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_325 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_325 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_325 .row .row:before,
#stacks_in_325 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_325 .row .row:after {
  clear: both; }

#stacks_in_325 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_325 .row .row.collapse:before,
#stacks_in_325 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_325 .row .row.collapse:after {
  clear: both; }

#stacks_in_325 .column,
#stacks_in_325 .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_325 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_325 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_325 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_325 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_325 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_325 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_325 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_325 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_325 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_325 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_325 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_325 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_325 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_325 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_325 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_325 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_325 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_325 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_325 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_325 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_325 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_325 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_325 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_325 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_325 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_325 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_325 .column,
  #stacks_in_325 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_325 .small-1 {
    width: 8.33333%; }

  #stacks_in_325 .small-2 {
    width: 16.66667%; }

  #stacks_in_325 .small-3 {
    width: 25%; }

  #stacks_in_325 .small-4 {
    width: 33.33333%; }

  #stacks_in_325 .small-5 {
    width: 41.66667%; }

  #stacks_in_325 .small-6 {
    width: 50%; }

  #stacks_in_325 .small-7 {
    width: 58.33333%; }

  #stacks_in_325 .small-8 {
    width: 66.66667%; }

  #stacks_in_325 .small-9 {
    width: 75%; }

  #stacks_in_325 .small-10 {
    width: 83.33333%; }

  #stacks_in_325 .small-11 {
    width: 91.66667%; }

  #stacks_in_325 .small-12 {
    width: 100%; }

  #stacks_in_325 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_325 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_325 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_325 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_325 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_325 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_325 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_325 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_325 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_325 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_325 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_325 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_325 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_325 .column.small-centered,
  #stacks_in_325 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_325 .column.small-uncentered,
  #stacks_in_325 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_325 .column.small-centered:last-child,
  #stacks_in_325 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_325 .column.small-uncentered:last-child,
  #stacks_in_325 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_325 .column.small-uncentered.opposite,
  #stacks_in_325 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_325 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_325 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_325 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_325 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_325 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_325 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_325 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_325 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_325 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_325 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_325 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_325 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_325 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_325 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_325 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_325 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_325 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_325 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_325 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_325 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_325 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_325 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_325 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_325 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_325 .column,
  #stacks_in_325 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_325 .medium-1 {
    width: 8.33333%; }

  #stacks_in_325 .medium-2 {
    width: 16.66667%; }

  #stacks_in_325 .medium-3 {
    width: 25%; }

  #stacks_in_325 .medium-4 {
    width: 33.33333%; }

  #stacks_in_325 .medium-5 {
    width: 41.66667%; }

  #stacks_in_325 .medium-6 {
    width: 50%; }

  #stacks_in_325 .medium-7 {
    width: 58.33333%; }

  #stacks_in_325 .medium-8 {
    width: 66.66667%; }

  #stacks_in_325 .medium-9 {
    width: 75%; }

  #stacks_in_325 .medium-10 {
    width: 83.33333%; }

  #stacks_in_325 .medium-11 {
    width: 91.66667%; }

  #stacks_in_325 .medium-12 {
    width: 100%; }

  #stacks_in_325 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_325 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_325 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_325 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_325 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_325 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_325 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_325 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_325 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_325 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_325 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_325 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_325 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_325 .column.medium-centered,
  #stacks_in_325 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_325 .column.medium-uncentered,
  #stacks_in_325 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_325 .column.medium-centered:last-child,
  #stacks_in_325 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_325 .column.medium-uncentered:last-child,
  #stacks_in_325 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_325 .column.medium-uncentered.opposite,
  #stacks_in_325 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_325 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_325 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_325 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_325 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_325 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_325 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_325 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_325 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_325 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_325 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_325 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_325 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_325 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_325 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_325 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_325 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_325 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_325 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_325 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_325 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_325 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_325 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_325 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_325 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_325 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_325 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_325 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_325 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_325 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_325 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_325 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_325 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_325 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_325 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_325 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_325 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_325 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_325 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_325 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_325 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_325 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_325 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_325 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_325 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_325 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_325 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_325 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_325 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_325 .column,
  #stacks_in_325 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_325 .large-1 {
    width: 8.33333%; }

  #stacks_in_325 .large-2 {
    width: 16.66667%; }

  #stacks_in_325 .large-3 {
    width: 25%; }

  #stacks_in_325 .large-4 {
    width: 33.33333%; }

  #stacks_in_325 .large-5 {
    width: 41.66667%; }

  #stacks_in_325 .large-6 {
    width: 50%; }

  #stacks_in_325 .large-7 {
    width: 58.33333%; }

  #stacks_in_325 .large-8 {
    width: 66.66667%; }

  #stacks_in_325 .large-9 {
    width: 75%; }

  #stacks_in_325 .large-10 {
    width: 83.33333%; }

  #stacks_in_325 .large-11 {
    width: 91.66667%; }

  #stacks_in_325 .large-12 {
    width: 100%; }

  #stacks_in_325 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_325 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_325 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_325 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_325 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_325 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_325 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_325 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_325 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_325 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_325 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_325 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_325 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_325 .column.large-centered,
  #stacks_in_325 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_325 .column.large-uncentered,
  #stacks_in_325 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_325 .column.large-centered:last-child,
  #stacks_in_325 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_325 .column.large-uncentered:last-child,
  #stacks_in_325 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_325 .column.large-uncentered.opposite,
  #stacks_in_325 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_325 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_325 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_325 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_325 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_325 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_325 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_325 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_325 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_325 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_325 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_325 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_325 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_325 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_325 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_325 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_325 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_325 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_325 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_325 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_325 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_325 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_325 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_325 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_325 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_325 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_325 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_325 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_325 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_325 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_325 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_325 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_325 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_325 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_325 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_325 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_325 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_325 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_325 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_325 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_325 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_325 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_325 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_326{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_326overlay{	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_326leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_326leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_326leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_326leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_326posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_326rightCol{	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_326rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_326theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_326overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_326leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_326leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_326leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_326leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_326rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_326rightcolContent{		margin: auto;	}}	.stacks_in_326posterWrapper 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_326posterWrapper 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_326posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_326posterWrapper img:hover{	cursor: pointer;}.stacks_in_326rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_326 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
}
#stacks_in_333 *,
#stacks_in_333 *:before,
#stacks_in_333 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_334 {
	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_336 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_338 {
	font-weight: bold;
}

#stacks_in_339 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_340 {
	font-size: 90%;
}

#stacks_in_341 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_342 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_367 .stacks_in_367-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_367 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_367 .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_367 .stacks_in_367-button,
#stacks_in_367 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_367 {
		text-align: center;
	}

	#stacks_in_367 .stacks_in_367-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_367 a.stacks_in_367-button, #stacks_in_367 a.stacks_in_367-button:visited, #stacks_in_367 a.stacks_in_367-button:hover, #stacks_in_367 a.stacks_in_367-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_367 .stacks_in_367-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_367 a.stacks_in_367-button, #stacks_in_367 a.stacks_in_367-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_367 a.stacks_in_367-button:hover, #stacks_in_367 a.stacks_in_367-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_367 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_367 a.stacks_in_367-button:hover .button_icon, #stacks_in_367 a.stacks_in_367-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_367 {
	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_368 article,
#stacks_in_368 aside,
#stacks_in_368 details,
#stacks_in_368 figcaption,
#stacks_in_368 figure,
#stacks_in_368 footer,
#stacks_in_368 header,
#stacks_in_368 hgroup,
#stacks_in_368 main,
#stacks_in_368 nav,
#stacks_in_368 section,
#stacks_in_368 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_368 audio,
#stacks_in_368 canvas,
#stacks_in_368 progress,
#stacks_in_368 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_368 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_368 [hidden],
#stacks_in_368 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_368 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_368 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_368 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_368 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_368 code,
#stacks_in_368 kbd,
#stacks_in_368 pre,
#stacks_in_368 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_368 *,
#stacks_in_368 *:before,
#stacks_in_368 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_368 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_368 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_368 .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_368 .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_368 .column_base_margin {
    margin-bottom: 20px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_368 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_368 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_368 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_368 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_368 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_368 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_368 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_368 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_368 *,
#stacks_in_368 *:before,
#stacks_in_368 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_368 .left {
  float: left !important; }

#stacks_in_368 .right {
  float: right !important; }

#stacks_in_368 .clearfix:before,
#stacks_in_368 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_368 .clearfix:after {
  clear: both; }

#stacks_in_368 .hide {
  display: none; }

#stacks_in_368 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_368 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_368 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_368 select {
  width: 100%; }

#stacks_in_368 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_368 .row:before,
#stacks_in_368 .row:after {
  content: " ";
  display: table; }

#stacks_in_368 .row:after {
  clear: both; }

#stacks_in_368 .row.collapse > .column,
#stacks_in_368 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_368 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_368 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_368 .row .row:before,
#stacks_in_368 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_368 .row .row:after {
  clear: both; }

#stacks_in_368 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_368 .row .row.collapse:before,
#stacks_in_368 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_368 .row .row.collapse:after {
  clear: both; }

#stacks_in_368 .column,
#stacks_in_368 .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_368 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_368 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_368 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_368 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_368 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_368 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_368 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_368 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_368 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_368 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_368 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_368 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_368 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_368 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_368 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_368 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_368 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_368 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_368 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_368 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_368 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_368 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_368 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_368 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_368 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_368 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_368 .column,
  #stacks_in_368 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_368 .small-1 {
    width: 8.33333%; }

  #stacks_in_368 .small-2 {
    width: 16.66667%; }

  #stacks_in_368 .small-3 {
    width: 25%; }

  #stacks_in_368 .small-4 {
    width: 33.33333%; }

  #stacks_in_368 .small-5 {
    width: 41.66667%; }

  #stacks_in_368 .small-6 {
    width: 50%; }

  #stacks_in_368 .small-7 {
    width: 58.33333%; }

  #stacks_in_368 .small-8 {
    width: 66.66667%; }

  #stacks_in_368 .small-9 {
    width: 75%; }

  #stacks_in_368 .small-10 {
    width: 83.33333%; }

  #stacks_in_368 .small-11 {
    width: 91.66667%; }

  #stacks_in_368 .small-12 {
    width: 100%; }

  #stacks_in_368 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_368 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_368 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_368 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_368 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_368 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_368 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_368 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_368 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_368 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_368 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_368 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_368 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_368 .column.small-centered,
  #stacks_in_368 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_368 .column.small-uncentered,
  #stacks_in_368 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_368 .column.small-centered:last-child,
  #stacks_in_368 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_368 .column.small-uncentered:last-child,
  #stacks_in_368 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_368 .column.small-uncentered.opposite,
  #stacks_in_368 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_368 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_368 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_368 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_368 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_368 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_368 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_368 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_368 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_368 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_368 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_368 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_368 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_368 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_368 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_368 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_368 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_368 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_368 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_368 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_368 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_368 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_368 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_368 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_368 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_368 .column,
  #stacks_in_368 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_368 .medium-1 {
    width: 8.33333%; }

  #stacks_in_368 .medium-2 {
    width: 16.66667%; }

  #stacks_in_368 .medium-3 {
    width: 25%; }

  #stacks_in_368 .medium-4 {
    width: 33.33333%; }

  #stacks_in_368 .medium-5 {
    width: 41.66667%; }

  #stacks_in_368 .medium-6 {
    width: 50%; }

  #stacks_in_368 .medium-7 {
    width: 58.33333%; }

  #stacks_in_368 .medium-8 {
    width: 66.66667%; }

  #stacks_in_368 .medium-9 {
    width: 75%; }

  #stacks_in_368 .medium-10 {
    width: 83.33333%; }

  #stacks_in_368 .medium-11 {
    width: 91.66667%; }

  #stacks_in_368 .medium-12 {
    width: 100%; }

  #stacks_in_368 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_368 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_368 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_368 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_368 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_368 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_368 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_368 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_368 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_368 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_368 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_368 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_368 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_368 .column.medium-centered,
  #stacks_in_368 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_368 .column.medium-uncentered,
  #stacks_in_368 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_368 .column.medium-centered:last-child,
  #stacks_in_368 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_368 .column.medium-uncentered:last-child,
  #stacks_in_368 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_368 .column.medium-uncentered.opposite,
  #stacks_in_368 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_368 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_368 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_368 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_368 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_368 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_368 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_368 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_368 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_368 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_368 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_368 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_368 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_368 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_368 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_368 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_368 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_368 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_368 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_368 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_368 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_368 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_368 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_368 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_368 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_368 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_368 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_368 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_368 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_368 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_368 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_368 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_368 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_368 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_368 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_368 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_368 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_368 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_368 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_368 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_368 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_368 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_368 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_368 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_368 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_368 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_368 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_368 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_368 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_368 .column,
  #stacks_in_368 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_368 .large-1 {
    width: 8.33333%; }

  #stacks_in_368 .large-2 {
    width: 16.66667%; }

  #stacks_in_368 .large-3 {
    width: 25%; }

  #stacks_in_368 .large-4 {
    width: 33.33333%; }

  #stacks_in_368 .large-5 {
    width: 41.66667%; }

  #stacks_in_368 .large-6 {
    width: 50%; }

  #stacks_in_368 .large-7 {
    width: 58.33333%; }

  #stacks_in_368 .large-8 {
    width: 66.66667%; }

  #stacks_in_368 .large-9 {
    width: 75%; }

  #stacks_in_368 .large-10 {
    width: 83.33333%; }

  #stacks_in_368 .large-11 {
    width: 91.66667%; }

  #stacks_in_368 .large-12 {
    width: 100%; }

  #stacks_in_368 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_368 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_368 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_368 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_368 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_368 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_368 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_368 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_368 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_368 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_368 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_368 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_368 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_368 .column.large-centered,
  #stacks_in_368 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_368 .column.large-uncentered,
  #stacks_in_368 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_368 .column.large-centered:last-child,
  #stacks_in_368 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_368 .column.large-uncentered:last-child,
  #stacks_in_368 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_368 .column.large-uncentered.opposite,
  #stacks_in_368 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_368 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_368 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_368 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_368 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_368 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_368 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_368 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_368 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_368 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_368 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_368 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_368 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_368 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_368 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_368 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_368 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_368 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_368 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_368 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_368 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_368 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_368 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_368 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_368 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_368 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_368 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_368 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_368 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_368 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_368 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_368 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_368 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_368 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_368 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_368 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_368 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_368 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_368 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_368 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_368 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_368 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_368 {
	margin: 50px 0px 20px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_369{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_369overlay{	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_369leftCol{	position: absolute;		width: 70%;	right: 30%;	margin-left: -70%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_369leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_369leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_369leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_369posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_369rightCol{	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_369rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_369theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}@media all and (max-width: 768px) {	.stacks_in_369overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_369leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_369leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_369leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_369leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_369rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_369rightcolContent{		margin: auto;	}}	.stacks_in_369posterWrapper 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_369posterWrapper 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_369posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_369posterWrapper img:hover{	cursor: pointer;}.stacks_in_369rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */#stacks_in_376 *,
#stacks_in_376 *:before,
#stacks_in_376 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_377 {
	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_379 {
	margin:  6px;
	padding: 6px 0px 0px 6px;
}

#stacks_in_381 {
	font-weight: bold;
}

#stacks_in_382 {
	margin:  6px;
	padding: 0px 0px 6px 6px;
}

#stacks_in_383 {
	font-size: 90%;
}

#stacks_in_384 {
	margin:  6px;
	padding: 20px 0px 10px 6px;
}

#stacks_in_385 {
	font-size: 90%;
	font-weight: lighter;
}
#stacks_in_386 .stacks_in_386-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_386 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_386 .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_386 .stacks_in_386-button,
#stacks_in_386 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_386 {
		text-align: center;
	}

	#stacks_in_386 .stacks_in_386-button {
		width: 100%;
	  -moz-box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
	}









#stacks_in_386 a.stacks_in_386-button, #stacks_in_386 a.stacks_in_386-button:visited, #stacks_in_386 a.stacks_in_386-button:hover, #stacks_in_386 a.stacks_in_386-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_386 .stacks_in_386-button {
		
			background-color: none;
			border: 1px solid #E0E0E0;
		
	}

	#stacks_in_386 a.stacks_in_386-button, #stacks_in_386 a.stacks_in_386-button:visited {
		
			color: #736F72 !important;
			
	}

	#stacks_in_386 a.stacks_in_386-button:hover, #stacks_in_386 a.stacks_in_386-button:active {
		
			text-decoration: none;
			color: #669966 !important;
			background-color: #E0E0E0;
		
	}

	
	#stacks_in_386 .button_icon {
		
			background-color: none;
			border-right: 1px solid #E0E0E0;
		
	}

	#stacks_in_386 a.stacks_in_386-button:hover .button_icon, #stacks_in_386 a.stacks_in_386-button:active .button_icon {
		
			background-color: #E0E0E0;
			border-right: 1px solid #669966;
				
	}
	



#stacks_in_386 {
	margin: 20px 0px 0px 0px;
}


/* Start doobox Chauffeur css */

.stacks_in_255_3990wrapper{
width: 50px;
margin: 0 auto;

display : none;

opacity:0.7;
}

.stacks_in_255_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_255_3990bulter i {
	display: block;
	margin: 0 auto 0 auto;
	font-size: 20px;
	line-height: 48px; 
	vertical-align: middle;
}


.stacks_in_255_3990bulter:hover{
color: #DADADA;
background: #C2C2C2; /* Old browsers */
}

/* end doobox Chauffeur css */


#stacks_in_256_7485 {
	margin: 25px 0px 0px 0px;
}

#stacks_in_256_7486 {
	font-size: 109%;
}
