@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);
  }
}
@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);
  }
}
#stacks_in_3220{
	clear:both;padding: 0;margin: 0;
	counter-reset: section;
	
	-webkit-animation: opLoad 1s ease-out;
	-moz-animation: opLoad 1s ease-out;
	-o-animation: opLoad 1s ease-out;
	animation: opLoad 1s ease-out;
	
}


.ncp img{opacity: 0;-webkit-transition:opacity 1s ease-out;-moz-transition:opacity 1s ease-out;-o-animation: opLoad 1s ease-out;transition:opacity 1s ease-out;}
.ncp img.show{opacity: 1;}


.ncp img{width: 100%;height: auto;}
.ncp .count{font-size: 11px;padding: 1px 5px 2px;margin-bottom:.5em;border:1px solid #cfcfcf;color:#aaa;border-radius:2px;display: inline-block;-webkit-font-smoothing: antialiased;
}
#stacks_in_3220 .c+.c .count{margin-left: 0px;}
#stacks_in_3220.s3 .c.s2_3 .count,#stacks_in_3220.s4 .c.s2_4 .count,#stacks_in_3220.s4 .c.s3_4 .count{ margin-left: 0px;}
.ncp .count:before{counter-increment: section;content: 'Column 'counter(section) '';}

.ncp .g:before,.ncp .g:after{content:"";display:table;}
.ncp .g:after{clear:both;}
.ncp .c{display: block;float:left;margin: 1% 0 1% 1.6%;}
.s1_1,.s1_2,.s1_3,.s1_4{margin: 1% 0;}

.ncp .c:first-child { margin-left: 0; }

#stacks_in_3220.s2 .c.s1_2 .c-pad,#stacks_in_3220.s3 .c.s1_3 .c-pad,#stacks_in_3220.s4 .c.s1_4 .c-pad{padding: 0 0px 0 0;}
#stacks_in_3220.s3 .c.s2_3 .c-pad,#stacks_in_3220.s4 .c.s2_4 .c-pad,#stacks_in_3220.s4 .c.s3_4 .c-pad{ padding: 0 0px;}
#stacks_in_3220.s2 .c.s2_2 .c-pad,#stacks_in_3220.s3 .c.s3_3 .c-pad,#stacks_in_3220.s4 .c.s4_4 .c-pad{ padding: 0 0 0 0px;}
.ncp.s1>.c{width: 100%;}.ncp.s2>.c{width: 49.2%;}.ncp.s3>.c{width: 32.26%;}.ncp.s4>.c{width: 23.8%;}

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

	#stacks_in_3220 .c+.c .count,
	#stacks_in_3220.s3 .c.s2_3 .count,
	#stacks_in_3220.s4 .c.s3_4 .count{margin-left: 0;}
	#stacks_in_3220 .c{margin: 1% 0;padding: 0 0;width: 100%;}
	#stacks_in_3220 .c:first-child,#stacks_in_3220.s4 .c.s1_4,#stacks_in_3220.s4 .c.s2_4{ padding: 0 0 0;}
	#stacks_in_3220 .c:last-child,#stacks_in_3220.s4 .c.s3_4,#stacks_in_3220.s4 .c.s4_4{ padding: 0 0 0;}

	#stacks_in_3220.s2 .c-pad,#stacks_in_3220.s3 .c-pad{ padding: 0 !important;}

	#stacks_in_3220.s4 .c.s2_4 .count,
	#stacks_in_3220.s4 .c.s4_4 .count{ margin-left: 0px;}
	#stacks_in_3220.s4 .c {width: 49.2%;}
	#stacks_in_3220.s4 .c.s1_4 .c-pad,#stacks_in_3220.s4 .c.s3_4 .c-pad{ padding: 0 0px 0 0;}
	#stacks_in_3220.s4 .c.s2_4 .c-pad,#stacks_in_3220.s4 .c.s4_4 .c-pad{ padding: 0 0 0 0px;}
}

@media only screen and (max-width: 300px) {
	#stacks_in_3220 .count{ margin-left: 0 !important;}
	#stacks_in_3220 .c .c-pad{padding: 0 !important;}
	#stacks_in_3220.s4 .c{width: 100%;}
}

@-webkit-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

#stacks_in_2182 {
	padding: 60px 0px 20px 0px;
}

#stacks_out_2182 {
	margin-left:0;
}

#stacks_in_1500 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_5799 {
	padding: 18px 0px 30px 0px;
}

#stacks_in_2079 {
	padding: 10px 0px 20px 0px;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_4124_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_4124_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_4124_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_4124_accordion_label i {
}

.stacks_in_4124_accordion_selected {
}

.stacks_in_4124_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_4124_accordion li:last-child .stacks_in_4124_accordion_content {
}

.stacks_in_4124_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_4124_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_4124_accordion_selected .accordion_icon i {
	
}

#stacks_in_4124_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_4124_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_4124_accordion_label {
	color: #000000;
	background: #FAFAFA;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_4124_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_4124_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_4124_accordion li:last-child .stacks_in_4124_accordion_label {
	border-bottom: none;
}


ul#stacks_in_4124_accordion li:last-child .stacks_in_4124_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_4124_accordion li:last-child .stacks_in_4124_accordion_content {
	border-bottom: none;
}

#stacks_in_4124_open_all {
	color: #757575;
}

#stacks_in_4124_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_4124_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_4124_accordion_label {
		font-size: 15px;
	}

	.stacks_in_4124_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_4124_accordion_label {
		font-size: 15px;
	}

	.stacks_in_4124_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_4124_accordion_label {
		font-size: 14px;
	}

	.stacks_in_4124_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_4124_accordion_label {
		font-size: 14px;
	}

	.stacks_in_4124_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_4124 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	margin: 10px 3px 50px 0px;
}
/*  Archetypon Scroll Scope  */
.ssDiv_stacks_in_4847{
	width: 100%;
	height: auto;
	max-height: 300px;
	margin: 0;
	padding: 0;
	overflow: auto;
}
/* end */#stacks_in_3573 .aContainer {
 

}/*  Archetypon Scroll Scope  */
.ssDiv_stacks_in_4849{
	width: 100%;
	height: auto;
	max-height: 200px;
	margin: 0;
	padding: 0;
	overflow: auto;
}
/* end */
#stacks_in_4129 {
	padding: 0px 20px 20px 0px;
}
/* Pull Quote Styling */


  #stacks_in_4752 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4752 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4752 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



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




#stacks_in_4752 .floated_content {
  float: left;
}



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

@media only screen {
  #stacks_in_4752 .quote_text {
    font-size: 32px;
  }

    

  

  
  #stacks_in_4752 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4752 .quote_text {
    font-size: 24px;
  }

    

  

  
  #stacks_in_4752 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4752 .quote_text {
    font-size: 24px;
  }

  

  
  #stacks_in_4752 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4752 .quote_text {
    font-size: 18px;
  }

    

  

  
  #stacks_in_4752 .floated_content {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  


  
    #stacks_in_4752 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4752 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_in_4752 {
	padding: 0px 20px 20px 0px;
}
/* Pull Quote Styling */


  #stacks_in_4766 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4766 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4766 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



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




#stacks_in_4766 .floated_content {
  float: left;
}



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

@media only screen {
  #stacks_in_4766 .quote_text {
    font-size: 32px;
  }

    

  

  
  #stacks_in_4766 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4766 .quote_text {
    font-size: 24px;
  }

    

  

  
  #stacks_in_4766 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4766 .quote_text {
    font-size: 24px;
  }

  

  
  #stacks_in_4766 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4766 .quote_text {
    font-size: 18px;
  }

    

  

  
  #stacks_in_4766 .floated_content {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  


  
    #stacks_in_4766 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4766 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_in_4766 {
	padding: 0px 20px 20px 0px;
}
/* Pull Quote Styling */


  #stacks_in_4780 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4780 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4780 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



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




#stacks_in_4780 .floated_content {
  float: left;
}



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

@media only screen {
  #stacks_in_4780 .quote_text {
    font-size: 32px;
  }

    

  

  
  #stacks_in_4780 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4780 .quote_text {
    font-size: 24px;
  }

    

  

  
  #stacks_in_4780 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4780 .quote_text {
    font-size: 24px;
  }

  

  
  #stacks_in_4780 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4780 .quote_text {
    font-size: 18px;
  }

    

  

  
  #stacks_in_4780 .floated_content {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  


  
    #stacks_in_4780 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4780 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_in_4780 {
	padding: 0px 20px 20px 0px;
}
/* Pull Quote Styling */


  #stacks_in_4794 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4794 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4794 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



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




#stacks_in_4794 .floated_content {
  float: left;
}



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

@media only screen {
  #stacks_in_4794 .quote_text {
    font-size: 32px;
  }

    

  

  
  #stacks_in_4794 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4794 .quote_text {
    font-size: 24px;
  }

    

  

  
  #stacks_in_4794 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4794 .quote_text {
    font-size: 24px;
  }

  

  
  #stacks_in_4794 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4794 .quote_text {
    font-size: 18px;
  }

    

  

  
  #stacks_in_4794 .floated_content {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  


  
    #stacks_in_4794 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4794 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_in_4794 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_4132 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_4133 {
	text-transform: lowercase;
}

#stacks_in_4135 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_4136 {
	text-transform: lowercase;
}

#stacks_in_4139 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_4140 {
	text-transform: lowercase;
}

#stacks_in_4145 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_4146 {
	text-transform: lowercase;
}

#stacks_in_4149 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_4153 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_4157 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_4161 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_4165 {
	padding: 0px 20px 20px 0px;
}
#stacks_in_35962{
	clear:both;padding: 0;margin: 0;
	counter-reset: section;
	
	-webkit-animation: opLoad 1s ease-out;
	-moz-animation: opLoad 1s ease-out;
	-o-animation: opLoad 1s ease-out;
	animation: opLoad 1s ease-out;
	
}


.ncp img{opacity: 0;-webkit-transition:opacity 1s ease-out;-moz-transition:opacity 1s ease-out;-o-animation: opLoad 1s ease-out;transition:opacity 1s ease-out;}
.ncp img.show{opacity: 1;}


.ncp img{max-width:100%;height:auto; width:auto;}
.ncp .count{font-size: 11px;padding: 1px 5px 2px;margin-bottom:.5em;border:1px solid #cfcfcf;color:#aaa;border-radius:2px;display: inline-block;-webkit-font-smoothing: antialiased;
}
#stacks_in_35962 .c+.c .count{margin-left: 0px;}
#stacks_in_35962.s3 .c.s2_3 .count,#stacks_in_35962.s4 .c.s2_4 .count,#stacks_in_35962.s4 .c.s3_4 .count{ margin-left: 0px;}
.ncp .count:before{counter-increment: section;content: 'Column 'counter(section) '';}

.ncp .g:before,.ncp .g:after{content:"";display:table;}
.ncp .g:after{clear:both;}
.ncp .c{display: block;float:left;margin: 1% 0 1% 1.6%;}
.s1_1,.s1_2,.s1_3,.s1_4{margin: 1% 0;}

.ncp .c:first-child { margin-left: 0; }

#stacks_in_35962.s2 .c.s1_2 .c-pad,#stacks_in_35962.s3 .c.s1_3 .c-pad,#stacks_in_35962.s4 .c.s1_4 .c-pad{padding: 0 0px 0 0;}
#stacks_in_35962.s3 .c.s2_3 .c-pad,#stacks_in_35962.s4 .c.s2_4 .c-pad,#stacks_in_35962.s4 .c.s3_4 .c-pad{ padding: 0 0px;}
#stacks_in_35962.s2 .c.s2_2 .c-pad,#stacks_in_35962.s3 .c.s3_3 .c-pad,#stacks_in_35962.s4 .c.s4_4 .c-pad{ padding: 0 0 0 0px;}
.ncp.s1>.c{width: 100%;}.ncp.s2>.c{width: 49.2%;}.ncp.s3>.c{width: 32.26%;}.ncp.s4>.c{width: 23.8%;}

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

	#stacks_in_35962 .c+.c .count,
	#stacks_in_35962.s3 .c.s2_3 .count,
	#stacks_in_35962.s4 .c.s3_4 .count{margin-left: 0;}
	#stacks_in_35962 .c{margin: 1% 0;padding: 0 0;width: 100%;}
	#stacks_in_35962 .c:first-child,#stacks_in_35962.s4 .c.s1_4,#stacks_in_35962.s4 .c.s2_4{ padding: 0 0 0;}
	#stacks_in_35962 .c:last-child,#stacks_in_35962.s4 .c.s3_4,#stacks_in_35962.s4 .c.s4_4{ padding: 0 0 0;}

	#stacks_in_35962.s2 .c-pad,#stacks_in_35962.s3 .c-pad{ padding: 0 !important;}

	#stacks_in_35962.s4 .c.s2_4 .count,
	#stacks_in_35962.s4 .c.s4_4 .count{ margin-left: 0px;}
	#stacks_in_35962.s4 .c {width: 49.2%;}
	#stacks_in_35962.s4 .c.s1_4 .c-pad,#stacks_in_35962.s4 .c.s3_4 .c-pad{ padding: 0 0px 0 0;}
	#stacks_in_35962.s4 .c.s2_4 .c-pad,#stacks_in_35962.s4 .c.s4_4 .c-pad{ padding: 0 0 0 0px;}
}

@media only screen and (max-width: 300px) {
	#stacks_in_35962 .count{ margin-left: 0 !important;}
	#stacks_in_35962 .c .c-pad{padding: 0 !important;}
	#stacks_in_35962.s4 .c{width: 100%;}
}

@-webkit-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes opLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

#stacks_in_35962 {
	padding: 8px 0px 0px 0px;
}

#stacks_in_5783 {
	padding: 8px 0px 20px 0px;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_4023_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_4023_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_4023_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_4023_accordion_label i {
}

.stacks_in_4023_accordion_selected {
}

.stacks_in_4023_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_4023_accordion li:last-child .stacks_in_4023_accordion_content {
}

.stacks_in_4023_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_4023_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_4023_accordion_selected .accordion_icon i {
	
}

#stacks_in_4023_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_4023_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_4023_accordion_label {
	color: #000000;
	background: #FAFAFA;
	border-bottom: 1px solid #F5F5F5;
}

.stacks_in_4023_accordion_selected {
	color: #000000;
	background: #F4F4F4;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_4023_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #F5F5F5;
}


ul#stacks_in_4023_accordion li:last-child .stacks_in_4023_accordion_label {
	border-bottom: none;
}


ul#stacks_in_4023_accordion li:last-child .stacks_in_4023_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_4023_accordion li:last-child .stacks_in_4023_accordion_content {
	border-bottom: none;
}

#stacks_in_4023_open_all {
	color: #757575;
}

#stacks_in_4023_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_4023_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_4023_accordion_label {
		font-size: 15px;
	}

	.stacks_in_4023_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_4023_accordion_label {
		font-size: 15px;
	}

	.stacks_in_4023_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_4023_accordion_label {
		font-size: 14px;
	}

	.stacks_in_4023_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_4023_accordion_label {
		font-size: 14px;
	}

	.stacks_in_4023_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_4023 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	margin: 30px 3px 40px 0px;
}
/*  Archetypon Scroll Scope  */
.ssDiv_stacks_in_4839{
	width: 100%;
	height: auto;
	max-height: 200px;
	margin: 0;
	padding: 0;
	overflow: auto;
}
/* end */
#stacks_in_4028 {
	padding: 0px 20px 20px 0px;
}
/*  Archetypon Scroll Scope  */
.ssDiv_stacks_in_4841{
	width: 100%;
	height: auto;
	max-height: 200px;
	margin: 0;
	padding: 0;
	overflow: auto;
}
/* end */
#stacks_in_4031 {
	padding: 0px 20px 20px 0px;
}
/*  Archetypon Scroll Scope  */
.ssDiv_stacks_in_4843{
	width: 100%;
	height: auto;
	max-height: 200px;
	margin: 0;
	padding: 0;
	overflow: auto;
}
/* end */
#stacks_in_4035 {
	padding: 0px 20px 20px 0px;
}
/*  Archetypon Scroll Scope  */
.ssDiv_stacks_in_4845{
	width: 100%;
	height: auto;
	max-height: 200px;
	margin: 0;
	padding: 0;
	overflow: auto;
}
/* end */
#stacks_in_4039 {
	padding: 0px 20px 20px 0px;
}
/*  Archetypon Scroll Scope  */
.ssDiv_stacks_in_35507{
	width: 100%;
	height: auto;
	max-height: 200px;
	margin: 0;
	padding: 0;
	overflow: auto;
}
/* end */
#stacks_in_35509 {
	padding: 0px 20px 20px 0px;
}
/*  Archetypon Scroll Scope  */
.ssDiv_stacks_in_35511{
	width: 100%;
	height: auto;
	max-height: 200px;
	margin: 0;
	padding: 0;
	overflow: auto;
}
/* end */
#stacks_in_4047 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_4051 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_4055 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_4059 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_4063 {
	padding: 0px 20px 20px 0px;
}
/* Pull Quote Styling */


  #stacks_in_1528 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1528 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1528 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



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




#stacks_in_1528 .floated_content {
  float: left;
}



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

@media only screen {
  #stacks_in_1528 .quote_text {
    font-size: 32px;
  }

    

  

  
  #stacks_in_1528 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1528 .quote_text {
    font-size: 24px;
  }

    

  

  
  #stacks_in_1528 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1528 .quote_text {
    font-size: 24px;
  }

  

  
  #stacks_in_1528 .floated_content {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1528 .quote_text {
    font-size: 18px;
  }

    

  

  
  #stacks_in_1528 .floated_content {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  


  
    #stacks_in_1528 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1528 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_in_1528 {
	padding: 18px 0px 0px 0px;
}

#stacks_in_3584 {
	padding: 0px 0px 40px 0px;
}

#stacks_in_3587 {
	font-size: 80%;
}

#stacks_in_3948 {
	padding: 18px 0px 18px 0px;
}

#stacks_in_35818 {
	font-size: 115%;
}

#stacks_in_35580 {
	margin:  10px;
	padding: 30px 30px 0px 0px;
}

#stacks_in_35581 {
	letter-spacing: 4px;
}

#stacks_in_36440 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_36442 article,
#stacks_in_36442 aside,
#stacks_in_36442 details,
#stacks_in_36442 figcaption,
#stacks_in_36442 figure,
#stacks_in_36442 footer,
#stacks_in_36442 header,
#stacks_in_36442 hgroup,
#stacks_in_36442 main,
#stacks_in_36442 nav,
#stacks_in_36442 section,
#stacks_in_36442 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_36442 audio,
#stacks_in_36442 canvas,
#stacks_in_36442 progress,
#stacks_in_36442 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_36442 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_36442 [hidden],
#stacks_in_36442 template {
  display: none;
}


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

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

#stacks_in_36442 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_36442 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_36442 .wow {
  visibility: hidden;
}



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


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

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

  #stacks_in_36442 .column_base_margin {
    margin-bottom: 10px;
  }
}

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

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







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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_36442 .hide {
  display: none; }

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


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


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

#stacks_in_36442 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_36442 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36445 {
	font-size: 110%;
}

#stacks_in_36447 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36448 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36449_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36449_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36449_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36449_accordion_label i {
}

.stacks_in_36449_accordion_selected {
}

.stacks_in_36449_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36449_accordion li:last-child .stacks_in_36449_accordion_content {
}

.stacks_in_36449_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36449_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36449_accordion_selected .accordion_icon i {
	
}

#stacks_in_36449_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36449_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36449_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36449_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36449_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36449_accordion li:last-child .stacks_in_36449_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36449_accordion li:last-child .stacks_in_36449_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36449_accordion li:last-child .stacks_in_36449_accordion_content {
	border-bottom: none;
}

#stacks_in_36449_open_all {
	color: #757575;
}

#stacks_in_36449_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36449_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36449_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36449_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36449_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36449_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36449_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36449_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36449_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36449_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36450 {
	font-size: 85%;
}

#stacks_in_36452 {
	margin: 0px 0px 20px 20px;
}

#stacks_in_36453 {
	font-size: 90%;
}

#stacks_in_36463 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36464 {
	text-transform: lowercase;
}

#stacks_in_36466 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36467 {
	text-transform: lowercase;
}

#stacks_in_36470 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36471 {
	text-transform: lowercase;
}

#stacks_in_36474 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36475 {
	text-transform: lowercase;
}

#stacks_in_36478 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36482 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36486 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36490 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36494 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36550 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_36551 article,
#stacks_in_36551 aside,
#stacks_in_36551 details,
#stacks_in_36551 figcaption,
#stacks_in_36551 figure,
#stacks_in_36551 footer,
#stacks_in_36551 header,
#stacks_in_36551 hgroup,
#stacks_in_36551 main,
#stacks_in_36551 nav,
#stacks_in_36551 section,
#stacks_in_36551 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_36551 audio,
#stacks_in_36551 canvas,
#stacks_in_36551 progress,
#stacks_in_36551 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_36551 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_36551 [hidden],
#stacks_in_36551 template {
  display: none;
}


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

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

#stacks_in_36551 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_36551 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_36551 .wow {
  visibility: hidden;
}



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


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

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

  #stacks_in_36551 .column_base_margin {
    margin-bottom: 10px;
  }
}

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

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







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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_36551 .hide {
  display: none; }

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


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


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

#stacks_in_36551 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_36551 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36554 {
	font-size: 110%;
}

#stacks_in_36555 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36557 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36558_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36558_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36558_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36558_accordion_label i {
}

.stacks_in_36558_accordion_selected {
}

.stacks_in_36558_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36558_accordion li:last-child .stacks_in_36558_accordion_content {
}

.stacks_in_36558_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36558_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36558_accordion_selected .accordion_icon i {
	
}

#stacks_in_36558_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36558_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36558_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36558_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36558_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36558_accordion li:last-child .stacks_in_36558_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36558_accordion li:last-child .stacks_in_36558_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36558_accordion li:last-child .stacks_in_36558_accordion_content {
	border-bottom: none;
}

#stacks_in_36558_open_all {
	color: #757575;
}

#stacks_in_36558_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36558_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36558_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36558_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36558_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36558_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36558_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36558_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36558_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36558_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36559 {
	font-size: 85%;
}

#stacks_in_36560 {
	margin: 0px 0px 20px 20px;
}

#stacks_in_36562 {
	font-size: 90%;
}

#stacks_in_36572 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36573 {
	text-transform: lowercase;
}

#stacks_in_36575 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36576 {
	text-transform: lowercase;
}

#stacks_in_36579 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36580 {
	text-transform: lowercase;
}

#stacks_in_36583 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36584 {
	text-transform: lowercase;
}

#stacks_in_36587 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36591 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36595 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36599 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36603 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36605 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_36606 article,
#stacks_in_36606 aside,
#stacks_in_36606 details,
#stacks_in_36606 figcaption,
#stacks_in_36606 figure,
#stacks_in_36606 footer,
#stacks_in_36606 header,
#stacks_in_36606 hgroup,
#stacks_in_36606 main,
#stacks_in_36606 nav,
#stacks_in_36606 section,
#stacks_in_36606 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_36606 audio,
#stacks_in_36606 canvas,
#stacks_in_36606 progress,
#stacks_in_36606 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_36606 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_36606 [hidden],
#stacks_in_36606 template {
  display: none;
}


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

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

#stacks_in_36606 img {
  border: 0;
}

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

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

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

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

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

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

#stacks_in_36606 pre {
  overflow: auto;
}

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

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



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


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


#stacks_in_36606 .wow {
  visibility: hidden;
}



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


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

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

  #stacks_in_36606 .column_base_margin {
    margin-bottom: 10px;
  }
}

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

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







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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_36606 .hide {
  display: none; }

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


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


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

#stacks_in_36606 select {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  #stacks_in_36606 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36606 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36606 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36606 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36606 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36606 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36606 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36606 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36606 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36606 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36606 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36606 .column,
  #stacks_in_36606 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36606 .large-1 {
    width: 8.33333%; }

  #stacks_in_36606 .large-2 {
    width: 16.66667%; }

  #stacks_in_36606 .large-3 {
    width: 25%; }

  #stacks_in_36606 .large-4 {
    width: 33.33333%; }

  #stacks_in_36606 .large-5 {
    width: 41.66667%; }

  #stacks_in_36606 .large-6 {
    width: 50%; }

  #stacks_in_36606 .large-7 {
    width: 58.33333%; }

  #stacks_in_36606 .large-8 {
    width: 66.66667%; }

  #stacks_in_36606 .large-9 {
    width: 75%; }

  #stacks_in_36606 .large-10 {
    width: 83.33333%; }

  #stacks_in_36606 .large-11 {
    width: 91.66667%; }

  #stacks_in_36606 .large-12 {
    width: 100%; }

  #stacks_in_36606 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36606 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36606 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36606 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36606 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36606 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36606 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36606 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36606 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36606 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36606 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36606 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36606 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36606 .column.large-centered,
  #stacks_in_36606 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36606 .column.large-uncentered,
  #stacks_in_36606 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36606 .column.large-centered:last-child,
  #stacks_in_36606 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_36606 .column.large-uncentered:last-child,
  #stacks_in_36606 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_36606 .column.large-uncentered.opposite,
  #stacks_in_36606 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_36606 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36606 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36606 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36606 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36606 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36606 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36606 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36606 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36606 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36606 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36606 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36606 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36606 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36606 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36606 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36606 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36606 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36606 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36606 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36606 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36606 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36606 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36606 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36606 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_36606 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_36606 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_36606 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_36606 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_36606 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_36606 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_36606 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_36606 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36606 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36606 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_36606 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36606 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36606 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_36606 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36606 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36606 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36606 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_36606 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36609 {
	font-size: 110%;
}

#stacks_in_36610 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36612 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36613_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36613_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36613_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36613_accordion_label i {
}

.stacks_in_36613_accordion_selected {
}

.stacks_in_36613_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36613_accordion li:last-child .stacks_in_36613_accordion_content {
}

.stacks_in_36613_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36613_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36613_accordion_selected .accordion_icon i {
	
}

#stacks_in_36613_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36613_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36613_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36613_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36613_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36613_accordion li:last-child .stacks_in_36613_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36613_accordion li:last-child .stacks_in_36613_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36613_accordion li:last-child .stacks_in_36613_accordion_content {
	border-bottom: none;
}

#stacks_in_36613_open_all {
	color: #757575;
}

#stacks_in_36613_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36613_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36613_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36613_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36613_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36613_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36613_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36613_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36613_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36613_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36614 {
	font-size: 85%;
}

#stacks_in_36615 {
	margin: 0px 0px 20px 20px;
}

#stacks_in_36617 {
	font-size: 90%;
}

#stacks_in_36621 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36622 {
	text-transform: lowercase;
}

#stacks_in_36623 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36624 {
	text-transform: lowercase;
}

#stacks_in_36625 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36626 {
	text-transform: lowercase;
}

#stacks_in_36627 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36628 {
	text-transform: lowercase;
}

#stacks_in_36629 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36630 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36631 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36632 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36633 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36496 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_36498 article,
#stacks_in_36498 aside,
#stacks_in_36498 details,
#stacks_in_36498 figcaption,
#stacks_in_36498 figure,
#stacks_in_36498 footer,
#stacks_in_36498 header,
#stacks_in_36498 hgroup,
#stacks_in_36498 main,
#stacks_in_36498 nav,
#stacks_in_36498 section,
#stacks_in_36498 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_36498 audio,
#stacks_in_36498 canvas,
#stacks_in_36498 progress,
#stacks_in_36498 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_36498 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_36498 [hidden],
#stacks_in_36498 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_36498 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_36498 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_36498 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_36498 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_36498 code,
#stacks_in_36498 kbd,
#stacks_in_36498 pre,
#stacks_in_36498 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_36498 *,
#stacks_in_36498 *:before,
#stacks_in_36498 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_36498 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_36498 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_36498 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_36498 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_36498 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_36498 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_36498 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_36498 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_36498 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_36498 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_36498 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_36498 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_36498 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_36498 *,
#stacks_in_36498 *:before,
#stacks_in_36498 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_36498 .left {
  float: left !important; }

#stacks_in_36498 .right {
  float: right !important; }

#stacks_in_36498 .clearfix:before,
#stacks_in_36498 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_36498 .clearfix:after {
  clear: both; }

#stacks_in_36498 .hide {
  display: none; }

#stacks_in_36498 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_36498 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_36498 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_36498 select {
  width: 100%; }

#stacks_in_36498 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_36498 .row:before,
#stacks_in_36498 .row:after {
  content: " ";
  display: table; }

#stacks_in_36498 .row:after {
  clear: both; }

#stacks_in_36498 .row.collapse > .column,
#stacks_in_36498 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_36498 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_36498 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_36498 .row .row:before,
#stacks_in_36498 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_36498 .row .row:after {
  clear: both; }

#stacks_in_36498 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_36498 .row .row.collapse:before,
#stacks_in_36498 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_36498 .row .row.collapse:after {
  clear: both; }

#stacks_in_36498 .column,
#stacks_in_36498 .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_36498 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_36498 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_36498 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36498 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36498 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36498 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36498 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36498 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36498 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36498 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36498 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36498 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36498 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36498 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36498 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36498 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36498 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36498 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36498 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36498 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36498 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36498 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36498 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36498 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36498 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36498 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36498 .column,
  #stacks_in_36498 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36498 .small-1 {
    width: 8.33333%; }

  #stacks_in_36498 .small-2 {
    width: 16.66667%; }

  #stacks_in_36498 .small-3 {
    width: 25%; }

  #stacks_in_36498 .small-4 {
    width: 33.33333%; }

  #stacks_in_36498 .small-5 {
    width: 41.66667%; }

  #stacks_in_36498 .small-6 {
    width: 50%; }

  #stacks_in_36498 .small-7 {
    width: 58.33333%; }

  #stacks_in_36498 .small-8 {
    width: 66.66667%; }

  #stacks_in_36498 .small-9 {
    width: 75%; }

  #stacks_in_36498 .small-10 {
    width: 83.33333%; }

  #stacks_in_36498 .small-11 {
    width: 91.66667%; }

  #stacks_in_36498 .small-12 {
    width: 100%; }

  #stacks_in_36498 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36498 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36498 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36498 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36498 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36498 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36498 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36498 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36498 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36498 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36498 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36498 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36498 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36498 .column.small-centered,
  #stacks_in_36498 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36498 .column.small-uncentered,
  #stacks_in_36498 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36498 .column.small-centered:last-child,
  #stacks_in_36498 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_36498 .column.small-uncentered:last-child,
  #stacks_in_36498 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_36498 .column.small-uncentered.opposite,
  #stacks_in_36498 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_36498 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36498 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36498 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36498 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36498 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36498 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36498 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36498 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36498 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36498 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36498 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36498 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36498 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36498 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36498 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36498 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36498 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36498 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36498 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36498 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36498 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36498 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36498 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36498 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36498 .column,
  #stacks_in_36498 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36498 .medium-1 {
    width: 8.33333%; }

  #stacks_in_36498 .medium-2 {
    width: 16.66667%; }

  #stacks_in_36498 .medium-3 {
    width: 25%; }

  #stacks_in_36498 .medium-4 {
    width: 33.33333%; }

  #stacks_in_36498 .medium-5 {
    width: 41.66667%; }

  #stacks_in_36498 .medium-6 {
    width: 50%; }

  #stacks_in_36498 .medium-7 {
    width: 58.33333%; }

  #stacks_in_36498 .medium-8 {
    width: 66.66667%; }

  #stacks_in_36498 .medium-9 {
    width: 75%; }

  #stacks_in_36498 .medium-10 {
    width: 83.33333%; }

  #stacks_in_36498 .medium-11 {
    width: 91.66667%; }

  #stacks_in_36498 .medium-12 {
    width: 100%; }

  #stacks_in_36498 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36498 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36498 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36498 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36498 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36498 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36498 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36498 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36498 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36498 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36498 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36498 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36498 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36498 .column.medium-centered,
  #stacks_in_36498 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36498 .column.medium-uncentered,
  #stacks_in_36498 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36498 .column.medium-centered:last-child,
  #stacks_in_36498 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_36498 .column.medium-uncentered:last-child,
  #stacks_in_36498 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_36498 .column.medium-uncentered.opposite,
  #stacks_in_36498 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_36498 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36498 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36498 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36498 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36498 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36498 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36498 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36498 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36498 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36498 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36498 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36498 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36498 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36498 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36498 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36498 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36498 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36498 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36498 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36498 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36498 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36498 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36498 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36498 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_36498 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36498 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36498 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36498 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36498 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36498 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36498 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36498 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36498 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36498 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36498 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36498 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36498 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36498 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36498 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36498 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36498 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36498 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36498 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36498 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36498 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36498 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36498 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36498 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36498 .column,
  #stacks_in_36498 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36498 .large-1 {
    width: 8.33333%; }

  #stacks_in_36498 .large-2 {
    width: 16.66667%; }

  #stacks_in_36498 .large-3 {
    width: 25%; }

  #stacks_in_36498 .large-4 {
    width: 33.33333%; }

  #stacks_in_36498 .large-5 {
    width: 41.66667%; }

  #stacks_in_36498 .large-6 {
    width: 50%; }

  #stacks_in_36498 .large-7 {
    width: 58.33333%; }

  #stacks_in_36498 .large-8 {
    width: 66.66667%; }

  #stacks_in_36498 .large-9 {
    width: 75%; }

  #stacks_in_36498 .large-10 {
    width: 83.33333%; }

  #stacks_in_36498 .large-11 {
    width: 91.66667%; }

  #stacks_in_36498 .large-12 {
    width: 100%; }

  #stacks_in_36498 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36498 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36498 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36498 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36498 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36498 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36498 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36498 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36498 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36498 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36498 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36498 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36498 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36498 .column.large-centered,
  #stacks_in_36498 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36498 .column.large-uncentered,
  #stacks_in_36498 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36498 .column.large-centered:last-child,
  #stacks_in_36498 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_36498 .column.large-uncentered:last-child,
  #stacks_in_36498 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_36498 .column.large-uncentered.opposite,
  #stacks_in_36498 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_36498 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36498 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36498 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36498 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36498 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36498 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36498 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36498 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36498 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36498 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36498 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36498 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36498 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36498 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36498 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36498 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36498 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36498 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36498 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36498 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36498 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36498 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36498 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36498 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_36498 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_36498 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_36498 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_36498 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_36498 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_36498 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_36498 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_36498 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36498 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36498 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_36498 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36498 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36498 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_36498 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36498 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36498 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36498 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_36498 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36501 {
	font-size: 110%;
}

#stacks_in_36503 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36504 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36505_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36505_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36505_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36505_accordion_label i {
}

.stacks_in_36505_accordion_selected {
}

.stacks_in_36505_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36505_accordion li:last-child .stacks_in_36505_accordion_content {
}

.stacks_in_36505_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36505_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36505_accordion_selected .accordion_icon i {
	
}

#stacks_in_36505_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36505_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36505_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36505_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36505_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36505_accordion li:last-child .stacks_in_36505_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36505_accordion li:last-child .stacks_in_36505_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36505_accordion li:last-child .stacks_in_36505_accordion_content {
	border-bottom: none;
}

#stacks_in_36505_open_all {
	color: #757575;
}

#stacks_in_36505_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36505_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36505_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36505_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36505_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36505_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36505_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36505_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36505_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36505_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36506 {
	font-size: 85%;
}

#stacks_in_36508 {
	margin: 0px 0px 20px 20px;
}

#stacks_in_36509 {
	font-size: 90%;
}

#stacks_in_36517 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36518 {
	text-transform: lowercase;
}

#stacks_in_36520 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36521 {
	text-transform: lowercase;
}

#stacks_in_36524 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36525 {
	text-transform: lowercase;
}

#stacks_in_36528 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36529 {
	text-transform: lowercase;
}

#stacks_in_36532 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36536 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36540 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36544 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36548 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36300 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_36301 article,
#stacks_in_36301 aside,
#stacks_in_36301 details,
#stacks_in_36301 figcaption,
#stacks_in_36301 figure,
#stacks_in_36301 footer,
#stacks_in_36301 header,
#stacks_in_36301 hgroup,
#stacks_in_36301 main,
#stacks_in_36301 nav,
#stacks_in_36301 section,
#stacks_in_36301 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_36301 audio,
#stacks_in_36301 canvas,
#stacks_in_36301 progress,
#stacks_in_36301 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_36301 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_36301 [hidden],
#stacks_in_36301 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_36301 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_36301 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_36301 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_36301 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_36301 code,
#stacks_in_36301 kbd,
#stacks_in_36301 pre,
#stacks_in_36301 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_36301 *,
#stacks_in_36301 *:before,
#stacks_in_36301 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_36301 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_36301 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_36301 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_36301 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_36301 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_36301 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_36301 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_36301 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_36301 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_36301 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_36301 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_36301 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_36301 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_36301 *,
#stacks_in_36301 *:before,
#stacks_in_36301 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_36301 .left {
  float: left !important; }

#stacks_in_36301 .right {
  float: right !important; }

#stacks_in_36301 .clearfix:before,
#stacks_in_36301 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_36301 .clearfix:after {
  clear: both; }

#stacks_in_36301 .hide {
  display: none; }

#stacks_in_36301 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_36301 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_36301 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_36301 select {
  width: 100%; }

#stacks_in_36301 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_36301 .row:before,
#stacks_in_36301 .row:after {
  content: " ";
  display: table; }

#stacks_in_36301 .row:after {
  clear: both; }

#stacks_in_36301 .row.collapse > .column,
#stacks_in_36301 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_36301 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_36301 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_36301 .row .row:before,
#stacks_in_36301 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_36301 .row .row:after {
  clear: both; }

#stacks_in_36301 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_36301 .row .row.collapse:before,
#stacks_in_36301 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_36301 .row .row.collapse:after {
  clear: both; }

#stacks_in_36301 .column,
#stacks_in_36301 .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_36301 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_36301 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_36301 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36301 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36301 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36301 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36301 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36301 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36301 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36301 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36301 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36301 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36301 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36301 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36301 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36301 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36301 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36301 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36301 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36301 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36301 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36301 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36301 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36301 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36301 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36301 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36301 .column,
  #stacks_in_36301 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36301 .small-1 {
    width: 8.33333%; }

  #stacks_in_36301 .small-2 {
    width: 16.66667%; }

  #stacks_in_36301 .small-3 {
    width: 25%; }

  #stacks_in_36301 .small-4 {
    width: 33.33333%; }

  #stacks_in_36301 .small-5 {
    width: 41.66667%; }

  #stacks_in_36301 .small-6 {
    width: 50%; }

  #stacks_in_36301 .small-7 {
    width: 58.33333%; }

  #stacks_in_36301 .small-8 {
    width: 66.66667%; }

  #stacks_in_36301 .small-9 {
    width: 75%; }

  #stacks_in_36301 .small-10 {
    width: 83.33333%; }

  #stacks_in_36301 .small-11 {
    width: 91.66667%; }

  #stacks_in_36301 .small-12 {
    width: 100%; }

  #stacks_in_36301 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36301 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36301 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36301 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36301 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36301 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36301 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36301 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36301 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36301 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36301 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36301 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36301 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36301 .column.small-centered,
  #stacks_in_36301 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36301 .column.small-uncentered,
  #stacks_in_36301 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36301 .column.small-centered:last-child,
  #stacks_in_36301 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_36301 .column.small-uncentered:last-child,
  #stacks_in_36301 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_36301 .column.small-uncentered.opposite,
  #stacks_in_36301 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_36301 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36301 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36301 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36301 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36301 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36301 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36301 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36301 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36301 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36301 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36301 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36301 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36301 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36301 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36301 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36301 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36301 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36301 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36301 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36301 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36301 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36301 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36301 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36301 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36301 .column,
  #stacks_in_36301 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36301 .medium-1 {
    width: 8.33333%; }

  #stacks_in_36301 .medium-2 {
    width: 16.66667%; }

  #stacks_in_36301 .medium-3 {
    width: 25%; }

  #stacks_in_36301 .medium-4 {
    width: 33.33333%; }

  #stacks_in_36301 .medium-5 {
    width: 41.66667%; }

  #stacks_in_36301 .medium-6 {
    width: 50%; }

  #stacks_in_36301 .medium-7 {
    width: 58.33333%; }

  #stacks_in_36301 .medium-8 {
    width: 66.66667%; }

  #stacks_in_36301 .medium-9 {
    width: 75%; }

  #stacks_in_36301 .medium-10 {
    width: 83.33333%; }

  #stacks_in_36301 .medium-11 {
    width: 91.66667%; }

  #stacks_in_36301 .medium-12 {
    width: 100%; }

  #stacks_in_36301 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36301 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36301 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36301 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36301 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36301 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36301 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36301 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36301 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36301 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36301 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36301 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36301 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36301 .column.medium-centered,
  #stacks_in_36301 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36301 .column.medium-uncentered,
  #stacks_in_36301 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36301 .column.medium-centered:last-child,
  #stacks_in_36301 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_36301 .column.medium-uncentered:last-child,
  #stacks_in_36301 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_36301 .column.medium-uncentered.opposite,
  #stacks_in_36301 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_36301 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36301 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36301 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36301 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36301 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36301 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36301 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36301 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36301 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36301 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36301 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36301 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36301 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36301 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36301 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36301 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36301 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36301 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36301 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36301 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36301 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36301 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36301 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36301 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_36301 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36301 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36301 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36301 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36301 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36301 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36301 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36301 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36301 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36301 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36301 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36301 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36301 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36301 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36301 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36301 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36301 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36301 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36301 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36301 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36301 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36301 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36301 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36301 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36301 .column,
  #stacks_in_36301 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36301 .large-1 {
    width: 8.33333%; }

  #stacks_in_36301 .large-2 {
    width: 16.66667%; }

  #stacks_in_36301 .large-3 {
    width: 25%; }

  #stacks_in_36301 .large-4 {
    width: 33.33333%; }

  #stacks_in_36301 .large-5 {
    width: 41.66667%; }

  #stacks_in_36301 .large-6 {
    width: 50%; }

  #stacks_in_36301 .large-7 {
    width: 58.33333%; }

  #stacks_in_36301 .large-8 {
    width: 66.66667%; }

  #stacks_in_36301 .large-9 {
    width: 75%; }

  #stacks_in_36301 .large-10 {
    width: 83.33333%; }

  #stacks_in_36301 .large-11 {
    width: 91.66667%; }

  #stacks_in_36301 .large-12 {
    width: 100%; }

  #stacks_in_36301 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36301 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36301 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36301 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36301 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36301 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36301 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36301 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36301 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36301 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36301 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36301 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36301 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36301 .column.large-centered,
  #stacks_in_36301 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36301 .column.large-uncentered,
  #stacks_in_36301 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36301 .column.large-centered:last-child,
  #stacks_in_36301 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_36301 .column.large-uncentered:last-child,
  #stacks_in_36301 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_36301 .column.large-uncentered.opposite,
  #stacks_in_36301 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_36301 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36301 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36301 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36301 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36301 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36301 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36301 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36301 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36301 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36301 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36301 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36301 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36301 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36301 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36301 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36301 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36301 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36301 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36301 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36301 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36301 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36301 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36301 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36301 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_36301 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_36301 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_36301 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_36301 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_36301 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_36301 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_36301 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_36301 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36301 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36301 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_36301 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36301 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36301 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_36301 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36301 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36301 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36301 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_36301 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36303 {
	font-size: 110%;
}

#stacks_in_36305 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36306 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36308_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36308_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36308_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36308_accordion_label i {
}

.stacks_in_36308_accordion_selected {
}

.stacks_in_36308_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36308_accordion li:last-child .stacks_in_36308_accordion_content {
}

.stacks_in_36308_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36308_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36308_accordion_selected .accordion_icon i {
	
}

#stacks_in_36308_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36308_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36308_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36308_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36308_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36308_accordion li:last-child .stacks_in_36308_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36308_accordion li:last-child .stacks_in_36308_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36308_accordion li:last-child .stacks_in_36308_accordion_content {
	border-bottom: none;
}

#stacks_in_36308_open_all {
	color: #757575;
}

#stacks_in_36308_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36308_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36308_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36308_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36308_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36308_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36308_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36308_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36308_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36308_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36309 {
	font-size: 85%;
}

#stacks_in_36310 {
	margin: 0px 0px 20px 20px;
}

#stacks_in_36311 {
	font-size: 90%;
}

#stacks_in_36315 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36316 {
	text-transform: lowercase;
}

#stacks_in_36317 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36318 {
	text-transform: lowercase;
}

#stacks_in_36319 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36320 {
	text-transform: lowercase;
}

#stacks_in_36321 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36322 {
	text-transform: lowercase;
}

#stacks_in_36323 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36324 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36325 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36326 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36327 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36078 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_35582 article,
#stacks_in_35582 aside,
#stacks_in_35582 details,
#stacks_in_35582 figcaption,
#stacks_in_35582 figure,
#stacks_in_35582 footer,
#stacks_in_35582 header,
#stacks_in_35582 hgroup,
#stacks_in_35582 main,
#stacks_in_35582 nav,
#stacks_in_35582 section,
#stacks_in_35582 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_35582 audio,
#stacks_in_35582 canvas,
#stacks_in_35582 progress,
#stacks_in_35582 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_35582 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_35582 [hidden],
#stacks_in_35582 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_35582 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_35582 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_35582 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_35582 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_35582 code,
#stacks_in_35582 kbd,
#stacks_in_35582 pre,
#stacks_in_35582 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_35582 *,
#stacks_in_35582 *:before,
#stacks_in_35582 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_35582 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_35582 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_35582 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_35582 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_35582 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_35582 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_35582 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_35582 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_35582 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_35582 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_35582 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_35582 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_35582 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_35582 *,
#stacks_in_35582 *:before,
#stacks_in_35582 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_35582 .left {
  float: left !important; }

#stacks_in_35582 .right {
  float: right !important; }

#stacks_in_35582 .clearfix:before,
#stacks_in_35582 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_35582 .clearfix:after {
  clear: both; }

#stacks_in_35582 .hide {
  display: none; }

#stacks_in_35582 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_35582 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_35582 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_35582 select {
  width: 100%; }

#stacks_in_35582 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_35582 .row:before,
#stacks_in_35582 .row:after {
  content: " ";
  display: table; }

#stacks_in_35582 .row:after {
  clear: both; }

#stacks_in_35582 .row.collapse > .column,
#stacks_in_35582 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_35582 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_35582 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_35582 .row .row:before,
#stacks_in_35582 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_35582 .row .row:after {
  clear: both; }

#stacks_in_35582 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_35582 .row .row.collapse:before,
#stacks_in_35582 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_35582 .row .row.collapse:after {
  clear: both; }

#stacks_in_35582 .column,
#stacks_in_35582 .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_35582 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_35582 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_35582 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35582 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35582 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35582 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35582 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35582 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35582 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35582 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35582 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35582 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35582 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35582 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35582 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35582 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35582 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35582 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35582 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35582 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35582 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35582 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35582 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35582 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35582 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35582 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35582 .column,
  #stacks_in_35582 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35582 .small-1 {
    width: 8.33333%; }

  #stacks_in_35582 .small-2 {
    width: 16.66667%; }

  #stacks_in_35582 .small-3 {
    width: 25%; }

  #stacks_in_35582 .small-4 {
    width: 33.33333%; }

  #stacks_in_35582 .small-5 {
    width: 41.66667%; }

  #stacks_in_35582 .small-6 {
    width: 50%; }

  #stacks_in_35582 .small-7 {
    width: 58.33333%; }

  #stacks_in_35582 .small-8 {
    width: 66.66667%; }

  #stacks_in_35582 .small-9 {
    width: 75%; }

  #stacks_in_35582 .small-10 {
    width: 83.33333%; }

  #stacks_in_35582 .small-11 {
    width: 91.66667%; }

  #stacks_in_35582 .small-12 {
    width: 100%; }

  #stacks_in_35582 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35582 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35582 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35582 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35582 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35582 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35582 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35582 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35582 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35582 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35582 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35582 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35582 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35582 .column.small-centered,
  #stacks_in_35582 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35582 .column.small-uncentered,
  #stacks_in_35582 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35582 .column.small-centered:last-child,
  #stacks_in_35582 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_35582 .column.small-uncentered:last-child,
  #stacks_in_35582 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_35582 .column.small-uncentered.opposite,
  #stacks_in_35582 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_35582 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35582 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35582 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35582 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35582 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35582 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35582 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35582 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35582 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35582 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35582 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35582 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35582 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35582 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35582 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35582 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35582 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35582 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35582 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35582 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35582 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35582 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35582 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35582 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35582 .column,
  #stacks_in_35582 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35582 .medium-1 {
    width: 8.33333%; }

  #stacks_in_35582 .medium-2 {
    width: 16.66667%; }

  #stacks_in_35582 .medium-3 {
    width: 25%; }

  #stacks_in_35582 .medium-4 {
    width: 33.33333%; }

  #stacks_in_35582 .medium-5 {
    width: 41.66667%; }

  #stacks_in_35582 .medium-6 {
    width: 50%; }

  #stacks_in_35582 .medium-7 {
    width: 58.33333%; }

  #stacks_in_35582 .medium-8 {
    width: 66.66667%; }

  #stacks_in_35582 .medium-9 {
    width: 75%; }

  #stacks_in_35582 .medium-10 {
    width: 83.33333%; }

  #stacks_in_35582 .medium-11 {
    width: 91.66667%; }

  #stacks_in_35582 .medium-12 {
    width: 100%; }

  #stacks_in_35582 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35582 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35582 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35582 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35582 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35582 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35582 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35582 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35582 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35582 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35582 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35582 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35582 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35582 .column.medium-centered,
  #stacks_in_35582 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35582 .column.medium-uncentered,
  #stacks_in_35582 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35582 .column.medium-centered:last-child,
  #stacks_in_35582 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_35582 .column.medium-uncentered:last-child,
  #stacks_in_35582 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_35582 .column.medium-uncentered.opposite,
  #stacks_in_35582 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_35582 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35582 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35582 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35582 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35582 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35582 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35582 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35582 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35582 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35582 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35582 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35582 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35582 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35582 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35582 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35582 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35582 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35582 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35582 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35582 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35582 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35582 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35582 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35582 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_35582 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35582 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35582 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35582 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35582 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35582 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35582 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35582 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35582 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35582 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35582 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35582 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35582 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35582 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35582 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35582 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35582 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35582 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35582 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35582 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35582 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35582 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35582 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35582 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35582 .column,
  #stacks_in_35582 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35582 .large-1 {
    width: 8.33333%; }

  #stacks_in_35582 .large-2 {
    width: 16.66667%; }

  #stacks_in_35582 .large-3 {
    width: 25%; }

  #stacks_in_35582 .large-4 {
    width: 33.33333%; }

  #stacks_in_35582 .large-5 {
    width: 41.66667%; }

  #stacks_in_35582 .large-6 {
    width: 50%; }

  #stacks_in_35582 .large-7 {
    width: 58.33333%; }

  #stacks_in_35582 .large-8 {
    width: 66.66667%; }

  #stacks_in_35582 .large-9 {
    width: 75%; }

  #stacks_in_35582 .large-10 {
    width: 83.33333%; }

  #stacks_in_35582 .large-11 {
    width: 91.66667%; }

  #stacks_in_35582 .large-12 {
    width: 100%; }

  #stacks_in_35582 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35582 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35582 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35582 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35582 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35582 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35582 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35582 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35582 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35582 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35582 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35582 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35582 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35582 .column.large-centered,
  #stacks_in_35582 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35582 .column.large-uncentered,
  #stacks_in_35582 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35582 .column.large-centered:last-child,
  #stacks_in_35582 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_35582 .column.large-uncentered:last-child,
  #stacks_in_35582 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_35582 .column.large-uncentered.opposite,
  #stacks_in_35582 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_35582 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35582 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35582 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35582 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35582 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35582 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35582 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35582 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35582 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35582 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35582 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35582 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35582 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35582 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35582 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35582 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35582 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35582 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35582 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35582 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35582 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35582 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35582 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35582 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_35582 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_35582 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_35582 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_35582 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_35582 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_35582 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_35582 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_35582 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35582 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35582 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_35582 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35582 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35582 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_35582 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35582 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35582 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35582 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_35582 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_35519 {
	font-size: 110%;
}

#stacks_in_35521 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_35522 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_35821_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_35821_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_35821_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_35821_accordion_label i {
}

.stacks_in_35821_accordion_selected {
}

.stacks_in_35821_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_35821_accordion li:last-child .stacks_in_35821_accordion_content {
}

.stacks_in_35821_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_35821_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_35821_accordion_selected .accordion_icon i {
	
}

#stacks_in_35821_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_35821_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_35821_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_35821_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_35821_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_35821_accordion li:last-child .stacks_in_35821_accordion_label {
	border-bottom: none;
}


ul#stacks_in_35821_accordion li:last-child .stacks_in_35821_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_35821_accordion li:last-child .stacks_in_35821_accordion_content {
	border-bottom: none;
}

#stacks_in_35821_open_all {
	color: #757575;
}

#stacks_in_35821_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_35821_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_35821_accordion_label {
		font-size: 15px;
	}

	.stacks_in_35821_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_35821_accordion_label {
		font-size: 15px;
	}

	.stacks_in_35821_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_35821_accordion_label {
		font-size: 14px;
	}

	.stacks_in_35821_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_35821_accordion_label {
		font-size: 14px;
	}

	.stacks_in_35821_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_35822 {
	font-size: 85%;
}

#stacks_in_35823 {
	margin: 0px 0px 20px 20px;
}

#stacks_in_35824 {
	font-size: 90%;
}

#stacks_in_35829 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35830 {
	text-transform: lowercase;
}

#stacks_in_35832 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35833 {
	text-transform: lowercase;
}

#stacks_in_35836 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35837 {
	text-transform: lowercase;
}

#stacks_in_35840 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35841 {
	text-transform: lowercase;
}

#stacks_in_35844 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35848 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35852 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35856 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35860 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36206 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_36207 article,
#stacks_in_36207 aside,
#stacks_in_36207 details,
#stacks_in_36207 figcaption,
#stacks_in_36207 figure,
#stacks_in_36207 footer,
#stacks_in_36207 header,
#stacks_in_36207 hgroup,
#stacks_in_36207 main,
#stacks_in_36207 nav,
#stacks_in_36207 section,
#stacks_in_36207 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_36207 audio,
#stacks_in_36207 canvas,
#stacks_in_36207 progress,
#stacks_in_36207 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_36207 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_36207 [hidden],
#stacks_in_36207 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_36207 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_36207 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_36207 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_36207 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_36207 code,
#stacks_in_36207 kbd,
#stacks_in_36207 pre,
#stacks_in_36207 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_36207 *,
#stacks_in_36207 *:before,
#stacks_in_36207 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_36207 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_36207 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_36207 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_36207 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_36207 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_36207 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_36207 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_36207 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_36207 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_36207 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_36207 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_36207 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_36207 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_36207 *,
#stacks_in_36207 *:before,
#stacks_in_36207 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_36207 .left {
  float: left !important; }

#stacks_in_36207 .right {
  float: right !important; }

#stacks_in_36207 .clearfix:before,
#stacks_in_36207 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_36207 .clearfix:after {
  clear: both; }

#stacks_in_36207 .hide {
  display: none; }

#stacks_in_36207 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_36207 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_36207 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_36207 select {
  width: 100%; }

#stacks_in_36207 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_36207 .row:before,
#stacks_in_36207 .row:after {
  content: " ";
  display: table; }

#stacks_in_36207 .row:after {
  clear: both; }

#stacks_in_36207 .row.collapse > .column,
#stacks_in_36207 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_36207 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_36207 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_36207 .row .row:before,
#stacks_in_36207 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_36207 .row .row:after {
  clear: both; }

#stacks_in_36207 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_36207 .row .row.collapse:before,
#stacks_in_36207 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_36207 .row .row.collapse:after {
  clear: both; }

#stacks_in_36207 .column,
#stacks_in_36207 .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_36207 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_36207 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_36207 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36207 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36207 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36207 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36207 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36207 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36207 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36207 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36207 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36207 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36207 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36207 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36207 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36207 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36207 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36207 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36207 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36207 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36207 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36207 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36207 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36207 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36207 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36207 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36207 .column,
  #stacks_in_36207 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36207 .small-1 {
    width: 8.33333%; }

  #stacks_in_36207 .small-2 {
    width: 16.66667%; }

  #stacks_in_36207 .small-3 {
    width: 25%; }

  #stacks_in_36207 .small-4 {
    width: 33.33333%; }

  #stacks_in_36207 .small-5 {
    width: 41.66667%; }

  #stacks_in_36207 .small-6 {
    width: 50%; }

  #stacks_in_36207 .small-7 {
    width: 58.33333%; }

  #stacks_in_36207 .small-8 {
    width: 66.66667%; }

  #stacks_in_36207 .small-9 {
    width: 75%; }

  #stacks_in_36207 .small-10 {
    width: 83.33333%; }

  #stacks_in_36207 .small-11 {
    width: 91.66667%; }

  #stacks_in_36207 .small-12 {
    width: 100%; }

  #stacks_in_36207 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36207 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36207 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36207 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36207 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36207 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36207 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36207 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36207 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36207 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36207 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36207 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36207 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36207 .column.small-centered,
  #stacks_in_36207 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36207 .column.small-uncentered,
  #stacks_in_36207 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36207 .column.small-centered:last-child,
  #stacks_in_36207 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_36207 .column.small-uncentered:last-child,
  #stacks_in_36207 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_36207 .column.small-uncentered.opposite,
  #stacks_in_36207 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_36207 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36207 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36207 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36207 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36207 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36207 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36207 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36207 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36207 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36207 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36207 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36207 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36207 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36207 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36207 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36207 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36207 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36207 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36207 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36207 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36207 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36207 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36207 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36207 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36207 .column,
  #stacks_in_36207 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36207 .medium-1 {
    width: 8.33333%; }

  #stacks_in_36207 .medium-2 {
    width: 16.66667%; }

  #stacks_in_36207 .medium-3 {
    width: 25%; }

  #stacks_in_36207 .medium-4 {
    width: 33.33333%; }

  #stacks_in_36207 .medium-5 {
    width: 41.66667%; }

  #stacks_in_36207 .medium-6 {
    width: 50%; }

  #stacks_in_36207 .medium-7 {
    width: 58.33333%; }

  #stacks_in_36207 .medium-8 {
    width: 66.66667%; }

  #stacks_in_36207 .medium-9 {
    width: 75%; }

  #stacks_in_36207 .medium-10 {
    width: 83.33333%; }

  #stacks_in_36207 .medium-11 {
    width: 91.66667%; }

  #stacks_in_36207 .medium-12 {
    width: 100%; }

  #stacks_in_36207 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36207 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36207 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36207 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36207 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36207 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36207 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36207 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36207 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36207 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36207 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36207 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36207 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36207 .column.medium-centered,
  #stacks_in_36207 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36207 .column.medium-uncentered,
  #stacks_in_36207 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36207 .column.medium-centered:last-child,
  #stacks_in_36207 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_36207 .column.medium-uncentered:last-child,
  #stacks_in_36207 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_36207 .column.medium-uncentered.opposite,
  #stacks_in_36207 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_36207 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36207 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36207 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36207 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36207 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36207 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36207 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36207 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36207 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36207 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36207 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36207 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36207 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36207 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36207 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36207 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36207 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36207 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36207 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36207 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36207 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36207 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36207 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36207 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_36207 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36207 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36207 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36207 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36207 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36207 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36207 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36207 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36207 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36207 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36207 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36207 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36207 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36207 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36207 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36207 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36207 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36207 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36207 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36207 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36207 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36207 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36207 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36207 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36207 .column,
  #stacks_in_36207 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36207 .large-1 {
    width: 8.33333%; }

  #stacks_in_36207 .large-2 {
    width: 16.66667%; }

  #stacks_in_36207 .large-3 {
    width: 25%; }

  #stacks_in_36207 .large-4 {
    width: 33.33333%; }

  #stacks_in_36207 .large-5 {
    width: 41.66667%; }

  #stacks_in_36207 .large-6 {
    width: 50%; }

  #stacks_in_36207 .large-7 {
    width: 58.33333%; }

  #stacks_in_36207 .large-8 {
    width: 66.66667%; }

  #stacks_in_36207 .large-9 {
    width: 75%; }

  #stacks_in_36207 .large-10 {
    width: 83.33333%; }

  #stacks_in_36207 .large-11 {
    width: 91.66667%; }

  #stacks_in_36207 .large-12 {
    width: 100%; }

  #stacks_in_36207 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36207 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36207 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36207 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36207 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36207 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36207 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36207 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36207 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36207 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36207 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36207 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36207 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36207 .column.large-centered,
  #stacks_in_36207 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36207 .column.large-uncentered,
  #stacks_in_36207 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36207 .column.large-centered:last-child,
  #stacks_in_36207 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_36207 .column.large-uncentered:last-child,
  #stacks_in_36207 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_36207 .column.large-uncentered.opposite,
  #stacks_in_36207 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_36207 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36207 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36207 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36207 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36207 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36207 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36207 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36207 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36207 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36207 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36207 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36207 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36207 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36207 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36207 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36207 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36207 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36207 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36207 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36207 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36207 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36207 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36207 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36207 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_36207 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_36207 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_36207 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_36207 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_36207 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_36207 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_36207 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_36207 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36207 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36207 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_36207 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36207 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36207 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_36207 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36207 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36207 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36207 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_36207 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36209 {
	font-size: 110%;
}

#stacks_in_36211 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36212 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36214_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36214_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36214_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36214_accordion_label i {
}

.stacks_in_36214_accordion_selected {
}

.stacks_in_36214_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36214_accordion li:last-child .stacks_in_36214_accordion_content {
}

.stacks_in_36214_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36214_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36214_accordion_selected .accordion_icon i {
	
}

#stacks_in_36214_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36214_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36214_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36214_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36214_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36214_accordion li:last-child .stacks_in_36214_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36214_accordion li:last-child .stacks_in_36214_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36214_accordion li:last-child .stacks_in_36214_accordion_content {
	border-bottom: none;
}

#stacks_in_36214_open_all {
	color: #757575;
}

#stacks_in_36214_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36214_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36214_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36214_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36214_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36214_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36214_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36214_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36214_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36214_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36215 {
	font-size: 85%;
}

#stacks_in_36216 {
	margin: 0px 0px 20px 20px;
}

#stacks_in_36217 {
	font-size: 90%;
}

#stacks_in_36232 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36233 {
	text-transform: lowercase;
}

#stacks_in_36234 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36235 {
	text-transform: lowercase;
}

#stacks_in_36236 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36237 {
	text-transform: lowercase;
}

#stacks_in_36238 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36239 {
	text-transform: lowercase;
}

#stacks_in_36240 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36241 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36242 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36243 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36244 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35997 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_35998 article,
#stacks_in_35998 aside,
#stacks_in_35998 details,
#stacks_in_35998 figcaption,
#stacks_in_35998 figure,
#stacks_in_35998 footer,
#stacks_in_35998 header,
#stacks_in_35998 hgroup,
#stacks_in_35998 main,
#stacks_in_35998 nav,
#stacks_in_35998 section,
#stacks_in_35998 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_35998 audio,
#stacks_in_35998 canvas,
#stacks_in_35998 progress,
#stacks_in_35998 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_35998 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_35998 [hidden],
#stacks_in_35998 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_35998 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_35998 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_35998 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_35998 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_35998 code,
#stacks_in_35998 kbd,
#stacks_in_35998 pre,
#stacks_in_35998 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_35998 *,
#stacks_in_35998 *:before,
#stacks_in_35998 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_35998 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_35998 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_35998 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_35998 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_35998 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_35998 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_35998 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_35998 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_35998 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_35998 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_35998 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_35998 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_35998 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_35998 *,
#stacks_in_35998 *:before,
#stacks_in_35998 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_35998 .left {
  float: left !important; }

#stacks_in_35998 .right {
  float: right !important; }

#stacks_in_35998 .clearfix:before,
#stacks_in_35998 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_35998 .clearfix:after {
  clear: both; }

#stacks_in_35998 .hide {
  display: none; }

#stacks_in_35998 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_35998 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_35998 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_35998 select {
  width: 100%; }

#stacks_in_35998 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_35998 .row:before,
#stacks_in_35998 .row:after {
  content: " ";
  display: table; }

#stacks_in_35998 .row:after {
  clear: both; }

#stacks_in_35998 .row.collapse > .column,
#stacks_in_35998 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_35998 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_35998 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_35998 .row .row:before,
#stacks_in_35998 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_35998 .row .row:after {
  clear: both; }

#stacks_in_35998 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_35998 .row .row.collapse:before,
#stacks_in_35998 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_35998 .row .row.collapse:after {
  clear: both; }

#stacks_in_35998 .column,
#stacks_in_35998 .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_35998 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_35998 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_35998 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35998 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35998 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35998 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35998 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35998 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35998 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35998 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35998 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35998 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35998 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35998 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35998 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35998 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35998 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35998 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35998 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35998 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35998 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35998 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35998 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35998 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35998 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35998 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35998 .column,
  #stacks_in_35998 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35998 .small-1 {
    width: 8.33333%; }

  #stacks_in_35998 .small-2 {
    width: 16.66667%; }

  #stacks_in_35998 .small-3 {
    width: 25%; }

  #stacks_in_35998 .small-4 {
    width: 33.33333%; }

  #stacks_in_35998 .small-5 {
    width: 41.66667%; }

  #stacks_in_35998 .small-6 {
    width: 50%; }

  #stacks_in_35998 .small-7 {
    width: 58.33333%; }

  #stacks_in_35998 .small-8 {
    width: 66.66667%; }

  #stacks_in_35998 .small-9 {
    width: 75%; }

  #stacks_in_35998 .small-10 {
    width: 83.33333%; }

  #stacks_in_35998 .small-11 {
    width: 91.66667%; }

  #stacks_in_35998 .small-12 {
    width: 100%; }

  #stacks_in_35998 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35998 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35998 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35998 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35998 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35998 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35998 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35998 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35998 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35998 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35998 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35998 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35998 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35998 .column.small-centered,
  #stacks_in_35998 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35998 .column.small-uncentered,
  #stacks_in_35998 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35998 .column.small-centered:last-child,
  #stacks_in_35998 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_35998 .column.small-uncentered:last-child,
  #stacks_in_35998 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_35998 .column.small-uncentered.opposite,
  #stacks_in_35998 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_35998 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35998 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35998 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35998 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35998 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35998 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35998 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35998 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35998 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35998 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35998 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35998 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35998 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35998 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35998 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35998 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35998 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35998 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35998 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35998 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35998 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35998 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35998 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35998 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35998 .column,
  #stacks_in_35998 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35998 .medium-1 {
    width: 8.33333%; }

  #stacks_in_35998 .medium-2 {
    width: 16.66667%; }

  #stacks_in_35998 .medium-3 {
    width: 25%; }

  #stacks_in_35998 .medium-4 {
    width: 33.33333%; }

  #stacks_in_35998 .medium-5 {
    width: 41.66667%; }

  #stacks_in_35998 .medium-6 {
    width: 50%; }

  #stacks_in_35998 .medium-7 {
    width: 58.33333%; }

  #stacks_in_35998 .medium-8 {
    width: 66.66667%; }

  #stacks_in_35998 .medium-9 {
    width: 75%; }

  #stacks_in_35998 .medium-10 {
    width: 83.33333%; }

  #stacks_in_35998 .medium-11 {
    width: 91.66667%; }

  #stacks_in_35998 .medium-12 {
    width: 100%; }

  #stacks_in_35998 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35998 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35998 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35998 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35998 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35998 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35998 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35998 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35998 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35998 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35998 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35998 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35998 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35998 .column.medium-centered,
  #stacks_in_35998 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35998 .column.medium-uncentered,
  #stacks_in_35998 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35998 .column.medium-centered:last-child,
  #stacks_in_35998 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_35998 .column.medium-uncentered:last-child,
  #stacks_in_35998 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_35998 .column.medium-uncentered.opposite,
  #stacks_in_35998 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_35998 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35998 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35998 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35998 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35998 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35998 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35998 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35998 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35998 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35998 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35998 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35998 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35998 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35998 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35998 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35998 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35998 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35998 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35998 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35998 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35998 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35998 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35998 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35998 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_35998 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35998 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35998 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35998 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35998 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35998 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35998 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35998 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35998 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35998 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35998 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35998 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35998 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35998 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35998 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35998 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35998 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35998 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35998 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35998 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35998 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35998 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35998 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35998 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35998 .column,
  #stacks_in_35998 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35998 .large-1 {
    width: 8.33333%; }

  #stacks_in_35998 .large-2 {
    width: 16.66667%; }

  #stacks_in_35998 .large-3 {
    width: 25%; }

  #stacks_in_35998 .large-4 {
    width: 33.33333%; }

  #stacks_in_35998 .large-5 {
    width: 41.66667%; }

  #stacks_in_35998 .large-6 {
    width: 50%; }

  #stacks_in_35998 .large-7 {
    width: 58.33333%; }

  #stacks_in_35998 .large-8 {
    width: 66.66667%; }

  #stacks_in_35998 .large-9 {
    width: 75%; }

  #stacks_in_35998 .large-10 {
    width: 83.33333%; }

  #stacks_in_35998 .large-11 {
    width: 91.66667%; }

  #stacks_in_35998 .large-12 {
    width: 100%; }

  #stacks_in_35998 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35998 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35998 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35998 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35998 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35998 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35998 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35998 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35998 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35998 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35998 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35998 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35998 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35998 .column.large-centered,
  #stacks_in_35998 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35998 .column.large-uncentered,
  #stacks_in_35998 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35998 .column.large-centered:last-child,
  #stacks_in_35998 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_35998 .column.large-uncentered:last-child,
  #stacks_in_35998 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_35998 .column.large-uncentered.opposite,
  #stacks_in_35998 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_35998 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35998 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35998 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35998 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35998 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35998 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35998 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35998 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35998 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35998 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35998 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35998 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35998 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35998 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35998 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35998 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35998 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35998 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35998 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35998 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35998 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35998 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35998 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35998 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_35998 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_35998 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_35998 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_35998 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_35998 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_35998 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_35998 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_35998 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35998 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35998 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_35998 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35998 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35998 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_35998 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35998 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35998 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35998 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_35998 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36000 {
	font-size: 110%;
}

#stacks_in_36002 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36003 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36005_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36005_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36005_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36005_accordion_label i {
}

.stacks_in_36005_accordion_selected {
}

.stacks_in_36005_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36005_accordion li:last-child .stacks_in_36005_accordion_content {
}

.stacks_in_36005_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36005_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36005_accordion_selected .accordion_icon i {
	
}

#stacks_in_36005_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36005_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36005_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36005_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36005_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36005_accordion li:last-child .stacks_in_36005_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36005_accordion li:last-child .stacks_in_36005_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36005_accordion li:last-child .stacks_in_36005_accordion_content {
	border-bottom: none;
}

#stacks_in_36005_open_all {
	color: #757575;
}

#stacks_in_36005_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36005_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36005_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36005_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36005_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36005_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36005_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36005_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36005_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36005_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36006 {
	font-size: 85%;
}

#stacks_in_36007 {
	margin: 0px 0px 20px 15px;
}

#stacks_in_36008 {
	font-size: 90%;
}

#stacks_in_36011 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36012 {
	text-transform: lowercase;
}

#stacks_in_36013 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36014 {
	text-transform: lowercase;
}

#stacks_in_36015 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36016 {
	text-transform: lowercase;
}

#stacks_in_36017 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36018 {
	text-transform: lowercase;
}

#stacks_in_36019 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36020 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36021 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36022 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36023 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36098 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_36099 article,
#stacks_in_36099 aside,
#stacks_in_36099 details,
#stacks_in_36099 figcaption,
#stacks_in_36099 figure,
#stacks_in_36099 footer,
#stacks_in_36099 header,
#stacks_in_36099 hgroup,
#stacks_in_36099 main,
#stacks_in_36099 nav,
#stacks_in_36099 section,
#stacks_in_36099 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_36099 audio,
#stacks_in_36099 canvas,
#stacks_in_36099 progress,
#stacks_in_36099 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_36099 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_36099 [hidden],
#stacks_in_36099 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_36099 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_36099 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_36099 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_36099 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_36099 code,
#stacks_in_36099 kbd,
#stacks_in_36099 pre,
#stacks_in_36099 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_36099 *,
#stacks_in_36099 *:before,
#stacks_in_36099 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_36099 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_36099 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_36099 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_36099 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_36099 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_36099 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_36099 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_36099 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_36099 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_36099 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_36099 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_36099 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_36099 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_36099 *,
#stacks_in_36099 *:before,
#stacks_in_36099 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_36099 .left {
  float: left !important; }

#stacks_in_36099 .right {
  float: right !important; }

#stacks_in_36099 .clearfix:before,
#stacks_in_36099 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_36099 .clearfix:after {
  clear: both; }

#stacks_in_36099 .hide {
  display: none; }

#stacks_in_36099 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_36099 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_36099 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_36099 select {
  width: 100%; }

#stacks_in_36099 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_36099 .row:before,
#stacks_in_36099 .row:after {
  content: " ";
  display: table; }

#stacks_in_36099 .row:after {
  clear: both; }

#stacks_in_36099 .row.collapse > .column,
#stacks_in_36099 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_36099 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_36099 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_36099 .row .row:before,
#stacks_in_36099 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_36099 .row .row:after {
  clear: both; }

#stacks_in_36099 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_36099 .row .row.collapse:before,
#stacks_in_36099 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_36099 .row .row.collapse:after {
  clear: both; }

#stacks_in_36099 .column,
#stacks_in_36099 .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_36099 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_36099 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_36099 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36099 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36099 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36099 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36099 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36099 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36099 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36099 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36099 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36099 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36099 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36099 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36099 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36099 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36099 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36099 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36099 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36099 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36099 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36099 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36099 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36099 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36099 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36099 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36099 .column,
  #stacks_in_36099 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36099 .small-1 {
    width: 8.33333%; }

  #stacks_in_36099 .small-2 {
    width: 16.66667%; }

  #stacks_in_36099 .small-3 {
    width: 25%; }

  #stacks_in_36099 .small-4 {
    width: 33.33333%; }

  #stacks_in_36099 .small-5 {
    width: 41.66667%; }

  #stacks_in_36099 .small-6 {
    width: 50%; }

  #stacks_in_36099 .small-7 {
    width: 58.33333%; }

  #stacks_in_36099 .small-8 {
    width: 66.66667%; }

  #stacks_in_36099 .small-9 {
    width: 75%; }

  #stacks_in_36099 .small-10 {
    width: 83.33333%; }

  #stacks_in_36099 .small-11 {
    width: 91.66667%; }

  #stacks_in_36099 .small-12 {
    width: 100%; }

  #stacks_in_36099 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36099 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36099 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36099 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36099 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36099 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36099 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36099 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36099 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36099 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36099 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36099 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36099 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36099 .column.small-centered,
  #stacks_in_36099 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36099 .column.small-uncentered,
  #stacks_in_36099 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36099 .column.small-centered:last-child,
  #stacks_in_36099 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_36099 .column.small-uncentered:last-child,
  #stacks_in_36099 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_36099 .column.small-uncentered.opposite,
  #stacks_in_36099 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_36099 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36099 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36099 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36099 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36099 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36099 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36099 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36099 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36099 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36099 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36099 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36099 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36099 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36099 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36099 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36099 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36099 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36099 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36099 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36099 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36099 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36099 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36099 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36099 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36099 .column,
  #stacks_in_36099 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36099 .medium-1 {
    width: 8.33333%; }

  #stacks_in_36099 .medium-2 {
    width: 16.66667%; }

  #stacks_in_36099 .medium-3 {
    width: 25%; }

  #stacks_in_36099 .medium-4 {
    width: 33.33333%; }

  #stacks_in_36099 .medium-5 {
    width: 41.66667%; }

  #stacks_in_36099 .medium-6 {
    width: 50%; }

  #stacks_in_36099 .medium-7 {
    width: 58.33333%; }

  #stacks_in_36099 .medium-8 {
    width: 66.66667%; }

  #stacks_in_36099 .medium-9 {
    width: 75%; }

  #stacks_in_36099 .medium-10 {
    width: 83.33333%; }

  #stacks_in_36099 .medium-11 {
    width: 91.66667%; }

  #stacks_in_36099 .medium-12 {
    width: 100%; }

  #stacks_in_36099 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36099 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36099 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36099 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36099 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36099 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36099 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36099 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36099 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36099 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36099 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36099 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36099 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36099 .column.medium-centered,
  #stacks_in_36099 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36099 .column.medium-uncentered,
  #stacks_in_36099 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36099 .column.medium-centered:last-child,
  #stacks_in_36099 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_36099 .column.medium-uncentered:last-child,
  #stacks_in_36099 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_36099 .column.medium-uncentered.opposite,
  #stacks_in_36099 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_36099 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36099 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36099 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36099 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36099 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36099 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36099 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36099 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36099 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36099 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36099 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36099 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36099 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36099 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36099 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36099 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36099 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36099 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36099 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36099 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36099 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36099 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36099 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36099 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_36099 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36099 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36099 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36099 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36099 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36099 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36099 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36099 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36099 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36099 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36099 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36099 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36099 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36099 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36099 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36099 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36099 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36099 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36099 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36099 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36099 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36099 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36099 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36099 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36099 .column,
  #stacks_in_36099 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36099 .large-1 {
    width: 8.33333%; }

  #stacks_in_36099 .large-2 {
    width: 16.66667%; }

  #stacks_in_36099 .large-3 {
    width: 25%; }

  #stacks_in_36099 .large-4 {
    width: 33.33333%; }

  #stacks_in_36099 .large-5 {
    width: 41.66667%; }

  #stacks_in_36099 .large-6 {
    width: 50%; }

  #stacks_in_36099 .large-7 {
    width: 58.33333%; }

  #stacks_in_36099 .large-8 {
    width: 66.66667%; }

  #stacks_in_36099 .large-9 {
    width: 75%; }

  #stacks_in_36099 .large-10 {
    width: 83.33333%; }

  #stacks_in_36099 .large-11 {
    width: 91.66667%; }

  #stacks_in_36099 .large-12 {
    width: 100%; }

  #stacks_in_36099 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36099 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36099 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36099 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36099 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36099 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36099 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36099 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36099 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36099 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36099 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36099 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36099 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36099 .column.large-centered,
  #stacks_in_36099 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36099 .column.large-uncentered,
  #stacks_in_36099 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36099 .column.large-centered:last-child,
  #stacks_in_36099 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_36099 .column.large-uncentered:last-child,
  #stacks_in_36099 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_36099 .column.large-uncentered.opposite,
  #stacks_in_36099 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_36099 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36099 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36099 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36099 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36099 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36099 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36099 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36099 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36099 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36099 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36099 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36099 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36099 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36099 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36099 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36099 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36099 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36099 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36099 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36099 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36099 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36099 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36099 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36099 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_36099 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_36099 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_36099 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_36099 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_36099 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_36099 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_36099 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_36099 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36099 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36099 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_36099 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36099 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36099 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_36099 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36099 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36099 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36099 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_36099 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36101 {
	font-size: 110%;
}

#stacks_in_36103 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36104 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36106_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36106_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36106_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36106_accordion_label i {
}

.stacks_in_36106_accordion_selected {
}

.stacks_in_36106_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36106_accordion li:last-child .stacks_in_36106_accordion_content {
}

.stacks_in_36106_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36106_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36106_accordion_selected .accordion_icon i {
	
}

#stacks_in_36106_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36106_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36106_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36106_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36106_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36106_accordion li:last-child .stacks_in_36106_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36106_accordion li:last-child .stacks_in_36106_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36106_accordion li:last-child .stacks_in_36106_accordion_content {
	border-bottom: none;
}

#stacks_in_36106_open_all {
	color: #757575;
}

#stacks_in_36106_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36106_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36106_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36106_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36106_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36106_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36106_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36106_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36106_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36106_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36106 {
	border: solid rgba(245, 245, 245, 1.00);
	border-width:  1px;
}

#stacks_in_36107 {
	font-size: 85%;
}

#stacks_in_36108 {
	margin: 0px 0px 20px 15px;
}

#stacks_in_36109 {
	font-size: 90%;
}

#stacks_in_36113 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36114 {
	text-transform: lowercase;
}

#stacks_in_36115 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36116 {
	text-transform: lowercase;
}

#stacks_in_36117 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36118 {
	text-transform: lowercase;
}

#stacks_in_36119 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36120 {
	text-transform: lowercase;
}

#stacks_in_36121 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36122 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36123 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36124 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36125 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36094 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_35674 article,
#stacks_in_35674 aside,
#stacks_in_35674 details,
#stacks_in_35674 figcaption,
#stacks_in_35674 figure,
#stacks_in_35674 footer,
#stacks_in_35674 header,
#stacks_in_35674 hgroup,
#stacks_in_35674 main,
#stacks_in_35674 nav,
#stacks_in_35674 section,
#stacks_in_35674 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_35674 audio,
#stacks_in_35674 canvas,
#stacks_in_35674 progress,
#stacks_in_35674 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_35674 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_35674 [hidden],
#stacks_in_35674 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_35674 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_35674 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_35674 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_35674 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_35674 code,
#stacks_in_35674 kbd,
#stacks_in_35674 pre,
#stacks_in_35674 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_35674 *,
#stacks_in_35674 *:before,
#stacks_in_35674 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_35674 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_35674 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_35674 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_35674 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_35674 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_35674 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_35674 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_35674 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_35674 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_35674 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_35674 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_35674 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_35674 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_35674 *,
#stacks_in_35674 *:before,
#stacks_in_35674 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_35674 .left {
  float: left !important; }

#stacks_in_35674 .right {
  float: right !important; }

#stacks_in_35674 .clearfix:before,
#stacks_in_35674 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_35674 .clearfix:after {
  clear: both; }

#stacks_in_35674 .hide {
  display: none; }

#stacks_in_35674 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_35674 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_35674 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_35674 select {
  width: 100%; }

#stacks_in_35674 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_35674 .row:before,
#stacks_in_35674 .row:after {
  content: " ";
  display: table; }

#stacks_in_35674 .row:after {
  clear: both; }

#stacks_in_35674 .row.collapse > .column,
#stacks_in_35674 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_35674 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_35674 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_35674 .row .row:before,
#stacks_in_35674 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_35674 .row .row:after {
  clear: both; }

#stacks_in_35674 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_35674 .row .row.collapse:before,
#stacks_in_35674 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_35674 .row .row.collapse:after {
  clear: both; }

#stacks_in_35674 .column,
#stacks_in_35674 .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_35674 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_35674 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_35674 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35674 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35674 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35674 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35674 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35674 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35674 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35674 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35674 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35674 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35674 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35674 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35674 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35674 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35674 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35674 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35674 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35674 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35674 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35674 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35674 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35674 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35674 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35674 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35674 .column,
  #stacks_in_35674 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35674 .small-1 {
    width: 8.33333%; }

  #stacks_in_35674 .small-2 {
    width: 16.66667%; }

  #stacks_in_35674 .small-3 {
    width: 25%; }

  #stacks_in_35674 .small-4 {
    width: 33.33333%; }

  #stacks_in_35674 .small-5 {
    width: 41.66667%; }

  #stacks_in_35674 .small-6 {
    width: 50%; }

  #stacks_in_35674 .small-7 {
    width: 58.33333%; }

  #stacks_in_35674 .small-8 {
    width: 66.66667%; }

  #stacks_in_35674 .small-9 {
    width: 75%; }

  #stacks_in_35674 .small-10 {
    width: 83.33333%; }

  #stacks_in_35674 .small-11 {
    width: 91.66667%; }

  #stacks_in_35674 .small-12 {
    width: 100%; }

  #stacks_in_35674 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35674 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35674 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35674 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35674 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35674 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35674 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35674 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35674 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35674 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35674 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35674 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35674 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35674 .column.small-centered,
  #stacks_in_35674 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35674 .column.small-uncentered,
  #stacks_in_35674 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35674 .column.small-centered:last-child,
  #stacks_in_35674 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_35674 .column.small-uncentered:last-child,
  #stacks_in_35674 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_35674 .column.small-uncentered.opposite,
  #stacks_in_35674 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_35674 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35674 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35674 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35674 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35674 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35674 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35674 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35674 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35674 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35674 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35674 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35674 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35674 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35674 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35674 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35674 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35674 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35674 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35674 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35674 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35674 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35674 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35674 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35674 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35674 .column,
  #stacks_in_35674 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35674 .medium-1 {
    width: 8.33333%; }

  #stacks_in_35674 .medium-2 {
    width: 16.66667%; }

  #stacks_in_35674 .medium-3 {
    width: 25%; }

  #stacks_in_35674 .medium-4 {
    width: 33.33333%; }

  #stacks_in_35674 .medium-5 {
    width: 41.66667%; }

  #stacks_in_35674 .medium-6 {
    width: 50%; }

  #stacks_in_35674 .medium-7 {
    width: 58.33333%; }

  #stacks_in_35674 .medium-8 {
    width: 66.66667%; }

  #stacks_in_35674 .medium-9 {
    width: 75%; }

  #stacks_in_35674 .medium-10 {
    width: 83.33333%; }

  #stacks_in_35674 .medium-11 {
    width: 91.66667%; }

  #stacks_in_35674 .medium-12 {
    width: 100%; }

  #stacks_in_35674 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35674 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35674 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35674 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35674 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35674 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35674 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35674 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35674 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35674 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35674 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35674 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35674 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35674 .column.medium-centered,
  #stacks_in_35674 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35674 .column.medium-uncentered,
  #stacks_in_35674 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35674 .column.medium-centered:last-child,
  #stacks_in_35674 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_35674 .column.medium-uncentered:last-child,
  #stacks_in_35674 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_35674 .column.medium-uncentered.opposite,
  #stacks_in_35674 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_35674 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35674 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35674 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35674 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35674 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35674 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35674 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35674 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35674 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35674 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35674 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35674 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35674 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35674 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35674 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35674 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35674 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35674 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35674 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35674 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35674 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35674 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35674 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35674 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_35674 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35674 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35674 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35674 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35674 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35674 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35674 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35674 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35674 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35674 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35674 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35674 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35674 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35674 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35674 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35674 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35674 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35674 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35674 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35674 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35674 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35674 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35674 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35674 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35674 .column,
  #stacks_in_35674 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35674 .large-1 {
    width: 8.33333%; }

  #stacks_in_35674 .large-2 {
    width: 16.66667%; }

  #stacks_in_35674 .large-3 {
    width: 25%; }

  #stacks_in_35674 .large-4 {
    width: 33.33333%; }

  #stacks_in_35674 .large-5 {
    width: 41.66667%; }

  #stacks_in_35674 .large-6 {
    width: 50%; }

  #stacks_in_35674 .large-7 {
    width: 58.33333%; }

  #stacks_in_35674 .large-8 {
    width: 66.66667%; }

  #stacks_in_35674 .large-9 {
    width: 75%; }

  #stacks_in_35674 .large-10 {
    width: 83.33333%; }

  #stacks_in_35674 .large-11 {
    width: 91.66667%; }

  #stacks_in_35674 .large-12 {
    width: 100%; }

  #stacks_in_35674 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35674 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35674 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35674 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35674 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35674 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35674 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35674 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35674 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35674 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35674 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35674 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35674 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35674 .column.large-centered,
  #stacks_in_35674 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35674 .column.large-uncentered,
  #stacks_in_35674 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35674 .column.large-centered:last-child,
  #stacks_in_35674 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_35674 .column.large-uncentered:last-child,
  #stacks_in_35674 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_35674 .column.large-uncentered.opposite,
  #stacks_in_35674 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_35674 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35674 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35674 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35674 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35674 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35674 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35674 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35674 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35674 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35674 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35674 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35674 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35674 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35674 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35674 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35674 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35674 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35674 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35674 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35674 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35674 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35674 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35674 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35674 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_35674 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_35674 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_35674 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_35674 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_35674 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_35674 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_35674 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_35674 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35674 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35674 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_35674 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35674 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35674 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_35674 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35674 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35674 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35674 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_35674 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_35820 {
	font-size: 110%;
}

#stacks_in_35678 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_35679 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_35903_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_35903_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_35903_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_35903_accordion_label i {
}

.stacks_in_35903_accordion_selected {
}

.stacks_in_35903_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_35903_accordion li:last-child .stacks_in_35903_accordion_content {
}

.stacks_in_35903_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_35903_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_35903_accordion_selected .accordion_icon i {
	
}

#stacks_in_35903_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_35903_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_35903_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_35903_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_35903_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_35903_accordion li:last-child .stacks_in_35903_accordion_label {
	border-bottom: none;
}


ul#stacks_in_35903_accordion li:last-child .stacks_in_35903_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_35903_accordion li:last-child .stacks_in_35903_accordion_content {
	border-bottom: none;
}

#stacks_in_35903_open_all {
	color: #757575;
}

#stacks_in_35903_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_35903_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_35903_accordion_label {
		font-size: 15px;
	}

	.stacks_in_35903_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_35903_accordion_label {
		font-size: 15px;
	}

	.stacks_in_35903_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_35903_accordion_label {
		font-size: 14px;
	}

	.stacks_in_35903_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_35903_accordion_label {
		font-size: 14px;
	}

	.stacks_in_35903_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_35903 {
	border: solid rgba(245, 245, 245, 1.00);
	border-width:  1px;
}

#stacks_in_35904 {
	font-size: 85%;
}

#stacks_in_35905 {
	margin: 0px 0px 20px 15px;
}

#stacks_in_35906 {
	font-size: 90%;
}

#stacks_in_35911 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35912 {
	text-transform: lowercase;
}

#stacks_in_35914 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35915 {
	text-transform: lowercase;
}

#stacks_in_35918 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35919 {
	text-transform: lowercase;
}

#stacks_in_35922 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35923 {
	text-transform: lowercase;
}

#stacks_in_35926 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35930 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35934 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35938 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35942 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36092 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_35634 article,
#stacks_in_35634 aside,
#stacks_in_35634 details,
#stacks_in_35634 figcaption,
#stacks_in_35634 figure,
#stacks_in_35634 footer,
#stacks_in_35634 header,
#stacks_in_35634 hgroup,
#stacks_in_35634 main,
#stacks_in_35634 nav,
#stacks_in_35634 section,
#stacks_in_35634 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_35634 audio,
#stacks_in_35634 canvas,
#stacks_in_35634 progress,
#stacks_in_35634 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_35634 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_35634 [hidden],
#stacks_in_35634 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_35634 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_35634 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_35634 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_35634 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_35634 code,
#stacks_in_35634 kbd,
#stacks_in_35634 pre,
#stacks_in_35634 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_35634 *,
#stacks_in_35634 *:before,
#stacks_in_35634 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_35634 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_35634 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_35634 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_35634 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_35634 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_35634 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_35634 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_35634 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_35634 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_35634 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_35634 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_35634 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_35634 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_35634 *,
#stacks_in_35634 *:before,
#stacks_in_35634 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_35634 .left {
  float: left !important; }

#stacks_in_35634 .right {
  float: right !important; }

#stacks_in_35634 .clearfix:before,
#stacks_in_35634 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_35634 .clearfix:after {
  clear: both; }

#stacks_in_35634 .hide {
  display: none; }

#stacks_in_35634 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_35634 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_35634 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_35634 select {
  width: 100%; }

#stacks_in_35634 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_35634 .row:before,
#stacks_in_35634 .row:after {
  content: " ";
  display: table; }

#stacks_in_35634 .row:after {
  clear: both; }

#stacks_in_35634 .row.collapse > .column,
#stacks_in_35634 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_35634 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_35634 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_35634 .row .row:before,
#stacks_in_35634 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_35634 .row .row:after {
  clear: both; }

#stacks_in_35634 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_35634 .row .row.collapse:before,
#stacks_in_35634 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_35634 .row .row.collapse:after {
  clear: both; }

#stacks_in_35634 .column,
#stacks_in_35634 .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_35634 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_35634 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_35634 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35634 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35634 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35634 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35634 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35634 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35634 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35634 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35634 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35634 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35634 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35634 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35634 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35634 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35634 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35634 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35634 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35634 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35634 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35634 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35634 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35634 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35634 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35634 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35634 .column,
  #stacks_in_35634 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35634 .small-1 {
    width: 8.33333%; }

  #stacks_in_35634 .small-2 {
    width: 16.66667%; }

  #stacks_in_35634 .small-3 {
    width: 25%; }

  #stacks_in_35634 .small-4 {
    width: 33.33333%; }

  #stacks_in_35634 .small-5 {
    width: 41.66667%; }

  #stacks_in_35634 .small-6 {
    width: 50%; }

  #stacks_in_35634 .small-7 {
    width: 58.33333%; }

  #stacks_in_35634 .small-8 {
    width: 66.66667%; }

  #stacks_in_35634 .small-9 {
    width: 75%; }

  #stacks_in_35634 .small-10 {
    width: 83.33333%; }

  #stacks_in_35634 .small-11 {
    width: 91.66667%; }

  #stacks_in_35634 .small-12 {
    width: 100%; }

  #stacks_in_35634 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35634 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35634 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35634 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35634 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35634 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35634 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35634 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35634 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35634 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35634 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35634 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35634 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35634 .column.small-centered,
  #stacks_in_35634 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35634 .column.small-uncentered,
  #stacks_in_35634 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35634 .column.small-centered:last-child,
  #stacks_in_35634 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_35634 .column.small-uncentered:last-child,
  #stacks_in_35634 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_35634 .column.small-uncentered.opposite,
  #stacks_in_35634 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_35634 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35634 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35634 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35634 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35634 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35634 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35634 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35634 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35634 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35634 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35634 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35634 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35634 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35634 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35634 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35634 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35634 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35634 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35634 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35634 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35634 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35634 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35634 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35634 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35634 .column,
  #stacks_in_35634 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35634 .medium-1 {
    width: 8.33333%; }

  #stacks_in_35634 .medium-2 {
    width: 16.66667%; }

  #stacks_in_35634 .medium-3 {
    width: 25%; }

  #stacks_in_35634 .medium-4 {
    width: 33.33333%; }

  #stacks_in_35634 .medium-5 {
    width: 41.66667%; }

  #stacks_in_35634 .medium-6 {
    width: 50%; }

  #stacks_in_35634 .medium-7 {
    width: 58.33333%; }

  #stacks_in_35634 .medium-8 {
    width: 66.66667%; }

  #stacks_in_35634 .medium-9 {
    width: 75%; }

  #stacks_in_35634 .medium-10 {
    width: 83.33333%; }

  #stacks_in_35634 .medium-11 {
    width: 91.66667%; }

  #stacks_in_35634 .medium-12 {
    width: 100%; }

  #stacks_in_35634 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35634 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35634 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35634 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35634 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35634 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35634 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35634 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35634 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35634 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35634 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35634 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35634 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35634 .column.medium-centered,
  #stacks_in_35634 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35634 .column.medium-uncentered,
  #stacks_in_35634 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35634 .column.medium-centered:last-child,
  #stacks_in_35634 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_35634 .column.medium-uncentered:last-child,
  #stacks_in_35634 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_35634 .column.medium-uncentered.opposite,
  #stacks_in_35634 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_35634 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35634 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35634 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35634 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35634 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35634 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35634 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35634 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35634 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35634 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35634 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35634 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35634 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35634 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35634 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35634 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35634 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35634 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35634 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35634 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35634 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35634 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35634 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35634 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_35634 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35634 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35634 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35634 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35634 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35634 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35634 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35634 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35634 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35634 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35634 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35634 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35634 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35634 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35634 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35634 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35634 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35634 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35634 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35634 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35634 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35634 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35634 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35634 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_35634 .column,
  #stacks_in_35634 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_35634 .large-1 {
    width: 8.33333%; }

  #stacks_in_35634 .large-2 {
    width: 16.66667%; }

  #stacks_in_35634 .large-3 {
    width: 25%; }

  #stacks_in_35634 .large-4 {
    width: 33.33333%; }

  #stacks_in_35634 .large-5 {
    width: 41.66667%; }

  #stacks_in_35634 .large-6 {
    width: 50%; }

  #stacks_in_35634 .large-7 {
    width: 58.33333%; }

  #stacks_in_35634 .large-8 {
    width: 66.66667%; }

  #stacks_in_35634 .large-9 {
    width: 75%; }

  #stacks_in_35634 .large-10 {
    width: 83.33333%; }

  #stacks_in_35634 .large-11 {
    width: 91.66667%; }

  #stacks_in_35634 .large-12 {
    width: 100%; }

  #stacks_in_35634 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_35634 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_35634 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_35634 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_35634 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_35634 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_35634 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_35634 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_35634 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_35634 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_35634 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_35634 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_35634 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_35634 .column.large-centered,
  #stacks_in_35634 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_35634 .column.large-uncentered,
  #stacks_in_35634 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_35634 .column.large-centered:last-child,
  #stacks_in_35634 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_35634 .column.large-uncentered:last-child,
  #stacks_in_35634 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_35634 .column.large-uncentered.opposite,
  #stacks_in_35634 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_35634 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_35634 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_35634 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_35634 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_35634 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_35634 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_35634 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_35634 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_35634 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_35634 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_35634 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_35634 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_35634 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_35634 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_35634 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_35634 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_35634 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_35634 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_35634 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_35634 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_35634 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_35634 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_35634 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_35634 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_35634 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_35634 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_35634 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_35634 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_35634 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_35634 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_35634 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_35634 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35634 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35634 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_35634 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35634 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35634 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_35634 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_35634 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_35634 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_35634 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_35634 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_35636 {
	font-size: 110%;
}

#stacks_in_35638 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_35639 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_35862_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_35862_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_35862_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_35862_accordion_label i {
}

.stacks_in_35862_accordion_selected {
}

.stacks_in_35862_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_35862_accordion li:last-child .stacks_in_35862_accordion_content {
}

.stacks_in_35862_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_35862_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_35862_accordion_selected .accordion_icon i {
	
}

#stacks_in_35862_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_35862_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_35862_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_35862_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_35862_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_35862_accordion li:last-child .stacks_in_35862_accordion_label {
	border-bottom: none;
}


ul#stacks_in_35862_accordion li:last-child .stacks_in_35862_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_35862_accordion li:last-child .stacks_in_35862_accordion_content {
	border-bottom: none;
}

#stacks_in_35862_open_all {
	color: #757575;
}

#stacks_in_35862_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_35862_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_35862_accordion_label {
		font-size: 15px;
	}

	.stacks_in_35862_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_35862_accordion_label {
		font-size: 15px;
	}

	.stacks_in_35862_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_35862_accordion_label {
		font-size: 14px;
	}

	.stacks_in_35862_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_35862_accordion_label {
		font-size: 14px;
	}

	.stacks_in_35862_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_35862 {
	border: solid rgba(245, 245, 245, 1.00);
	border-width:  1px;
}

#stacks_in_35863 {
	font-size: 85%;
}

#stacks_in_35864 {
	margin: 0px 0px 20px 15px;
}

#stacks_in_35865 {
	font-size: 90%;
}

#stacks_in_35870 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35871 {
	text-transform: lowercase;
}

#stacks_in_35873 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35874 {
	text-transform: lowercase;
}

#stacks_in_35877 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35878 {
	text-transform: lowercase;
}

#stacks_in_35881 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35882 {
	text-transform: lowercase;
}

#stacks_in_35885 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_35889 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35893 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35897 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_35901 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36272 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  2px;
	margin: 5px 30px 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_36273 article,
#stacks_in_36273 aside,
#stacks_in_36273 details,
#stacks_in_36273 figcaption,
#stacks_in_36273 figure,
#stacks_in_36273 footer,
#stacks_in_36273 header,
#stacks_in_36273 hgroup,
#stacks_in_36273 main,
#stacks_in_36273 nav,
#stacks_in_36273 section,
#stacks_in_36273 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_36273 audio,
#stacks_in_36273 canvas,
#stacks_in_36273 progress,
#stacks_in_36273 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_36273 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_36273 [hidden],
#stacks_in_36273 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_36273 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_36273 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_36273 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_36273 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_36273 code,
#stacks_in_36273 kbd,
#stacks_in_36273 pre,
#stacks_in_36273 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */


#stacks_in_36273 *,
#stacks_in_36273 *:before,
#stacks_in_36273 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_36273 .wow {
  visibility: hidden;
}



/* We use this media query to add styles to any device that supports media queries */


@media only screen {
  #stacks_in_36273 .column_base_margin {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  #stacks_in_36273 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 768px wide. */
@media only screen and (max-width: 768px) {
  #stacks_in_36273 .column_base_margin {
    margin-bottom: 10px;
  }
}

/* Used to alter styles for screens at least 480px wide. */
@media only screen and (max-width: 640px) {
  #stacks_in_36273 .column_base_margin {
    margin-bottom: 0px;
  }
}







/* Handles making images responsive inside the stack */
#stacks_in_36273 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_36273 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_36273 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_36273 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_36273 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_36273 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_36273 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_36273 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_36273 *,
#stacks_in_36273 *:before,
#stacks_in_36273 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_36273 .left {
  float: left !important; }

#stacks_in_36273 .right {
  float: right !important; }

#stacks_in_36273 .clearfix:before,
#stacks_in_36273 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_36273 .clearfix:after {
  clear: both; }

#stacks_in_36273 .hide {
  display: none; }

#stacks_in_36273 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_36273 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_36273 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_36273 select {
  width: 100%; }

#stacks_in_36273 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}

#stacks_in_36273 .row:before,
#stacks_in_36273 .row:after {
  content: " ";
  display: table; }

#stacks_in_36273 .row:after {
  clear: both; }

#stacks_in_36273 .row.collapse > .column,
#stacks_in_36273 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_36273 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_36273 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_36273 .row .row:before,
#stacks_in_36273 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_36273 .row .row:after {
  clear: both; }

#stacks_in_36273 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_36273 .row .row.collapse:before,
#stacks_in_36273 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_36273 .row .row.collapse:after {
  clear: both; }

#stacks_in_36273 .column,
#stacks_in_36273 .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_36273 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_36273 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_36273 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36273 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36273 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36273 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36273 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36273 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36273 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36273 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36273 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36273 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36273 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36273 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36273 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36273 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36273 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36273 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36273 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36273 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36273 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36273 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36273 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36273 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36273 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36273 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36273 .column,
  #stacks_in_36273 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36273 .small-1 {
    width: 8.33333%; }

  #stacks_in_36273 .small-2 {
    width: 16.66667%; }

  #stacks_in_36273 .small-3 {
    width: 25%; }

  #stacks_in_36273 .small-4 {
    width: 33.33333%; }

  #stacks_in_36273 .small-5 {
    width: 41.66667%; }

  #stacks_in_36273 .small-6 {
    width: 50%; }

  #stacks_in_36273 .small-7 {
    width: 58.33333%; }

  #stacks_in_36273 .small-8 {
    width: 66.66667%; }

  #stacks_in_36273 .small-9 {
    width: 75%; }

  #stacks_in_36273 .small-10 {
    width: 83.33333%; }

  #stacks_in_36273 .small-11 {
    width: 91.66667%; }

  #stacks_in_36273 .small-12 {
    width: 100%; }

  #stacks_in_36273 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36273 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36273 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36273 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36273 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36273 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36273 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36273 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36273 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36273 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36273 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36273 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36273 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36273 .column.small-centered,
  #stacks_in_36273 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36273 .column.small-uncentered,
  #stacks_in_36273 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36273 .column.small-centered:last-child,
  #stacks_in_36273 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_36273 .column.small-uncentered:last-child,
  #stacks_in_36273 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_36273 .column.small-uncentered.opposite,
  #stacks_in_36273 .columns.small-uncentered.opposite {
    float: right; }
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_36273 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36273 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36273 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36273 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36273 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36273 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36273 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36273 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36273 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36273 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36273 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36273 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36273 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36273 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36273 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36273 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36273 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36273 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36273 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36273 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36273 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36273 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36273 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36273 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36273 .column,
  #stacks_in_36273 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36273 .medium-1 {
    width: 8.33333%; }

  #stacks_in_36273 .medium-2 {
    width: 16.66667%; }

  #stacks_in_36273 .medium-3 {
    width: 25%; }

  #stacks_in_36273 .medium-4 {
    width: 33.33333%; }

  #stacks_in_36273 .medium-5 {
    width: 41.66667%; }

  #stacks_in_36273 .medium-6 {
    width: 50%; }

  #stacks_in_36273 .medium-7 {
    width: 58.33333%; }

  #stacks_in_36273 .medium-8 {
    width: 66.66667%; }

  #stacks_in_36273 .medium-9 {
    width: 75%; }

  #stacks_in_36273 .medium-10 {
    width: 83.33333%; }

  #stacks_in_36273 .medium-11 {
    width: 91.66667%; }

  #stacks_in_36273 .medium-12 {
    width: 100%; }

  #stacks_in_36273 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36273 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36273 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36273 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36273 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36273 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36273 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36273 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36273 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36273 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36273 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36273 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36273 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36273 .column.medium-centered,
  #stacks_in_36273 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36273 .column.medium-uncentered,
  #stacks_in_36273 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36273 .column.medium-centered:last-child,
  #stacks_in_36273 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_36273 .column.medium-uncentered:last-child,
  #stacks_in_36273 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_36273 .column.medium-uncentered.opposite,
  #stacks_in_36273 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_36273 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36273 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36273 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36273 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36273 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36273 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36273 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36273 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36273 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36273 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36273 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36273 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36273 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36273 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36273 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36273 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36273 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36273 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36273 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36273 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36273 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36273 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36273 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36273 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_36273 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36273 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36273 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36273 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36273 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36273 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36273 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36273 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36273 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36273 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36273 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36273 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36273 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36273 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36273 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36273 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36273 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36273 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36273 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36273 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36273 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36273 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36273 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36273 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_36273 .column,
  #stacks_in_36273 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_36273 .large-1 {
    width: 8.33333%; }

  #stacks_in_36273 .large-2 {
    width: 16.66667%; }

  #stacks_in_36273 .large-3 {
    width: 25%; }

  #stacks_in_36273 .large-4 {
    width: 33.33333%; }

  #stacks_in_36273 .large-5 {
    width: 41.66667%; }

  #stacks_in_36273 .large-6 {
    width: 50%; }

  #stacks_in_36273 .large-7 {
    width: 58.33333%; }

  #stacks_in_36273 .large-8 {
    width: 66.66667%; }

  #stacks_in_36273 .large-9 {
    width: 75%; }

  #stacks_in_36273 .large-10 {
    width: 83.33333%; }

  #stacks_in_36273 .large-11 {
    width: 91.66667%; }

  #stacks_in_36273 .large-12 {
    width: 100%; }

  #stacks_in_36273 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_36273 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_36273 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_36273 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_36273 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_36273 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_36273 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_36273 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_36273 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_36273 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_36273 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_36273 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_36273 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_36273 .column.large-centered,
  #stacks_in_36273 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_36273 .column.large-uncentered,
  #stacks_in_36273 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_36273 .column.large-centered:last-child,
  #stacks_in_36273 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_36273 .column.large-uncentered:last-child,
  #stacks_in_36273 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_36273 .column.large-uncentered.opposite,
  #stacks_in_36273 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_36273 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_36273 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_36273 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_36273 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_36273 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_36273 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_36273 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_36273 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_36273 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_36273 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_36273 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_36273 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_36273 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_36273 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_36273 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_36273 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_36273 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_36273 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_36273 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_36273 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_36273 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_36273 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_36273 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_36273 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
}

#stacks_in_36273 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_36273 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_36273 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_36273 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_36273 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_36273 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_36273 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_36273 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36273 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36273 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 40.063em) {
#stacks_in_36273 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36273 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36273 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; }
}

@media only screen and (min-width: 64.063em) {
#stacks_in_36273 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_36273 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_36273 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_36273 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_36273 {
	padding: 12px 0px 0px 20px;
}

#stacks_in_36275 {
	font-size: 110%;
}

#stacks_in_36277 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_36278 {
	font-size: 90%;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_36280_accordion {
	list-style: none;
	border-radius: 6px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_36280_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */















/* Content Font Choices */









.stacks_in_36280_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_36280_accordion_label i {
}

.stacks_in_36280_accordion_selected {
}

.stacks_in_36280_accordion_content {
	
		padding-top: 20px;
		padding-bottom: 0px;
		padding-left: 20px;
		padding-right: 0px;
	

}

ul#stacks_in_36280_accordion li:last-child .stacks_in_36280_accordion_content {
}

.stacks_in_36280_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		
		position: absolute;
		left: 20px;
		top: 15px;
		margin-right: 5px;
	
}

.stacks_in_36280_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_36280_accordion_selected .accordion_icon i {
	
}

#stacks_in_36280_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */



/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */


ul#stacks_in_36280_accordion {
	border: 1px solid #F6F6F6;
}

.stacks_in_36280_accordion_label {
	color: #736F72;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}

.stacks_in_36280_accordion_selected {
	color: #000000;
	background: #F5F5F5;
	border-bottom: 1px solid #FFFFFF;
}



.stacks_in_36280_accordion_content {
	background: #FFFFFF;
	color: #000000;
	border-bottom: 1px solid #FFFFFF;
}


ul#stacks_in_36280_accordion li:last-child .stacks_in_36280_accordion_label {
	border-bottom: none;
}


ul#stacks_in_36280_accordion li:last-child .stacks_in_36280_accordion_selected {
	border-bottom: 1px solid #FFFFFF;
}

ul#stacks_in_36280_accordion li:last-child .stacks_in_36280_accordion_content {
	border-bottom: none;
}

#stacks_in_36280_open_all {
	color: #757575;
}

#stacks_in_36280_open_all_text {
	color: #757575;
}




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_36280_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_36280_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36280_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_36280_accordion_label {
		font-size: 15px;
	}

	.stacks_in_36280_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 60px;
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_36280_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36280_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_36280_accordion_label {
		font-size: 14px;
	}

	.stacks_in_36280_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			
			padding-left: 50px;
		
	}
}



#stacks_in_36280 {
	border: solid rgba(245, 245, 245, 1.00);
	border-width:  1px;
}

#stacks_in_36281 {
	font-size: 85%;
}

#stacks_in_36282 {
	margin: 0px 0px 20px 15px;
}

#stacks_in_36283 {
	font-size: 90%;
}

#stacks_in_36286 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36287 {
	text-transform: lowercase;
}

#stacks_in_36288 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36289 {
	text-transform: lowercase;
}

#stacks_in_36290 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36291 {
	text-transform: lowercase;
}

#stacks_in_36292 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36293 {
	text-transform: lowercase;
}

#stacks_in_36294 {
	padding: 0px 20px 20px 40px;
}

#stacks_in_36295 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36296 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36297 {
	padding: 0px 20px 20px 0px;
}

#stacks_in_36298 {
	padding: 0px 20px 20px 0px;
}
#stacks_in_4836 *,
#stacks_in_4836 *:before,
#stacks_in_4836 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_4838 .stacks_in_4838-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: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_4838 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_4838 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	float: left;
	
	  width: 40px;
	
}

#stacks_in_4838 .stacks_in_4838-button,
#stacks_in_4838 .button_icon {
	
		height: 40px;
		line-height: 40px;
	
}


	#stacks_in_4838 {
		text-align: right;
	}







	@media only screen and (max-width: 480px) {
		#stacks_in_4838 {
			text-align: center;
		}

		#stacks_in_4838 .stacks_in_4838-button {
			width: 100%;
		  -moz-box-sizing: border-box;
		  -webkit-box-sizing: border-box;
		  box-sizing: border-box;
		}
	}



#stacks_in_4838 a.stacks_in_4838-button, #stacks_in_4838 a.stacks_in_4838-button:visited, #stacks_in_4838 a.stacks_in_4838-button:hover, #stacks_in_4838 a.stacks_in_4838-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_4838 .stacks_in_4838-button {
		
			background-color: none;
			border: 1px solid #CCCCCC;
		
	}

	#stacks_in_4838 a.stacks_in_4838-button, #stacks_in_4838 a.stacks_in_4838-button:visited {
		
			color: #6D707E !important;
			
	}

	#stacks_in_4838 a.stacks_in_4838-button:hover, #stacks_in_4838 a.stacks_in_4838-button:active {
		
			text-decoration: none;
			color: #F6F6F6 !important;
			background-color: #CCCCCC;
		
	}

	



#stacks_in_4838 {
	margin:  10px;
	padding: 20px 1px 20px 0px;
}
/* Start Obscure Email stack CSS code */.stacks_in_3952topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_3952mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_3952small{font-weight: normal;font-size: 12px;}.stacks_in_3952centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_3952centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_4648topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_4648mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_4648small{font-weight: normal;font-size: 12px;}.stacks_in_4648centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_4648centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_35513topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_35513mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_35513small{font-weight: normal;font-size: 12px;}.stacks_in_35513centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_35513centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_35641topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_35641mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_35641small{font-weight: normal;font-size: 12px;}.stacks_in_35641centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_35641centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_35681topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_35681mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_35681small{font-weight: normal;font-size: 12px;}.stacks_in_35681centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_35681centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36112topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36112mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36112small{font-weight: normal;font-size: 12px;}.stacks_in_36112centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36112centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36165topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36165mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36165small{font-weight: normal;font-size: 12px;}.stacks_in_36165centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36165centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36299topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36299mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36299small{font-weight: normal;font-size: 12px;}.stacks_in_36299centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36299centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36314topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36314mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36314small{font-weight: normal;font-size: 12px;}.stacks_in_36314centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36314centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36396topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36396mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36396small{font-weight: normal;font-size: 12px;}.stacks_in_36396centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36396centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36454topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36454mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36454small{font-weight: normal;font-size: 12px;}.stacks_in_36454centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36454centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36455topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36455mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36455small{font-weight: normal;font-size: 12px;}.stacks_in_36455centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36455centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36564topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36564mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36564small{font-weight: normal;font-size: 12px;}.stacks_in_36564centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36564centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Obscure Email stack CSS code */.stacks_in_36620topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_36620mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_36620small{font-weight: normal;font-size: 12px;}.stacks_in_36620centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_36620centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code */

/* Start doobox Chauffeur css */

.stacks_in_3992_3990wrapper{
width: 50px;
margin: 0 auto;

display : none;

opacity:0.7;
}

.stacks_in_3992_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_3992_3990bulter i {
	display: block;
	margin: 0 auto 0 auto;
	font-size: 20px;
	line-height: 48px; 
	vertical-align: middle;
}


.stacks_in_3992_3990bulter:hover{
color: #DADADA;
background: #C2C2C2; /* Old browsers */
}

/* end doobox Chauffeur css */




#stacks_in_7712 .teleportMe {
display: none;
}




#stacks_in_7714 {
	margin:  12px;
}

#stacks_out_7714 {
	width: 50%;
}

#stacks_in_36439_7485 {
	margin: 25px 0px 0px 0px;
}

#stacks_in_36439_7486 {
	font-size: 109%;
}
